linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] media: au0828 enable the right media source when input changes
@ 2016-02-19  0:28 Shuah Khan
  0 siblings, 0 replies; only message in thread
From: Shuah Khan @ 2016-02-19  0:28 UTC (permalink / raw)
  To: mchehab, hans.verkuil, inki.dae, sw0312.kim, jh1009.sung,
	chehabrafael, prabhakar.csengg
  Cc: Shuah Khan, linux-media, linux-kernel

Change vidioc_s_input() to enable the media source
for the newly selected input. v4l2-core enables
source before calling au0828's vidioc_s_input()
handler. Hence, when input selection changes,
media source for the newly selected input needs
to be enabled.

Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
---
 drivers/media/usb/au0828/au0828-video.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/drivers/media/usb/au0828/au0828-video.c b/drivers/media/usb/au0828/au0828-video.c
index 20696a4..678074d 100644
--- a/drivers/media/usb/au0828/au0828-video.c
+++ b/drivers/media/usb/au0828/au0828-video.c
@@ -1381,6 +1381,7 @@ static void au0828_s_input(struct au0828_dev *dev, int index)
 static int vidioc_s_input(struct file *file, void *priv, unsigned int index)
 {
 	struct au0828_dev *dev = video_drvdata(file);
+	struct video_device *vfd = video_devdata(file);
 
 	dprintk(1, "VIDIOC_S_INPUT in function %s, input=%d\n", __func__,
 		index);
@@ -1393,7 +1394,14 @@ static int vidioc_s_input(struct file *file, void *priv, unsigned int index)
 		return 0;
 
 	au0828_s_input(dev, index);
-	return 0;
+
+	/*
+	 * Input has been changed. Disable the media source
+	 * associated with the old input and enable source
+	 * for the newly set input
+	 */
+	v4l_disable_media_source(vfd);
+	return v4l_enable_media_source(vfd);
 }
 
 static int vidioc_enumaudio(struct file *file, void *priv, struct v4l2_audio *a)
-- 
2.5.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-02-19  0:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-19  0:28 [PATCH] media: au0828 enable the right media source when input changes Shuah Khan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).