Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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>

authored by

Hans Verkuil and committed by
Mauro Carvalho Chehab
93e6a855 cce11b09

+1 -1
+1 -1
drivers/media/usb/hdpvr/hdpvr-video.c
··· 1028 1028 f->fmt.pix.field = V4L2_FIELD_INTERLACED; 1029 1029 } else { 1030 1030 /* HDTV formats */ 1031 - f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE240M; 1031 + f->fmt.pix.colorspace = V4L2_COLORSPACE_REC709; 1032 1032 f->fmt.pix.field = V4L2_FIELD_NONE; 1033 1033 } 1034 1034 return 0;