diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-03-15 15:27:56 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-03-21 10:19:48 +0100 |
commit | 6c126cbfdf7cc56b608580b0254bfc0ff845def3 (patch) | |
tree | 86313601e7f8700d1fa2f52772b783ef9375f9de | |
parent | fc70fb17065a19cd3cb6464c53ba88c3ecaaf3f3 (diff) | |
download | gst-plugins-bad-6c126cbfdf7cc56b608580b0254bfc0ff845def3.tar.gz gst-plugins-bad-6c126cbfdf7cc56b608580b0254bfc0ff845def3.tar.bz2 gst-plugins-bad-6c126cbfdf7cc56b608580b0254bfc0ff845def3.zip |
mxfdemux: Error out directly if pushing a packet downstream failed
-rw-r--r-- | gst/mxf/mxfdemux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mxf/mxfdemux.c b/gst/mxf/mxfdemux.c index 9e486f1e..733e920d 100644 --- a/gst/mxf/mxfdemux.c +++ b/gst/mxf/mxfdemux.c @@ -1779,7 +1779,7 @@ gst_mxf_demux_handle_generic_container_essence_element (GstMXFDemux * demux, pad->last_stop); if (ret != GST_FLOW_OK) - break; + goto out; pad->current_essence_track_position++; |