From: Hans Verkuil <hans.verk...@cisco.com>

With this private ioctl it is possible to use the ivtv decoder without
requiring the dvb/video.h and dvb/audio.h headers.

Eventually support for those DVB APIs will be dropped from ivtv.

Signed-off-by: Hans Verkuil <hans.verk...@cisco.com>
---
 drivers/media/video/ivtv/ivtv-ioctl.c |    8 ++++++++
 include/linux/ivtv.h                  |    6 +++++-
 2 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/drivers/media/video/ivtv/ivtv-ioctl.c 
b/drivers/media/video/ivtv/ivtv-ioctl.c
index 736ba8e..1cf264f 100644
--- a/drivers/media/video/ivtv/ivtv-ioctl.c
+++ b/drivers/media/video/ivtv/ivtv-ioctl.c
@@ -1618,6 +1618,12 @@ static int ivtv_decoder_ioctls(struct file *filp, 
unsigned int cmd, void *arg)
                return ivtv_yuv_prep_frame(itv, args);
        }
 
+       case IVTV_IOC_PASSTHROUGH_MODE:
+               IVTV_DEBUG_IOCTL("IVTV_IOC_PASSTHROUGH_MODE\n");
+               if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
+                       return -EINVAL;
+               return ivtv_passthrough_mode(itv, *(int *)arg != 0);
+
        case VIDEO_GET_PTS: {
                s64 *pts = arg;
                s64 frame;
@@ -1779,6 +1785,7 @@ static long ivtv_default(struct file *file, void *fh, 
bool valid_prio,
 
        if (!valid_prio) {
                switch (cmd) {
+               case IVTV_IOC_PASSTHROUGH_MODE:
                case VIDEO_PLAY:
                case VIDEO_STOP:
                case VIDEO_FREEZE:
@@ -1804,6 +1811,7 @@ static long ivtv_default(struct file *file, void *fh, 
bool valid_prio,
        }
 
        case IVTV_IOC_DMA_FRAME:
+       case IVTV_IOC_PASSTHROUGH_MODE:
        case VIDEO_GET_PTS:
        case VIDEO_GET_FRAME_COUNT:
        case VIDEO_GET_EVENT:
diff --git a/include/linux/ivtv.h b/include/linux/ivtv.h
index 062d20f..42bf725 100644
--- a/include/linux/ivtv.h
+++ b/include/linux/ivtv.h
@@ -58,7 +58,11 @@ struct ivtv_dma_frame {
        __u32 src_height;
 };
 
-#define IVTV_IOC_DMA_FRAME  _IOW ('V', BASE_VIDIOC_PRIVATE+0, struct 
ivtv_dma_frame)
+#define IVTV_IOC_DMA_FRAME             _IOW ('V', BASE_VIDIOC_PRIVATE+0, 
struct ivtv_dma_frame)
+
+/* Select the passthrough mode (if the argument is non-zero). In the 
passthrough
+   mode the output of the encoder is passed immediately into the decoder. */
+#define IVTV_IOC_PASSTHROUGH_MODE      _IOW ('V', BASE_VIDIOC_PRIVATE+1, int)
 
 /* Deprecated defines: applications should use the defines from videodev2.h */
 #define IVTV_SLICED_TYPE_TELETEXT_B     V4L2_MPEG_VBI_IVTV_TELETEXT_B
-- 
1.7.7.3

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to