mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 17:18:15 +00:00
Fixed some leftover errors.
Original commit message from CVS: Fixed some leftover errors.
This commit is contained in:
parent
694779a8bb
commit
018fb3ab2f
2 changed files with 5 additions and 2 deletions
|
@ -580,8 +580,9 @@ gst_flxdec_loop (GstElement *element)
|
|||
// destroy header buffer
|
||||
gst_buffer_unref(databuf);
|
||||
|
||||
gst_element_yield (element);
|
||||
}
|
||||
while (!GST_ELEMENT_IS_COTHREAD_STOPPING (element));
|
||||
while (TRUE);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -63,4 +63,6 @@
|
|||
}
|
||||
|
||||
gst_pad_push(filter->srcpad, out);
|
||||
} while (!GST_ELEMENT_IS_COTHREAD_STOPPING (element));
|
||||
|
||||
gst_element_yield (element);
|
||||
} while (TRUE);
|
||||
|
|
Loading…
Reference in a new issue