mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
update for RTP buffer api changes
This commit is contained in:
parent
124c9a7fa4
commit
87ee22fe0e
2 changed files with 6 additions and 11 deletions
|
@ -407,9 +407,6 @@ gst_rtp_dtmf_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
|
||||||
|
|
||||||
rtpdtmfdepay = GST_RTP_DTMF_DEPAY (depayload);
|
rtpdtmfdepay = GST_RTP_DTMF_DEPAY (depayload);
|
||||||
|
|
||||||
if (!gst_rtp_buffer_validate (buf))
|
|
||||||
goto bad_packet;
|
|
||||||
|
|
||||||
gst_rtp_buffer_map (buf, GST_MAP_READ, &rtpbuffer);
|
gst_rtp_buffer_map (buf, GST_MAP_READ, &rtpbuffer);
|
||||||
|
|
||||||
payload_len = gst_rtp_buffer_get_payload_len (&rtpbuffer);
|
payload_len = gst_rtp_buffer_get_payload_len (&rtpbuffer);
|
||||||
|
@ -423,7 +420,6 @@ gst_rtp_dtmf_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
|
||||||
if (dtmf_payload.event > MAX_EVENT)
|
if (dtmf_payload.event > MAX_EVENT)
|
||||||
goto bad_packet;
|
goto bad_packet;
|
||||||
|
|
||||||
|
|
||||||
marker = gst_rtp_buffer_get_marker (&rtpbuffer);
|
marker = gst_rtp_buffer_get_marker (&rtpbuffer);
|
||||||
|
|
||||||
timestamp = gst_rtp_buffer_get_timestamp (&rtpbuffer);
|
timestamp = gst_rtp_buffer_get_timestamp (&rtpbuffer);
|
||||||
|
|
|
@ -469,12 +469,6 @@ gst_rtp_mux_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
|
||||||
|
|
||||||
rtp_mux = GST_RTP_MUX (GST_OBJECT_PARENT (pad));
|
rtp_mux = GST_RTP_MUX (GST_OBJECT_PARENT (pad));
|
||||||
|
|
||||||
if (!gst_rtp_buffer_validate (buffer)) {
|
|
||||||
gst_buffer_unref (buffer);
|
|
||||||
GST_ERROR_OBJECT (rtp_mux, "Invalid RTP buffer");
|
|
||||||
return GST_FLOW_ERROR;
|
|
||||||
}
|
|
||||||
|
|
||||||
GST_OBJECT_LOCK (rtp_mux);
|
GST_OBJECT_LOCK (rtp_mux);
|
||||||
padpriv = gst_pad_get_element_private (pad);
|
padpriv = gst_pad_get_element_private (pad);
|
||||||
|
|
||||||
|
@ -486,7 +480,12 @@ gst_rtp_mux_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
|
||||||
|
|
||||||
buffer = gst_buffer_make_writable (buffer);
|
buffer = gst_buffer_make_writable (buffer);
|
||||||
|
|
||||||
gst_rtp_buffer_map (buffer, GST_MAP_READWRITE, &rtpbuffer);
|
if (!gst_rtp_buffer_map (buffer, GST_MAP_READWRITE, &rtpbuffer)) {
|
||||||
|
GST_OBJECT_UNLOCK (rtp_mux);
|
||||||
|
gst_buffer_unref (buffer);
|
||||||
|
GST_ERROR_OBJECT (rtp_mux, "Invalid RTP buffer");
|
||||||
|
return GST_FLOW_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
drop = !process_buffer_locked (rtp_mux, padpriv, &rtpbuffer);
|
drop = !process_buffer_locked (rtp_mux, padpriv, &rtpbuffer);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue