jpegdec: don't post an error message if buffer alloc fails with NOT_LINKED flow
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 10 Sep 2010 08:43:24 +0000 (09:43 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 12 Sep 2010 13:54:20 +0000 (14:54 +0100)
This is not fatal, let upstream handle it.

ext/jpeg/gstjpegdec.c

index 207fe8b..58d3ee1 100644 (file)
@@ -1486,7 +1486,8 @@ alloc_failed:
     GST_DEBUG_OBJECT (dec, "failed to alloc buffer, reason %s", reason);
     /* Reset for next time */
     jpeg_abort_decompress (&dec->cinfo);
-    if (ret != GST_FLOW_UNEXPECTED && ret != GST_FLOW_WRONG_STATE) {
+    if (ret != GST_FLOW_UNEXPECTED && ret != GST_FLOW_WRONG_STATE &&
+        ret != GST_FLOW_NOT_LINKED) {
       GST_ELEMENT_ERROR (dec, STREAM, DECODE,
           ("Buffer allocation failed, reason: %s", reason),
           ("Buffer allocation failed, reason: %s", reason));