mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-05 16:59:51 +00:00
media: uvcvideo: Set capability in s_param
Fixes v4l2-compliance:
Format ioctls (Input 0):
warn: v4l2-test-formats.cpp(1339): S_PARM is supported but doesn't report V4L2_CAP_TIMEPERFRAME
fail: v4l2-test-formats.cpp(1241): node->has_frmintervals && !cap->capability
Reviewed-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
0c6bcbdfef
commit
97a2777a96
@ -472,10 +472,13 @@ static int uvc_v4l2_set_streamparm(struct uvc_streaming *stream,
|
|||||||
uvc_simplify_fraction(&timeperframe.numerator,
|
uvc_simplify_fraction(&timeperframe.numerator,
|
||||||
&timeperframe.denominator, 8, 333);
|
&timeperframe.denominator, 8, 333);
|
||||||
|
|
||||||
if (parm->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
|
if (parm->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
|
||||||
parm->parm.capture.timeperframe = timeperframe;
|
parm->parm.capture.timeperframe = timeperframe;
|
||||||
else
|
parm->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
|
||||||
|
} else {
|
||||||
parm->parm.output.timeperframe = timeperframe;
|
parm->parm.output.timeperframe = timeperframe;
|
||||||
|
parm->parm.output.capability = V4L2_CAP_TIMEPERFRAME;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user