mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
plugins/elements/gsttypefindelement.c: This should be 0 not GST_CLOCK_TIME_NONE (see #331701).
Original commit message from CVS: * plugins/elements/gsttypefindelement.c: (stop_typefinding): This should be 0 not GST_CLOCK_TIME_NONE (see #331701).
This commit is contained in:
parent
e203621dcb
commit
b86c545a88
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-02-26 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* plugins/elements/gsttypefindelement.c: (stop_typefinding):
|
||||
This should be 0 not GST_CLOCK_TIME_NONE (see #331701).
|
||||
|
||||
2006-02-26 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* plugins/elements/gsttypefindelement.c:
|
||||
|
|
|
@ -438,8 +438,7 @@ stop_typefinding (GstTypeFindElement * typefind)
|
|||
GstState state;
|
||||
gboolean push_cached_buffers;
|
||||
|
||||
gst_element_get_state (GST_ELEMENT (typefind), &state, NULL,
|
||||
GST_CLOCK_TIME_NONE);
|
||||
gst_element_get_state (GST_ELEMENT (typefind), &state, NULL, 0);
|
||||
|
||||
push_cached_buffers = (state >= GST_STATE_PAUSED);
|
||||
|
||||
|
|
Loading…
Reference in a new issue