From: Thiago Santos Date: Sat, 4 Aug 2012 14:48:52 +0000 (-0300) Subject: basetransform: do not error on not-negotiated X-Git-Tag: RELEASE-0.11.94~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a5afba1a1ca86c1bd476be2eec5eae23a036bb8;p=platform%2Fupstream%2Fgstreamer.git basetransform: do not error on not-negotiated Don't error out too early and let upstream decide if it can workaround a not-negotiated problem https://bugzilla.gnome.org/show_bug.cgi?id=681198 --- diff --git a/libs/gst/base/gstbasetransform.c b/libs/gst/base/gstbasetransform.c index 81bf956..3a8664d 100644 --- a/libs/gst/base/gstbasetransform.c +++ b/libs/gst/base/gstbasetransform.c @@ -2064,7 +2064,7 @@ not_negotiated: { gst_buffer_unref (inbuf); *outbuf = NULL; - GST_ELEMENT_ERROR (trans, STREAM, FORMAT, + GST_ELEMENT_WARNING (trans, STREAM, FORMAT, ("not negotiated"), ("not negotiated")); return GST_FLOW_NOT_NEGOTIATED; }