diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2011-06-07 05:44:19 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-07-27 17:53:21 -0300 |
commit | 91401219c073a565af79223215a84250bbc8c79e (patch) | |
tree | d49943925f20b6fdb14c4916bd562d260d8450a3 /drivers | |
parent | a5c1cee0e63da3ed7d8bdbf85f11e4895051d890 (diff) | |
download | linux-3.10-91401219c073a565af79223215a84250bbc8c79e.tar.gz linux-3.10-91401219c073a565af79223215a84250bbc8c79e.tar.bz2 linux-3.10-91401219c073a565af79223215a84250bbc8c79e.zip |
[media] V4L: pxa-camera: try to force progressive video format
The pxa-camera driver only supports progressive video so far. Passing
down to the client the same format, as what the user has requested can
result in interlaced video, even if the client supports both. This
patch avoids such cases.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/pxa_camera.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/pxa_camera.c b/drivers/media/video/pxa_camera.c index bc8600b443b..c42aac132eb 100644 --- a/drivers/media/video/pxa_camera.c +++ b/drivers/media/video/pxa_camera.c @@ -1501,7 +1501,8 @@ static int pxa_camera_try_fmt(struct soc_camera_device *icd, /* limit to sensor capabilities */ mf.width = pix->width; mf.height = pix->height; - mf.field = pix->field; + /* Only progressive video supported so far */ + mf.field = V4L2_FIELD_NONE; mf.colorspace = pix->colorspace; mf.code = xlate->code; |