mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 20:40:53 +07:00
[media] vivid: support cvt, gtf timings for video out
The generation of cvt, gtf timings is already supported by v4l2-ctl. This patch adds support for setting cvt,gtf timings for video out. While enabling cvt,gtf in vivid capture, the vivid video out was missed out. Adding it now. Signed-off-by: Prashant Laddha <prladdha@cisco.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
7111cddd51
commit
b1304f9bdc
@ -1124,15 +1124,26 @@ int vivid_vid_out_s_std(struct file *file, void *priv, v4l2_std_id id)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static bool valid_cvt_gtf_timings(struct v4l2_dv_timings *timings)
|
||||
{
|
||||
struct v4l2_bt_timings *bt = &timings->bt;
|
||||
|
||||
if ((bt->standards & (V4L2_DV_BT_STD_CVT | V4L2_DV_BT_STD_GTF)) &&
|
||||
v4l2_valid_dv_timings(timings, &vivid_dv_timings_cap, NULL, NULL))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
int vivid_vid_out_s_dv_timings(struct file *file, void *_fh,
|
||||
struct v4l2_dv_timings *timings)
|
||||
{
|
||||
struct vivid_dev *dev = video_drvdata(file);
|
||||
|
||||
if (!vivid_is_hdmi_out(dev))
|
||||
return -ENODATA;
|
||||
if (!v4l2_find_dv_timings_cap(timings, &vivid_dv_timings_cap,
|
||||
0, NULL, NULL))
|
||||
0, NULL, NULL) &&
|
||||
!valid_cvt_gtf_timings(timings))
|
||||
return -EINVAL;
|
||||
if (v4l2_match_dv_timings(timings, &dev->dv_timings_out, 0))
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user