diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/faad/gstfaad.c | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2007-08-22 Wim Taymans <wim.taymans@gmail.com> + + * ext/faad/gstfaad.c: (gst_faad_chain): + Don't unref the buffer when it was clipped. + 2007-08-22 Julien MOUTTE <julien@moutte.net> * gst/flv/gstflvdemux.c: (gst_flv_demux_cleanup), diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c index fa2f0038..7e719ec0 100644 --- a/ext/faad/gstfaad.c +++ b/ext/faad/gstfaad.c @@ -1352,8 +1352,7 @@ gst_faad_chain (GstPad * pad, GstBuffer * buffer) ret = gst_pad_push (faad->srcpad, outbuf); if (ret != GST_FLOW_OK) goto out; - } else - gst_buffer_unref (outbuf); + } } } } |