From c11e33a3d9665dd1fc5dbdecdd03a4860ac6a622 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Sun, 28 Jul 2013 20:33:26 +0300 Subject: hls: Set stream offset before opening a chained demuxer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This makes sure we don't accidentally check discard flags for the wrong stream. Signed-off-by: Martin Storsjö --- libavformat/hls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/hls.c') diff --git a/libavformat/hls.c b/libavformat/hls.c index 213b71764b..86cf9741da 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -523,10 +523,10 @@ static int hls_read_header(AVFormatContext *s) goto fail; } v->ctx->pb = &v->pb; + v->stream_offset = stream_offset; ret = avformat_open_input(&v->ctx, v->segments[0]->url, in_fmt, NULL); if (ret < 0) goto fail; - v->stream_offset = stream_offset; snprintf(bitrate_str, sizeof(bitrate_str), "%d", v->bandwidth); /* Create new AVStreams for each stream in this variant */ for (j = 0; j < v->ctx->nb_streams; j++) { -- cgit v1.2.3