v4l2object: Fix colorimetry transfer lookup for 4K video

https://bugzilla.gnome.org/show_bug.cgi?id=787160
This commit is contained in:
Ian Jamison 2017-09-05 15:29:24 +01:00 committed by Nicolas Dufresne
parent 05a5ab0e55
commit fc5d9c34a7

View file

@ -2057,7 +2057,7 @@ gst_v4l2_object_get_colorspace (struct v4l2_format *fmt,
switch (transfer) {
case V4L2_XFER_FUNC_709:
if (fmt->fmt.pix.height > 2160)
if (fmt->fmt.pix.height >= 2160)
cinfo->transfer = GST_VIDEO_TRANSFER_BT2020_12;
else
cinfo->transfer = GST_VIDEO_TRANSFER_BT709;