summaryrefslogtreecommitdiff
path: root/include/linux/video_decoder.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <greg@kroah.com>2004-05-14 01:21:10 -0700
committerGreg Kroah-Hartman <greg@kroah.com>2004-05-14 01:21:10 -0700
commit744804bcdeaef29a736421bd0f2b0eddcfa9f879 (patch)
treee4bf9bc7b7ec548852fc2e57975fb00e1ebd9ae6 /include/linux/video_decoder.h
parent141baf80514374935d084c12f2f1e426e9cea5a0 (diff)
parent558fcd724e9016b1af08d796f7e762b7dcc6117a (diff)
Merge kroah.com:/home/greg/linux/BK/bleed-2.6
into kroah.com:/home/greg/linux/BK/i2c-2.6
Diffstat (limited to 'include/linux/video_decoder.h')
-rw-r--r--include/linux/video_decoder.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/video_decoder.h b/include/linux/video_decoder.h
index 1302c7f44ec5..0e9e48b83e3b 100644
--- a/include/linux/video_decoder.h
+++ b/include/linux/video_decoder.h
@@ -22,6 +22,10 @@ DECODER_STATUS_GOOD, the others are just nice things to know.
#define DECODER_STATUS_NTSC 8 /* auto detected */
#define DECODER_STATUS_SECAM 16 /* auto detected */
+struct video_decoder_init {
+ unsigned char len;
+ const unsigned char *data;
+};
#define DECODER_GET_CAPABILITIES _IOR('d', 1, struct video_decoder_capability)
#define DECODER_GET_STATUS _IOR('d', 2, int)
@@ -30,6 +34,9 @@ DECODER_STATUS_GOOD, the others are just nice things to know.
#define DECODER_SET_OUTPUT _IOW('d', 5, int) /* 0 <= output < #outputs */
#define DECODER_ENABLE_OUTPUT _IOW('d', 6, int) /* boolean output enable control */
#define DECODER_SET_PICTURE _IOW('d', 7, struct video_picture)
+#define DECODER_SET_GPIO _IOW('d', 8, int) /* switch general purpose pin */
+#define DECODER_INIT _IOW('d', 9, struct video_decoder_init) /* init internal registers at once */
+#define DECODER_SET_VBI_BYPASS _IOW('d', 10, int) /* switch vbi bypass */
#define DECODER_DUMP _IO('d', 192) /* debug hook */