diff --git a/libavformat/hls.c b/libavformat/hls.c index 2b39030837..8554b7e84f 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -576,6 +576,7 @@ static int hls_read_header(AVFormatContext *s) ret = avformat_open_input(&v->ctx, v->segments[0]->url, in_fmt, NULL); if (ret < 0) goto fail; + v->ctx->ctx_flags &= ~AVFMTCTX_NOHEADER; ret = avformat_find_stream_info(v->ctx, NULL); if (ret < 0)