meye.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.  * Motion Eye video4linux driver for Sony Vaio PictureBook
  3.  *
  4.  * Copyright (C) 2001 Stelian Pop <stelian.pop@fr.alcove.com>, Alc魐e
  5.  *
  6.  * Copyright (C) 2000 Andrew Tridgell <tridge@valinux.com>
  7.  *
  8.  * Earlier work by Werner Almesberger, Paul `Rusty' Russell and Paul Mackerras.
  9.  * 
  10.  * Some parts borrowed from various video4linux drivers, especially
  11.  * bttv-driver.c and zoran.c, see original files for credits.
  12.  * 
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or
  16.  * (at your option) any later version.
  17.  * 
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  * 
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  26.  */
  27. #ifndef _MEYE_H_
  28. #define _MEYE_H_
  29. /****************************************************************************/
  30. /* Private API for handling mjpeg capture / playback.                       */
  31. /****************************************************************************/
  32. struct meye_params {
  33. unsigned char subsample;
  34. unsigned char quality;
  35. unsigned char sharpness;
  36. unsigned char agc;
  37. unsigned char picture;
  38. unsigned char framerate;
  39. };
  40. /* query the extended parameters */
  41. #define MEYEIOC_G_PARAMS _IOR ('v', BASE_VIDIOCPRIVATE+0, struct meye_params)
  42. /* set the extended parameters */
  43. #define MEYEIOC_S_PARAMS _IOW ('v', BASE_VIDIOCPRIVATE+1, struct meye_params)
  44. /* queue a buffer for mjpeg capture */
  45. #define MEYEIOC_QBUF_CAPT _IOW ('v', BASE_VIDIOCPRIVATE+2, int)
  46. /* sync a previously queued mjpeg buffer */
  47. #define MEYEIOC_SYNC _IOWR('v', BASE_VIDIOCPRIVATE+3, int)
  48. /* get a still uncompressed snapshot */
  49. #define MEYEIOC_STILLCAPT _IO  ('v', BASE_VIDIOCPRIVATE+4)
  50. /* get a jpeg compressed snapshot */
  51. #define MEYEIOC_STILLJCAPT _IOR ('v', BASE_VIDIOCPRIVATE+5, int)
  52. #endif