summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2009-12-22 14:35:13 +0100
committerWim Taymans <wim@metal.(none)>2009-12-22 14:35:13 +0100
commit564581e1b88ecd5ec5da82c3cafb0e7a2d58b302 (patch)
treea798b49cf6b44ca61205ebe4953b4925f8b5853a
parent27ff4a8a4701c406524b1342ebcf2917168ac16a (diff)
rtph263depay: baseclass handles timestamps for us
-rw-r--r--gst/rtp/gstrtph263depay.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gst/rtp/gstrtph263depay.c b/gst/rtp/gstrtph263depay.c
index 822b127ed..89477594a 100644
--- a/gst/rtp/gstrtph263depay.c
+++ b/gst/rtp/gstrtph263depay.c
@@ -301,7 +301,6 @@ gst_rtp_h263_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
if (rtph263depay->start) {
/* frame is completed */
guint avail;
- guint32 timestamp;
if (rtph263depay->offset) {
/* push in the leftover */
@@ -320,8 +319,7 @@ gst_rtp_h263_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
GST_DEBUG ("Pushing out a buffer of %d bytes", avail);
- timestamp = gst_rtp_buffer_get_timestamp (buf);
- gst_base_rtp_depayload_push_ts (depayload, timestamp, outbuf);
+ gst_base_rtp_depayload_push (depayload, outbuf);
rtph263depay->offset = 0;
rtph263depay->leftover = 0;
} else {