From 53e8e7da75e4eeaa1054eb24e50568b32d8bd6b1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 12 Mar 2015 12:59:57 +0000 Subject: [PATCH] typefind: Reset segment when deactivating pull mode or not running in pull mode We use the segment format to detect if we run the streaming thread or not. Without resetting we might believe we do so, although we only did in the past and are now running in e.g. push mode. https://bugzilla.gnome.org/show_bug.cgi?id=745073 --- plugins/elements/gsttypefindelement.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/elements/gsttypefindelement.c b/plugins/elements/gsttypefindelement.c index 9af1e23..6ac9133 100644 --- a/plugins/elements/gsttypefindelement.c +++ b/plugins/elements/gsttypefindelement.c @@ -1179,10 +1179,12 @@ gst_type_find_element_activate_sink_mode (GstPad * pad, GstObject * parent, typefind->offset = 0; res = TRUE; } else { + gst_segment_init (&typefind->segment, GST_FORMAT_UNDEFINED); res = gst_pad_stop_task (pad); } break; case GST_PAD_MODE_PUSH: + gst_segment_init (&typefind->segment, GST_FORMAT_UNDEFINED); if (active) start_typefinding (typefind); else -- 2.7.4