mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 05:28:48 +00:00
gst/rtpmanager/rtpjitterbuffer.c: Don't try to reset the clock skew when we have no timestamps.
Original commit message from CVS: Patch by: Stefan Kost <ensonic@users.sf.net> * gst/rtpmanager/rtpjitterbuffer.c: (calculate_skew): Don't try to reset the clock skew when we have no timestamps. Fixes #519005.
This commit is contained in:
parent
db8bdc8b92
commit
52cdd3c59a
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ again:
|
|||
GST_TIME_ARGS (gstrtptime), GST_TIME_ARGS (jbuf->base_rtptime),
|
||||
GST_TIME_ARGS (send_diff));
|
||||
|
||||
if (jbuf->prev_send_diff != -1) {
|
||||
if (jbuf->prev_send_diff != -1 && time != -1) {
|
||||
gint64 delta_diff;
|
||||
|
||||
if (send_diff > jbuf->prev_send_diff)
|
||||
|
|
Loading…
Reference in a new issue