rtph264depay: do not call _push_ts with unneeded (and wrong) time parameter

Fixes #613206.
This commit is contained in:
Mark Nauwelaerts 2010-03-18 12:20:17 +01:00
parent abd9c0c657
commit fd5164af96

View file

@ -563,7 +563,8 @@ gst_rtp_h264_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
outbuf = gst_rtp_h264_depay_push_nal (rtph264depay, outbuf, ts);
if (outbuf) {
gst_buffer_set_caps (outbuf, GST_PAD_CAPS (depayload->srcpad));
gst_base_rtp_depayload_push_ts (depayload, ts, outbuf);
/* already timestamped this buffer, baseclass need not bother */
gst_base_rtp_depayload_push (depayload, outbuf);
}
}