jpegdec: let the base class decide when to return an error
authorThiago Santos <ts.santos@sisa.samsung.com>
Tue, 29 Oct 2013 00:33:22 +0000 (21:33 -0300)
committerThiago Santos <ts.santos@sisa.samsung.com>
Mon, 25 Nov 2013 14:03:34 +0000 (11:03 -0300)
The base videodecoder class has an error counting feature to tolerate
a few errors before posting an error message. So don't force the
error and let the base class decide when it should happen

https://bugzilla.gnome.org/show_bug.cgi?id=710762

ext/jpeg/gstjpegdec.c

index 8958f77..d12d70e 100644 (file)
@@ -1183,7 +1183,6 @@ decode_error:
     need_unmap = FALSE;
     jpeg_abort_decompress (&dec->cinfo);
 
-    ret = GST_FLOW_ERROR;
     goto done;
   }
 decode_direct_failed: