diff options
author | Tobias Lorenz <tobias.lorenz@gmx.net> | 2008-05-26 17:40:46 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-20 06:07:12 -0400 |
commit | 1d0ba5f3784612fe6e91a12e0dec37c797d4f07c (patch) | |
tree | 8e05b0fc73664285504c4319892c842a78d6b63d /include | |
parent | f90fe7a3f7fcba0abd89ce0978628ef1d86ecbf9 (diff) |
V4L/DVB (7942): Hardware frequency seek ioctl interface
Signed-off-by: Tobias Lorenz <tobias.lorenz@gmx.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/videodev2.h | 10 | ||||
-rw-r--r-- | include/media/v4l2-dev.h | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h index 4a535ea1e123..9385c823a978 100644 --- a/include/linux/videodev2.h +++ b/include/linux/videodev2.h | |||
@@ -246,6 +246,7 @@ struct v4l2_capability | |||
246 | #define V4L2_CAP_SLICED_VBI_OUTPUT 0x00000080 /* Is a sliced VBI output device */ | 246 | #define V4L2_CAP_SLICED_VBI_OUTPUT 0x00000080 /* Is a sliced VBI output device */ |
247 | #define V4L2_CAP_RDS_CAPTURE 0x00000100 /* RDS data capture */ | 247 | #define V4L2_CAP_RDS_CAPTURE 0x00000100 /* RDS data capture */ |
248 | #define V4L2_CAP_VIDEO_OUTPUT_OVERLAY 0x00000200 /* Can do video output overlay */ | 248 | #define V4L2_CAP_VIDEO_OUTPUT_OVERLAY 0x00000200 /* Can do video output overlay */ |
249 | #define V4L2_CAP_HW_FREQ_SEEK 0x00000400 /* Can do hardware frequency seek */ | ||
249 | 250 | ||
250 | #define V4L2_CAP_TUNER 0x00010000 /* has a tuner */ | 251 | #define V4L2_CAP_TUNER 0x00010000 /* has a tuner */ |
251 | #define V4L2_CAP_AUDIO 0x00020000 /* has audio support */ | 252 | #define V4L2_CAP_AUDIO 0x00020000 /* has audio support */ |
@@ -1156,6 +1157,14 @@ struct v4l2_frequency | |||
1156 | __u32 reserved[8]; | 1157 | __u32 reserved[8]; |
1157 | }; | 1158 | }; |
1158 | 1159 | ||
1160 | struct v4l2_hw_freq_seek { | ||
1161 | __u32 tuner; | ||
1162 | enum v4l2_tuner_type type; | ||
1163 | __u32 seek_upward; | ||
1164 | __u32 wrap_around; | ||
1165 | __u32 reserved[8]; | ||
1166 | }; | ||
1167 | |||
1159 | /* | 1168 | /* |
1160 | * A U D I O | 1169 | * A U D I O |
1161 | */ | 1170 | */ |
@@ -1441,6 +1450,7 @@ struct v4l2_chip_ident { | |||
1441 | 1450 | ||
1442 | #define VIDIOC_G_CHIP_IDENT _IOWR ('V', 81, struct v4l2_chip_ident) | 1451 | #define VIDIOC_G_CHIP_IDENT _IOWR ('V', 81, struct v4l2_chip_ident) |
1443 | #endif | 1452 | #endif |
1453 | #define VIDIOC_S_HW_FREQ_SEEK _IOW ('V', 82, struct v4l2_hw_freq_seek) | ||
1444 | 1454 | ||
1445 | #ifdef __OLD_VIDIOC_ | 1455 | #ifdef __OLD_VIDIOC_ |
1446 | /* for compatibility, will go away some day */ | 1456 | /* for compatibility, will go away some day */ |
diff --git a/include/media/v4l2-dev.h b/include/media/v4l2-dev.h index 859f7a6f6f67..53b651ac685a 100644 --- a/include/media/v4l2-dev.h +++ b/include/media/v4l2-dev.h | |||
@@ -306,6 +306,8 @@ struct video_device | |||
306 | /* Log status ioctl */ | 306 | /* Log status ioctl */ |
307 | int (*vidioc_log_status) (struct file *file, void *fh); | 307 | int (*vidioc_log_status) (struct file *file, void *fh); |
308 | 308 | ||
309 | int (*vidioc_s_hw_freq_seek) (struct file *file, void *fh, | ||
310 | struct v4l2_hw_freq_seek *a); | ||
309 | 311 | ||
310 | /* Debugging ioctls */ | 312 | /* Debugging ioctls */ |
311 | #ifdef CONFIG_VIDEO_ADV_DEBUG | 313 | #ifdef CONFIG_VIDEO_ADV_DEBUG |