summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorIan Jamison <ian.dev@arkver.com>2017-09-05 15:29:24 +0100
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2017-09-06 11:33:53 -0400
commitfc5d9c34a74ee6fc7f533f19e88831e306db698d (patch)
tree82ff7a695558f8cbf71f6a396d524f6c26a6f1be /sys
parent05a5ab0e5571faefd2571f0d4c6903c4d9f709c8 (diff)
v4l2object: Fix colorimetry transfer lookup for 4K video
https://bugzilla.gnome.org/show_bug.cgi?id=787160
Diffstat (limited to 'sys')
-rw-r--r--sys/v4l2/gstv4l2object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/v4l2/gstv4l2object.c b/sys/v4l2/gstv4l2object.c
index af62d6db6..8da5831b7 100644
--- a/sys/v4l2/gstv4l2object.c
+++ b/sys/v4l2/gstv4l2object.c
@@ -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;