mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
gst/rtpmanager/gstrtpbin.c: Ignore streams that did not receive an SR packet when doing synchronisation. Fixes #516160.
Original commit message from CVS: Patch by: Olivier Crete <tester@tester.ca> * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_associate): Ignore streams that did not receive an SR packet when doing synchronisation. Fixes #516160.
This commit is contained in:
parent
b638626053
commit
a301c9a22b
1 changed files with 4 additions and 1 deletions
|
@ -778,7 +778,7 @@ gst_rtp_bin_associate (GstRtpBin * bin, GstRtpBinStream * stream, guint8 len,
|
|||
for (walk = client->streams; walk; walk = g_slist_next (walk)) {
|
||||
GstRtpBinStream *ostream = (GstRtpBinStream *) walk->data;
|
||||
|
||||
if (ostream->unix_delta < min)
|
||||
if (ostream->unix_delta && ostream->unix_delta < min)
|
||||
min = ostream->unix_delta;
|
||||
}
|
||||
|
||||
|
@ -789,6 +789,9 @@ gst_rtp_bin_associate (GstRtpBin * bin, GstRtpBinStream * stream, guint8 len,
|
|||
for (walk = client->streams; walk; walk = g_slist_next (walk)) {
|
||||
GstRtpBinStream *ostream = (GstRtpBinStream *) walk->data;
|
||||
|
||||
if (ostream->unix_delta == 0)
|
||||
continue;
|
||||
|
||||
ostream->ts_offset = ostream->unix_delta - min;
|
||||
|
||||
/* delta changed, see how much */
|
||||
|
|
Loading…
Reference in a new issue