mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 06:16:36 +00:00
rtpbin: fix a bug calculating stream offsets.
This commit is contained in:
parent
ad1c01661f
commit
38a5b08ef2
1 changed files with 1 additions and 1 deletions
|
@ -1886,7 +1886,7 @@ gst_rtp_bin_handle_message (GstBin * bin, GstMessage * message)
|
|||
|
||||
if (last_out == -1)
|
||||
last_out = 0;
|
||||
if (last_out < min_out_time)
|
||||
if (min_out_time == -1 || last_out < min_out_time)
|
||||
min_out_time = last_out;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue