mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
xqtdepay: fix buffer refcount error
After pushing the buffer into the adapter, we should not let the baseclass push it out anymore. This error was introduced while porting to 0.11. See https://bugzilla.gnome.org/show_bug.cgi?id=680540
This commit is contained in:
parent
242321e376
commit
0cb11943e5
1 changed files with 1 additions and 0 deletions
|
@ -602,6 +602,7 @@ gst_rtp_xqt_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
|
|||
gst_buffer_fill (outbuf, 0, payload, payload_len);
|
||||
|
||||
gst_adapter_push (rtpxqtdepay->adapter, outbuf);
|
||||
outbuf = NULL;
|
||||
|
||||
if (!m)
|
||||
goto done;
|
||||
|
|
Loading…
Reference in a new issue