From: Edward Hervey Date: Wed, 1 Nov 2017 17:26:20 +0000 (+0100) Subject: oggdemux: Only track time for initialized streams X-Git-Tag: 1.16.2~1039 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=33dfed5af86bf46e66bb7c128a69c4648f69e1b3;p=platform%2Fupstream%2Fgst-plugins-base.git oggdemux: Only track time for initialized streams in push-mode we only can track time (or most operations on streams for that matter) if the underlying GstOggMap was properly initialized. --- diff --git a/ext/ogg/gstoggdemux.c b/ext/ogg/gstoggdemux.c index be44cf5..5685456 100644 --- a/ext/ogg/gstoggdemux.c +++ b/ext/ogg/gstoggdemux.c @@ -1652,7 +1652,7 @@ gst_ogg_pad_handle_push_mode_state (GstOggPad * pad, ogg_page * page) ogg_int64_t granpos = ogg_page_granulepos (page); GST_PUSH_LOCK (ogg); - if (granpos >= 0) { + if (granpos >= 0 && pad->have_type) { if (ogg->push_start_time == GST_CLOCK_TIME_NONE) { ogg->push_start_time = gst_ogg_stream_get_start_time_for_granulepos (&pad->map, granpos);