rtpmp4vdepay: rtpbuffer is being unref'ed twice

process_rtp_packet doesn't transfer the rtp buffer to mp4v_process_depay
the refernce should not be removed here

https://bugzilla.gnome.org/show_bug.cgi?id=753042
This commit is contained in:
Vineeth TM 2015-07-30 15:21:20 +09:00 committed by Tim-Philipp Müller
parent 39a90710b7
commit 969bcf25a1

View file

@ -173,7 +173,6 @@ gst_rtp_mp4v_depay_process (GstRTPBaseDepayload * depayload, GstRTPBuffer * rtp)
pbuf = gst_rtp_buffer_get_payload_buffer (rtp);
marker = gst_rtp_buffer_get_marker (rtp);
gst_rtp_buffer_unmap (rtp);
gst_adapter_push (rtpmp4vdepay->adapter, pbuf);