Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/linux
File: meye.h
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
[0] Fix | Delete
/*
[1] Fix | Delete
* Motion Eye video4linux driver for Sony Vaio PictureBook
[2] Fix | Delete
*
[3] Fix | Delete
* Copyright (C) 2001-2003 Stelian Pop <stelian@popies.net>
[4] Fix | Delete
*
[5] Fix | Delete
* Copyright (C) 2001-2002 AlcĂ´ve <www.alcove.com>
[6] Fix | Delete
*
[7] Fix | Delete
* Copyright (C) 2000 Andrew Tridgell <tridge@valinux.com>
[8] Fix | Delete
*
[9] Fix | Delete
* Earlier work by Werner Almesberger, Paul `Rusty' Russell and Paul Mackerras.
[10] Fix | Delete
*
[11] Fix | Delete
* Some parts borrowed from various video4linux drivers, especially
[12] Fix | Delete
* bttv-driver.c and zoran.c, see original files for credits.
[13] Fix | Delete
*
[14] Fix | Delete
* This program is free software; you can redistribute it and/or modify
[15] Fix | Delete
* it under the terms of the GNU General Public License as published by
[16] Fix | Delete
* the Free Software Foundation; either version 2 of the License, or
[17] Fix | Delete
* (at your option) any later version.
[18] Fix | Delete
*
[19] Fix | Delete
* This program is distributed in the hope that it will be useful,
[20] Fix | Delete
* but WITHOUT ANY WARRANTY; without even the implied warranty of
[21] Fix | Delete
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
[22] Fix | Delete
* GNU General Public License for more details.
[23] Fix | Delete
*
[24] Fix | Delete
* You should have received a copy of the GNU General Public License
[25] Fix | Delete
* along with this program; if not, write to the Free Software
[26] Fix | Delete
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
[27] Fix | Delete
*/
[28] Fix | Delete
[29] Fix | Delete
#ifndef _MEYE_H_
[30] Fix | Delete
#define _MEYE_H_
[31] Fix | Delete
[32] Fix | Delete
/****************************************************************************/
[33] Fix | Delete
/* Private API for handling mjpeg capture / playback. */
[34] Fix | Delete
/****************************************************************************/
[35] Fix | Delete
[36] Fix | Delete
struct meye_params {
[37] Fix | Delete
unsigned char subsample;
[38] Fix | Delete
unsigned char quality;
[39] Fix | Delete
unsigned char sharpness;
[40] Fix | Delete
unsigned char agc;
[41] Fix | Delete
unsigned char picture;
[42] Fix | Delete
unsigned char framerate;
[43] Fix | Delete
};
[44] Fix | Delete
[45] Fix | Delete
/* query the extended parameters */
[46] Fix | Delete
#define MEYEIOC_G_PARAMS _IOR ('v', BASE_VIDIOC_PRIVATE+0, struct meye_params)
[47] Fix | Delete
/* set the extended parameters */
[48] Fix | Delete
#define MEYEIOC_S_PARAMS _IOW ('v', BASE_VIDIOC_PRIVATE+1, struct meye_params)
[49] Fix | Delete
/* queue a buffer for mjpeg capture */
[50] Fix | Delete
#define MEYEIOC_QBUF_CAPT _IOW ('v', BASE_VIDIOC_PRIVATE+2, int)
[51] Fix | Delete
/* sync a previously queued mjpeg buffer */
[52] Fix | Delete
#define MEYEIOC_SYNC _IOWR('v', BASE_VIDIOC_PRIVATE+3, int)
[53] Fix | Delete
/* get a still uncompressed snapshot */
[54] Fix | Delete
#define MEYEIOC_STILLCAPT _IO ('v', BASE_VIDIOC_PRIVATE+4)
[55] Fix | Delete
/* get a jpeg compressed snapshot */
[56] Fix | Delete
#define MEYEIOC_STILLJCAPT _IOR ('v', BASE_VIDIOC_PRIVATE+5, int)
[57] Fix | Delete
[58] Fix | Delete
/* V4L2 private controls */
[59] Fix | Delete
#define V4L2_CID_MEYE_AGC (V4L2_CID_USER_MEYE_BASE + 0)
[60] Fix | Delete
#define V4L2_CID_MEYE_PICTURE (V4L2_CID_USER_MEYE_BASE + 1)
[61] Fix | Delete
#define V4L2_CID_MEYE_FRAMERATE (V4L2_CID_USER_MEYE_BASE + 2)
[62] Fix | Delete
[63] Fix | Delete
#endif
[64] Fix | Delete
[65] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function