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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_VIDEO_ENCODER_H
  2. #define _LINUX_VIDEO_ENCODER_H
  3. struct video_encoder_capability { /* this name is too long */
  4. __u32 flags;
  5. #define VIDEO_ENCODER_PAL 1 /* can encode PAL signal */
  6. #define VIDEO_ENCODER_NTSC 2 /* can encode NTSC */
  7. #define VIDEO_ENCODER_SECAM 4 /* can encode SECAM */
  8. #define VIDEO_ENCODER_CCIR 16 /* CCIR-601 pixel rate (720 pixels per line) instead of square pixel rate */
  9. int inputs; /* number of inputs */
  10. int outputs; /* number of outputs */
  11. };
  12. #define ENCODER_GET_CAPABILITIES _IOR('e', 1, struct video_encoder_capability)
  13. #define ENCODER_SET_NORM _IOW('e', 2, int)
  14. #define ENCODER_SET_INPUT _IOW('e', 3, int) /* 0 <= input < #inputs */
  15. #define ENCODER_SET_OUTPUT _IOW('e', 4, int) /* 0 <= output < #outputs */
  16. #define ENCODER_ENABLE_OUTPUT _IOW('e', 5, int) /* boolean output enable control */
  17. #endif