mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
[media] hdpvr: fix reported HDTV colorspace
The colorspace for HDTV is REC709, not SMPTE240M. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
cce11b093f
commit
93e6a855ff
1 changed files with 1 additions and 1 deletions
|
@ -1028,7 +1028,7 @@ static int vidioc_g_fmt_vid_cap(struct file *file, void *_fh,
|
|||
f->fmt.pix.field = V4L2_FIELD_INTERLACED;
|
||||
} else {
|
||||
/* HDTV formats */
|
||||
f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE240M;
|
||||
f->fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
|
||||
f->fmt.pix.field = V4L2_FIELD_NONE;
|
||||
}
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue