Message ID | Pine.LNX.4.64.1106071157020.31635@axis700.grange (mailing list archive) |
---|---|
State | RFC |
Headers | show |
diff --git a/drivers/media/video/pxa_camera.c b/drivers/media/video/pxa_camera.c index c7f84da..88aa1ba 100644 --- a/drivers/media/video/pxa_camera.c +++ b/drivers/media/video/pxa_camera.c @@ -1502,7 +1502,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;
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> --- drivers/media/video/pxa_camera.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)