From decafb5f4cdb0fc39e8d0c5fad81572705030b5e Mon Sep 17 00:00:00 2001 From: Michael Olbrich Date: Wed, 25 May 2016 11:23:59 +0200 Subject: [PATCH] hlsdemux: simplify gst_hls_demux_seek() Don't initialize current_sequence. It is always overwritten in the walk loop. --- ext/hls/gsthlsdemux.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/hls/gsthlsdemux.c b/ext/hls/gsthlsdemux.c index 0c20d9d..8e417ba 100644 --- a/ext/hls/gsthlsdemux.c +++ b/ext/hls/gsthlsdemux.c @@ -349,9 +349,8 @@ gst_hls_demux_seek (GstAdaptiveDemux * demux, GstEvent * seek) /* TODO why not continue using the same? that was being used up to now? */ gst_hls_demux_change_playlist (hlsdemux, bitrate, NULL); } - GST_M3U8_CLIENT_LOCK (hlsdemux->client); - file = GST_M3U8_MEDIA_FILE (hlsdemux->current_variant->m3u8->files->data); - current_sequence = file->sequence; + + current_sequence = 0; current_pos = 0; reverse = rate < 0; target_pos = reverse ? stop : start; @@ -363,6 +362,7 @@ gst_hls_demux_seek (GstAdaptiveDemux * demux, GstEvent * seek) snap_before = ! !(flags & GST_SEEK_FLAG_SNAP_BEFORE); snap_after = ! !(flags & GST_SEEK_FLAG_SNAP_AFTER); + GST_M3U8_CLIENT_LOCK (hlsdemux->client); /* FIXME: Here we need proper discont handling */ for (walk = hlsdemux->current_variant->m3u8->files; walk; walk = walk->next) { file = walk->data; -- 2.7.4