videodev.h
上传用户:ledjyj
上传日期:2014-08-27
资源大小:2639k
文件大小:12k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. #ifndef __LINUX_VIDEODEV_H
  2. #define __LINUX_VIDEODEV_H
  3. #include <linux/types.h>
  4. #define HAVE_V4L1 1
  5. #include <linux/videodev2.h>
  6. #ifdef __KERNEL__
  7. #include <linux/mm.h>
  8. extern struct video_device* video_devdata(struct file*);
  9. #define to_video_device(cd) container_of(cd, struct video_device, class_dev)
  10. static inline void
  11. video_device_create_file(struct video_device *vfd,
  12.  struct class_device_attribute *attr)
  13. {
  14. class_device_create_file(&vfd->class_dev, attr);
  15. }
  16. static inline void
  17. video_device_remove_file(struct video_device *vfd,
  18.  struct class_device_attribute *attr)
  19. {
  20. class_device_remove_file(&vfd->class_dev, attr);
  21. }
  22. #if OBSOLETE_OWNER /* to be removed in 2.6.15 */
  23. /* helper functions to access driver private data. */
  24. static inline void *video_get_drvdata(struct video_device *dev)
  25. {
  26. return dev->priv;
  27. }
  28. static inline void video_set_drvdata(struct video_device *dev, void *data)
  29. {
  30. dev->priv = data;
  31. }
  32. #endif
  33. extern int video_exclusive_open(struct inode *inode, struct file *file);
  34. extern int video_exclusive_release(struct inode *inode, struct file *file);
  35. #endif /* __KERNEL__ */
  36. struct video_capability
  37. {
  38. char name[32];
  39. int type;
  40. int channels; /* Num channels */
  41. int audios; /* Num audio devices */
  42. int maxwidth; /* Supported width */
  43. int maxheight; /* And height */
  44. int minwidth; /* Supported width */
  45. int minheight; /* And height */
  46. };
  47. struct video_channel
  48. {
  49. int channel;
  50. char name[32];
  51. int tuners;
  52. __u32  flags;
  53. #define VIDEO_VC_TUNER 1 /* Channel has a tuner */
  54. #define VIDEO_VC_AUDIO 2 /* Channel has audio */
  55. __u16  type;
  56. #define VIDEO_TYPE_TV 1
  57. #define VIDEO_TYPE_CAMERA 2
  58. __u16 norm; /* Norm set by channel */
  59. };
  60. struct video_tuner
  61. {
  62. int tuner;
  63. char name[32];
  64. unsigned long rangelow, rangehigh; /* Tuner range */
  65. __u32 flags;
  66. #define VIDEO_TUNER_PAL 1
  67. #define VIDEO_TUNER_NTSC 2
  68. #define VIDEO_TUNER_SECAM 4
  69. #define VIDEO_TUNER_LOW 8 /* Uses KHz not MHz */
  70. #define VIDEO_TUNER_NORM 16 /* Tuner can set norm */
  71. #define VIDEO_TUNER_STEREO_ON 128 /* Tuner is seeing stereo */
  72. #define VIDEO_TUNER_RDS_ON      256     /* Tuner is seeing an RDS datastream */
  73. #define VIDEO_TUNER_MBS_ON      512     /* Tuner is seeing an MBS datastream */
  74. __u16 mode; /* PAL/NTSC/SECAM/OTHER */
  75. #define VIDEO_MODE_PAL 0
  76. #define VIDEO_MODE_NTSC 1
  77. #define VIDEO_MODE_SECAM 2
  78. #define VIDEO_MODE_AUTO 3
  79. __u16 signal; /* Signal strength 16bit scale */
  80. };
  81. struct video_picture
  82. {
  83. __u16 brightness;
  84. __u16 hue;
  85. __u16 colour;
  86. __u16 contrast;
  87. __u16 whiteness; /* Black and white only */
  88. __u16 depth; /* Capture depth */
  89. __u16   palette; /* Palette in use */
  90. #define VIDEO_PALETTE_GREY 1 /* Linear greyscale */
  91. #define VIDEO_PALETTE_HI240 2 /* High 240 cube (BT848) */
  92. #define VIDEO_PALETTE_RGB565 3 /* 565 16 bit RGB */
  93. #define VIDEO_PALETTE_RGB24 4 /* 24bit RGB */
  94. #define VIDEO_PALETTE_RGB32 5 /* 32bit RGB */
  95. #define VIDEO_PALETTE_RGB555 6 /* 555 15bit RGB */
  96. #define VIDEO_PALETTE_YUV422 7 /* YUV422 capture */
  97. #define VIDEO_PALETTE_YUYV 8
  98. #define VIDEO_PALETTE_UYVY 9 /* The great thing about standards is ... */
  99. #define VIDEO_PALETTE_YUV420 10
  100. #define VIDEO_PALETTE_YUV411 11 /* YUV411 capture */
  101. #define VIDEO_PALETTE_RAW 12 /* RAW capture (BT848) */
  102. #define VIDEO_PALETTE_YUV422P 13 /* YUV 4:2:2 Planar */
  103. #define VIDEO_PALETTE_YUV411P 14 /* YUV 4:1:1 Planar */
  104. #define VIDEO_PALETTE_YUV420P 15 /* YUV 4:2:0 Planar */
  105. #define VIDEO_PALETTE_YUV410P 16 /* YUV 4:1:0 Planar */
  106. #define VIDEO_PALETTE_PLANAR 13 /* start of planar entries */
  107. #define VIDEO_PALETTE_COMPONENT 7 /* start of component entries */
  108. };
  109. struct video_audio
  110. {
  111. int audio; /* Audio channel */
  112. __u16 volume; /* If settable */
  113. __u16 bass, treble;
  114. __u32 flags;
  115. #define VIDEO_AUDIO_MUTE 1
  116. #define VIDEO_AUDIO_MUTABLE 2
  117. #define VIDEO_AUDIO_VOLUME 4
  118. #define VIDEO_AUDIO_BASS 8
  119. #define VIDEO_AUDIO_TREBLE 16
  120. #define VIDEO_AUDIO_BALANCE 32
  121. char    name[16];
  122. #define VIDEO_SOUND_MONO 1
  123. #define VIDEO_SOUND_STEREO 2
  124. #define VIDEO_SOUND_LANG1 4
  125. #define VIDEO_SOUND_LANG2 8
  126. __u16   mode;
  127. __u16 balance; /* Stereo balance */
  128. __u16 step; /* Step actual volume uses */
  129. };
  130. struct video_clip
  131. {
  132. __s32 x,y;
  133. __s32 width, height;
  134. struct video_clip *next; /* For user use/driver use only */
  135. };
  136. struct video_window
  137. {
  138. __u32 x,y; /* Position of window */
  139. __u32 width,height; /* Its size */
  140. __u32 chromakey;
  141. __u32 flags;
  142. struct video_clip __user *clips; /* Set only */
  143. int clipcount;
  144. #define VIDEO_WINDOW_INTERLACE 1
  145. #define VIDEO_WINDOW_CHROMAKEY 16 /* Overlay by chromakey */
  146. #define VIDEO_CLIP_BITMAP -1
  147. /* bitmap is 1024x625, a '1' bit represents a clipped pixel */
  148. #define VIDEO_CLIPMAP_SIZE (128 * 625)
  149. };
  150. struct video_capture
  151. {
  152. __u32  x,y; /* Offsets into image */
  153. __u32 width, height; /* Area to capture */
  154. __u16 decimation; /* Decimation divider */
  155. __u16 flags; /* Flags for capture */
  156. #define VIDEO_CAPTURE_ODD 0 /* Temporal */
  157. #define VIDEO_CAPTURE_EVEN 1
  158. };
  159. struct video_buffer
  160. {
  161. void *base;
  162. int height,width;
  163. int depth;
  164. int bytesperline;
  165. };
  166. struct video_mmap
  167. {
  168. unsigned int frame; /* Frame (0 - n) for double buffer */
  169. int height,width;
  170. unsigned int format; /* should be VIDEO_PALETTE_* */
  171. };
  172. struct video_key
  173. {
  174. __u8 key[8];
  175. __u32 flags;
  176. };
  177. struct video_mbuf
  178. {
  179. int size; /* Total memory to map */
  180. int frames; /* Frames */
  181. int offsets[VIDEO_MAX_FRAME];
  182. };
  183. #define  VIDEO_NO_UNIT (-1)
  184. struct video_unit
  185. {
  186. int  video; /* Video minor */
  187. int vbi; /* VBI minor */
  188. int radio; /* Radio minor */
  189. int audio; /* Audio minor */
  190. int teletext; /* Teletext minor */
  191. };
  192. struct vbi_format {
  193. __u32 sampling_rate; /* in Hz */
  194. __u32 samples_per_line;
  195. __u32 sample_format; /* VIDEO_PALETTE_RAW only (1 byte) */
  196. __s32 start[2]; /* starting line for each frame */
  197. __u32 count[2]; /* count of lines for each frame */
  198. __u32 flags;
  199. #define VBI_UNSYNC 1 /* can distingues between top/bottom field */
  200. #define VBI_INTERLACED 2 /* lines are interlaced */
  201. };
  202. /* video_info is biased towards hardware mpeg encode/decode */
  203. /* but it could apply generically to any hardware compressor/decompressor */
  204. struct video_info
  205. {
  206. __u32 frame_count; /* frames output since decode/encode began */
  207. __u32 h_size; /* current unscaled horizontal size */
  208. __u32 v_size; /* current unscaled veritcal size */
  209. __u32 smpte_timecode; /* current SMPTE timecode (for current GOP) */
  210. __u32 picture_type; /* current picture type */
  211. __u32 temporal_reference; /* current temporal reference */
  212. __u8 user_data[256]; /* user data last found in compressed stream */
  213. /* user_data[0] contains user data flags, user_data[1] has count */
  214. };
  215. /* generic structure for setting playback modes */
  216. struct video_play_mode
  217. {
  218. int mode;
  219. int p1;
  220. int p2;
  221. };
  222. /* for loading microcode / fpga programming */
  223. struct video_code
  224. {
  225. char loadwhat[16]; /* name or tag of file being passed */
  226. int datasize;
  227. __u8 *data;
  228. };
  229. #define VIDIOCGCAP _IOR('v',1,struct video_capability) /* Get capabilities */
  230. #define VIDIOCGCHAN _IOWR('v',2,struct video_channel) /* Get channel info (sources) */
  231. #define VIDIOCSCHAN _IOW('v',3,struct video_channel) /* Set channel  */
  232. #define VIDIOCGTUNER _IOWR('v',4,struct video_tuner) /* Get tuner abilities */
  233. #define VIDIOCSTUNER _IOW('v',5,struct video_tuner) /* Tune the tuner for the current channel */
  234. #define VIDIOCGPICT _IOR('v',6,struct video_picture) /* Get picture properties */
  235. #define VIDIOCSPICT _IOW('v',7,struct video_picture) /* Set picture properties */
  236. #define VIDIOCCAPTURE _IOW('v',8,int) /* Start, end capture */
  237. #define VIDIOCGWIN _IOR('v',9, struct video_window) /* Get the video overlay window */
  238. #define VIDIOCSWIN _IOW('v',10, struct video_window) /* Set the video overlay window - passes clip list for hardware smarts , chromakey etc */
  239. #define VIDIOCGFBUF _IOR('v',11, struct video_buffer) /* Get frame buffer */
  240. #define VIDIOCSFBUF _IOW('v',12, struct video_buffer) /* Set frame buffer - root only */
  241. #define VIDIOCKEY _IOR('v',13, struct video_key) /* Video key event - to dev 255 is to all - cuts capture on all DMA windows with this key (0xFFFFFFFF == all) */
  242. #define VIDIOCGFREQ _IOR('v',14, unsigned long) /* Set tuner */
  243. #define VIDIOCSFREQ _IOW('v',15, unsigned long) /* Set tuner */
  244. #define VIDIOCGAUDIO _IOR('v',16, struct video_audio) /* Get audio info */
  245. #define VIDIOCSAUDIO _IOW('v',17, struct video_audio) /* Audio source, mute etc */
  246. #define VIDIOCSYNC _IOW('v',18, int) /* Sync with mmap grabbing */
  247. #define VIDIOCMCAPTURE _IOW('v',19, struct video_mmap) /* Grab frames */
  248. #define VIDIOCGMBUF _IOR('v',20, struct video_mbuf) /* Memory map buffer info */
  249. #define VIDIOCGUNIT _IOR('v',21, struct video_unit) /* Get attached units */
  250. #define VIDIOCGCAPTURE _IOR('v',22, struct video_capture) /* Get subcapture */
  251. #define VIDIOCSCAPTURE _IOW('v',23, struct video_capture) /* Set subcapture */
  252. #define VIDIOCSPLAYMODE _IOW('v',24, struct video_play_mode) /* Set output video mode/feature */
  253. #define VIDIOCSWRITEMODE _IOW('v',25, int) /* Set write mode */
  254. #define VIDIOCGPLAYINFO _IOR('v',26, struct video_info) /* Get current playback info from hardware */
  255. #define VIDIOCSMICROCODE _IOW('v',27, struct video_code) /* Load microcode into hardware */
  256. #define VIDIOCGVBIFMT _IOR('v',28, struct vbi_format) /* Get VBI information */
  257. #define VIDIOCSVBIFMT _IOW('v',29, struct vbi_format) /* Set VBI information */
  258. #define BASE_VIDIOCPRIVATE 192 /* 192-255 are private */
  259. /* VIDIOCSWRITEMODE */
  260. #define VID_WRITE_MPEG_AUD 0
  261. #define VID_WRITE_MPEG_VID 1
  262. #define VID_WRITE_OSD 2
  263. #define VID_WRITE_TTX 3
  264. #define VID_WRITE_CC 4
  265. #define VID_WRITE_MJPEG 5
  266. /* VIDIOCSPLAYMODE */
  267. #define VID_PLAY_VID_OUT_MODE 0
  268. /* p1: = VIDEO_MODE_PAL, VIDEO_MODE_NTSC, etc ... */
  269. #define VID_PLAY_GENLOCK 1
  270. /* p1: 0 = OFF, 1 = ON */
  271. /* p2: GENLOCK FINE DELAY value */
  272. #define VID_PLAY_NORMAL 2
  273. #define VID_PLAY_PAUSE 3
  274. #define VID_PLAY_SINGLE_FRAME 4
  275. #define VID_PLAY_FAST_FORWARD 5
  276. #define VID_PLAY_SLOW_MOTION 6
  277. #define VID_PLAY_IMMEDIATE_NORMAL 7
  278. #define VID_PLAY_SWITCH_CHANNELS 8
  279. #define VID_PLAY_FREEZE_FRAME 9
  280. #define VID_PLAY_STILL_MODE 10
  281. #define VID_PLAY_MASTER_MODE 11
  282. /* p1: see below */
  283. #define VID_PLAY_MASTER_NONE 1
  284. #define VID_PLAY_MASTER_VIDEO 2
  285. #define VID_PLAY_MASTER_AUDIO 3
  286. #define VID_PLAY_ACTIVE_SCANLINES 12
  287. /* p1 = first active; p2 = last active */
  288. #define VID_PLAY_RESET 13
  289. #define VID_PLAY_END_MARK 14
  290. #define VID_HARDWARE_BT848 1
  291. #define VID_HARDWARE_QCAM_BW 2
  292. #define VID_HARDWARE_PMS 3
  293. #define VID_HARDWARE_QCAM_C 4
  294. #define VID_HARDWARE_PSEUDO 5
  295. #define VID_HARDWARE_SAA5249 6
  296. #define VID_HARDWARE_AZTECH 7
  297. #define VID_HARDWARE_SF16MI 8
  298. #define VID_HARDWARE_RTRACK 9
  299. #define VID_HARDWARE_ZOLTRIX 10
  300. #define VID_HARDWARE_SAA7146    11
  301. #define VID_HARDWARE_VIDEUM 12 /* Reserved for Winnov videum */
  302. #define VID_HARDWARE_RTRACK2 13
  303. #define VID_HARDWARE_PERMEDIA2 14 /* Reserved for Permedia2 */
  304. #define VID_HARDWARE_RIVA128 15 /* Reserved for RIVA 128 */
  305. #define VID_HARDWARE_PLANB 16 /* PowerMac motherboard video-in */
  306. #define VID_HARDWARE_BROADWAY 17 /* Broadway project */
  307. #define VID_HARDWARE_GEMTEK 18
  308. #define VID_HARDWARE_TYPHOON 19
  309. #define VID_HARDWARE_VINO 20 /* SGI Indy Vino */
  310. #define VID_HARDWARE_CADET 21 /* Cadet radio */
  311. #define VID_HARDWARE_TRUST 22 /* Trust FM Radio */
  312. #define VID_HARDWARE_TERRATEC 23 /* TerraTec ActiveRadio */
  313. #define VID_HARDWARE_CPIA 24
  314. #define VID_HARDWARE_ZR36120 25 /* Zoran ZR36120/ZR36125 */
  315. #define VID_HARDWARE_ZR36067 26 /* Zoran ZR36067/36060 */
  316. #define VID_HARDWARE_OV511 27
  317. #define VID_HARDWARE_ZR356700 28 /* Zoran 36700 series */
  318. #define VID_HARDWARE_W9966 29
  319. #define VID_HARDWARE_SE401 30 /* SE401 USB webcams */
  320. #define VID_HARDWARE_PWC 31 /* Philips webcams */
  321. #define VID_HARDWARE_MEYE 32 /* Sony Vaio MotionEye cameras */
  322. #define VID_HARDWARE_CPIA2 33
  323. #define VID_HARDWARE_VICAM      34
  324. #define VID_HARDWARE_SF16FMR2 35
  325. #define VID_HARDWARE_W9968CF 36
  326. #define VID_HARDWARE_SAA7114H   37
  327. #define VID_HARDWARE_SN9C102 38
  328. #define VID_HARDWARE_ARV 39
  329. #endif /* __LINUX_VIDEODEV_H */
  330. /*
  331.  * Local variables:
  332.  * c-basic-offset: 8
  333.  * End:
  334.  */