projects
/
platform
/
upstream
/
gst-plugins-good.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27ff4a8
)
rtph263depay: baseclass handles timestamps for us
author
Wim Taymans
<wim.taymans@collabora.co.uk>
Tue, 22 Dec 2009 13:35:13 +0000
(14:35 +0100)
committer
Wim Taymans
<wim@metal.(none)>
Tue, 22 Dec 2009 13:35:13 +0000
(14:35 +0100)
gst/rtp/gstrtph263depay.c
patch
|
blob
|
history
diff --git
a/gst/rtp/gstrtph263depay.c
b/gst/rtp/gstrtph263depay.c
index 822b127edb317467410668b71f21febcad2d241b..89477594a69deb9c0c7564ad28cad65d017f3e72 100644
(file)
--- 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 {