mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
rtph264depay: do not call _push_ts with unneeded (and wrong) time parameter
Fixes #613206.
This commit is contained in:
parent
abd9c0c657
commit
fd5164af96
1 changed files with 2 additions and 1 deletions
|
@ -563,7 +563,8 @@ gst_rtp_h264_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
|
||||||
outbuf = gst_rtp_h264_depay_push_nal (rtph264depay, outbuf, ts);
|
outbuf = gst_rtp_h264_depay_push_nal (rtph264depay, outbuf, ts);
|
||||||
if (outbuf) {
|
if (outbuf) {
|
||||||
gst_buffer_set_caps (outbuf, GST_PAD_CAPS (depayload->srcpad));
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue