summaryrefslogtreecommitdiff
path: root/gst/rtp/gstrtpqdmdepay.c
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-06-10 14:33:50 +0200
committerSebastian Dröge <sebastian@centricular.com>2015-06-10 14:34:47 +0200
commitdc059efa609b9e86e5fea53e00d72c8d95f1c7fe (patch)
treee94471fe28fbc3d9762e9147a0b477489d84f970 /gst/rtp/gstrtpqdmdepay.c
parentc7e168ec70754aef0b84d8fe53ffabcd2d286194 (diff)
rtp: Use GST_BUFFER_PTS() instead of GST_BUFFER_TIMESTAMP()
The mix between all these in the RTP code is confusing, let's try to be consistent.
Diffstat (limited to 'gst/rtp/gstrtpqdmdepay.c')
-rw-r--r--gst/rtp/gstrtpqdmdepay.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/rtp/gstrtpqdmdepay.c b/gst/rtp/gstrtpqdmdepay.c
index ba85018ea..3049f9b9e 100644
--- a/gst/rtp/gstrtpqdmdepay.c
+++ b/gst/rtp/gstrtpqdmdepay.c
@@ -251,7 +251,7 @@ gst_rtp_qdm2_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
flush_data (rtpqdm2depay);
/* And store new timestamp */
rtpqdm2depay->ptimestamp = rtpqdm2depay->timestamp;
- rtpqdm2depay->timestamp = GST_BUFFER_TIMESTAMP (buf);
+ rtpqdm2depay->timestamp = GST_BUFFER_PTS (buf);
/* And that previous data will be pushed at the bottom */
}
rtpqdm2depay->nextseq = seq + 1;
@@ -273,7 +273,7 @@ gst_rtp_qdm2_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
GST_DEBUG ("Headers");
/* Store the incoming timestamp */
rtpqdm2depay->ptimestamp = rtpqdm2depay->timestamp;
- rtpqdm2depay->timestamp = GST_BUFFER_TIMESTAMP (buf);
+ rtpqdm2depay->timestamp = GST_BUFFER_PTS (buf);
/* flush the internal data if needed */
flush_data (rtpqdm2depay);
if (G_UNLIKELY (!rtpqdm2depay->configured)) {
@@ -356,7 +356,7 @@ gst_rtp_qdm2_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
if (G_UNLIKELY (avail)) {
GST_DEBUG ("Pushing out %d bytes of collected data", avail);
outbuf = gst_adapter_take_buffer (rtpqdm2depay->adapter, avail);
- GST_BUFFER_TIMESTAMP (outbuf) = rtpqdm2depay->ptimestamp;
+ GST_BUFFER_PTS (outbuf) = rtpqdm2depay->ptimestamp;
GST_DEBUG ("Outgoing buffer timestamp %" GST_TIME_FORMAT,
GST_TIME_ARGS (rtpqdm2depay->ptimestamp));
}