video_decoder.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_VIDEO_DECODER_H
  2. #define _LINUX_VIDEO_DECODER_H
  3. struct video_decoder_capability { /* this name is too long */
  4. __u32 flags;
  5. #define VIDEO_DECODER_PAL 1 /* can decode PAL signal */
  6. #define VIDEO_DECODER_NTSC 2 /* can decode NTSC */
  7. #define VIDEO_DECODER_SECAM 4 /* can decode SECAM */
  8. #define VIDEO_DECODER_AUTO 8 /* can autosense norm */
  9. #define VIDEO_DECODER_CCIR 16 /* CCIR-601 pixel rate (720 pixels per line) instead of square pixel rate */
  10. int inputs; /* number of inputs */
  11. int outputs; /* number of outputs */
  12. };
  13. /*
  14. DECODER_GET_STATUS returns the following flags.  The only one you need is
  15. DECODER_STATUS_GOOD, the others are just nice things to know.
  16. */
  17. #define DECODER_STATUS_GOOD 1 /* receiving acceptable input */
  18. #define DECODER_STATUS_COLOR 2 /* receiving color information */
  19. #define DECODER_STATUS_PAL 4 /* auto detected */
  20. #define DECODER_STATUS_NTSC 8 /* auto detected */
  21. #define DECODER_STATUS_SECAM 16 /* auto detected */
  22. struct video_decoder_init {
  23. unsigned char len;
  24. const unsigned char *data;
  25. };
  26. #define DECODER_GET_CAPABILITIES _IOR('d', 1, struct video_decoder_capability)
  27. #define DECODER_GET_STATUS     _IOR('d', 2, int)
  28. #define DECODER_SET_NORM _IOW('d', 3, int)
  29. #define DECODER_SET_INPUT _IOW('d', 4, int) /* 0 <= input < #inputs */
  30. #define DECODER_SET_OUTPUT _IOW('d', 5, int) /* 0 <= output < #outputs */
  31. #define DECODER_ENABLE_OUTPUT _IOW('d', 6, int) /* boolean output enable control */
  32. #define DECODER_SET_PICTURE    _IOW('d', 7, struct video_picture)
  33. #define DECODER_SET_GPIO _IOW('d', 8, int) /* switch general purpose pin */
  34. #define DECODER_INIT _IOW('d', 9, struct video_decoder_init) /* init internal registers at once */
  35. #define DECODER_SET_VBI_BYPASS _IOW('d', 10, int) /* switch vbi bypass */
  36. #define DECODER_DUMP _IO('d', 192) /* debug hook */
  37. #endif