mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
streamsynchronizer: Fix check for belonging to another stream
https://bugzilla.gnome.org/show_bug.cgi?id=697820
This commit is contained in:
parent
fbe295f275
commit
9c5c0ca878
1 changed files with 2 additions and 1 deletions
|
@ -259,7 +259,8 @@ gst_stream_synchronizer_sink_event (GstPad * pad, GstObject * parent,
|
|||
for (l = self->streams; l; l = l->next) {
|
||||
ostream = l->data;
|
||||
|
||||
if (ostream->stream_start_seqnum == seqnum && !ostream->wait) {
|
||||
if (ostream != stream && ostream->stream_start_seqnum == seqnum
|
||||
&& !ostream->wait) {
|
||||
new_stream = FALSE;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue