aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/saa7127.c
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2007-04-27 11:31:04 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-04-27 14:43:22 -0400
commit045290b2a90ff1be60196a061aadecf70eb6bcc3 (patch)
treecbdf9547b5dbcc60f67793e4d64eff85f7accd35 /drivers/media/video/saa7127.c
parentb2787845fb91da18ebb079dc9297f92d990e9fe1 (diff)
V4L/DVB (5290): Add support for VIDIOC_INT_G/S_STD_OUTPUT
Added VIDIOC_INT_G_STD_OUTPUT and VIDIOC_INT_S_STD_OUTPUT to allow drivers to set the TV standard for video output separately from the video capture. This is needed for cx23415 support where the decoder is separate from the encoder and can have a different TV standard. Modified the saa7127 module to listen to VIDIOC_INT_G/S_STD_OUTPUT instead of VIDIOC_G/S_STD. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/saa7127.c')
-rw-r--r--drivers/media/video/saa7127.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/saa7127.c b/drivers/media/video/saa7127.c
index 654863db1591..50dbb76d4a7f 100644
--- a/drivers/media/video/saa7127.c
+++ b/drivers/media/video/saa7127.c
@@ -550,12 +550,12 @@ static int saa7127_command(struct i2c_client *client,
550 struct v4l2_routing *route = arg; 550 struct v4l2_routing *route = arg;
551 551
552 switch (cmd) { 552 switch (cmd) {
553 case VIDIOC_S_STD: 553 case VIDIOC_INT_S_STD_OUTPUT:
554 if (state->std == *(v4l2_std_id *)arg) 554 if (state->std == *(v4l2_std_id *)arg)
555 break; 555 break;
556 return saa7127_set_std(client, *(v4l2_std_id *)arg); 556 return saa7127_set_std(client, *(v4l2_std_id *)arg);
557 557
558 case VIDIOC_G_STD: 558 case VIDIOC_INT_G_STD_OUTPUT:
559 *(v4l2_std_id *)arg = state->std; 559 *(v4l2_std_id *)arg = state->std;
560 break; 560 break;
561 561