From e95da8410f315b52c049137a528a957b20776631 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 20 Nov 2014 09:01:38 +0100 Subject: [PATCH] videobalance: fix unhandled format in passthrough In passthrough we can handle all formats. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=740387 --- gst/videofilter/gstvideobalance.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/videofilter/gstvideobalance.c b/gst/videofilter/gstvideobalance.c index 950c484..49cad51 100644 --- a/gst/videofilter/gstvideobalance.c +++ b/gst/videofilter/gstvideobalance.c @@ -454,7 +454,8 @@ gst_video_balance_set_info (GstVideoFilter * vfilter, GstCaps * incaps, videobalance->process = gst_video_balance_packed_rgb; break; default: - goto unknown_format; + if (!gst_video_balance_is_passthrough (videobalance)) + goto unknown_format; break; } -- 2.7.4