plugins/elements/gsttypefindelement.c: This should be 0 not GST_CLOCK_TIME_NONE ...
authorTim-Philipp Müller <tim@centricular.net>
Sun, 26 Feb 2006 19:20:51 +0000 (19:20 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Sun, 26 Feb 2006 19:20:51 +0000 (19:20 +0000)
Original commit message from CVS:
* plugins/elements/gsttypefindelement.c: (stop_typefinding):
This should be 0 not GST_CLOCK_TIME_NONE (see #331701).

ChangeLog
plugins/elements/gsttypefindelement.c

index 8a8f83b..cdf5293 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 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:
        (gst_type_find_element_activate):
          Use gst_pad_check_pull_range() before _activate_pull()
index 82dd3b5..d55dfe8 100644 (file)
@@ -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);