From a95a900c21f66c69fb9e41dc243b554314d79a6d Mon Sep 17 00:00:00 2001 From: Joan Pau Beltran Date: Wed, 28 Oct 2015 18:36:41 +0100 Subject: [PATCH] videotestsrc: fix handling of Bayer format 'gbrg' Due to a typo, videotestsrc did not handle the Bayer format 'gbrg' properly and reported it as invalid, causing negotiation errors. https://bugzilla.gnome.org/show_bug.cgi?id=757264 --- gst/videotestsrc/gstvideotestsrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/videotestsrc/gstvideotestsrc.c b/gst/videotestsrc/gstvideotestsrc.c index 00640c997d..56bb47368c 100644 --- a/gst/videotestsrc/gstvideotestsrc.c +++ b/gst/videotestsrc/gstvideotestsrc.c @@ -670,7 +670,7 @@ gst_video_test_src_parse_caps (const GstCaps * caps, } else if (g_str_equal (str, "grbg")) { *x_inv = 0; *y_inv = 1; - } else if (g_str_equal (str, "grbg")) { + } else if (g_str_equal (str, "gbrg")) { *x_inv = 1; *y_inv = 0; } else