Commit 71e7cfae authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab Committed by Mauro Carvalho Chehab

V4L/DVB (12795): tm6000: Fix buffering size

At the first time an application were called, resolutions were wrong.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 4475c044
......@@ -1102,6 +1102,10 @@ static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *norm)
struct tm6000_core *dev = fh->dev;
rc=tm6000_set_standard (dev, norm);
fh->width = dev->width;
fh->height = dev->height;
if (rc<0)
return rc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment