From 740ea66e738fc5cec2665e509f29aad98782e943 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Javier=20Vel=C3=A1zquez-Garc=C3=ADa?= Date: Tue, 23 Feb 2021 14:40:02 +0100 Subject: [PATCH] videotestsrc.c: Correct left shift operator Use the left shift operator '<<' instead of the mistakenly typed less than operator '<'. Part-of: --- gst/videotestsrc/videotestsrc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/videotestsrc/videotestsrc.c b/gst/videotestsrc/videotestsrc.c index bbe5380098..d127564362 100644 --- a/gst/videotestsrc/videotestsrc.c +++ b/gst/videotestsrc/videotestsrc.c @@ -61,7 +61,7 @@ enum static const struct vts_color_struct vts_colors_bt709_ycbcr_100[] = { {235, 128, 128, 255, 255, 255, 255, (235 << 8)}, {219, 16, 138, 255, 255, 255, 0, (219 << 8)}, - {188, 154, 16, 255, 0, 255, 255, (188 < 8)}, + {188, 154, 16, 255, 0, 255, 255, (188 << 8)}, {173, 42, 26, 255, 0, 255, 0, (173 << 8)}, {78, 214, 230, 255, 255, 0, 255, (78 << 8)}, {63, 102, 240, 255, 255, 0, 0, (64 << 8)}, @@ -91,7 +91,7 @@ static const struct vts_color_struct vts_colors_bt709_ycbcr_75[] = { static const struct vts_color_struct vts_colors_bt601_ycbcr_100[] = { {235, 128, 128, 255, 255, 255, 255, (235 << 8)}, {210, 16, 146, 255, 255, 255, 0, (219 << 8)}, - {170, 166, 16, 255, 0, 255, 255, (188 < 8)}, + {170, 166, 16, 255, 0, 255, 255, (188 << 8)}, {145, 54, 34, 255, 0, 255, 0, (173 << 8)}, {106, 202, 222, 255, 255, 0, 255, (78 << 8)}, {81, 90, 240, 255, 255, 0, 0, (64 << 8)},