From: Wim Taymans Date: Tue, 17 Jul 2012 14:39:02 +0000 (+0200) Subject: update for RTP buffer api changes X-Git-Tag: 1.19.3~509^2~6027^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3371297afc47ded436011cc1fd725dd942074c14;p=platform%2Fupstream%2Fgstreamer.git update for RTP buffer api changes --- diff --git a/gst/dtmf/gstrtpdtmfdepay.c b/gst/dtmf/gstrtpdtmfdepay.c index 0dda885..1bea465 100644 --- a/gst/dtmf/gstrtpdtmfdepay.c +++ b/gst/dtmf/gstrtpdtmfdepay.c @@ -407,9 +407,6 @@ gst_rtp_dtmf_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf) rtpdtmfdepay = GST_RTP_DTMF_DEPAY (depayload); - if (!gst_rtp_buffer_validate (buf)) - goto bad_packet; - gst_rtp_buffer_map (buf, GST_MAP_READ, &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) goto bad_packet; - marker = gst_rtp_buffer_get_marker (&rtpbuffer); timestamp = gst_rtp_buffer_get_timestamp (&rtpbuffer);