Commit ef010612 authored by Clément Bœsch's avatar Clément Bœsch

lavf/hls: do not transfer custom IO flag

See 0dcac9c3
parent 0dcac9c3
...@@ -1761,7 +1761,7 @@ static int hls_read_header(AVFormatContext *s) ...@@ -1761,7 +1761,7 @@ static int hls_read_header(AVFormatContext *s)
} }
pls->ctx->pb = &pls->pb; pls->ctx->pb = &pls->pb;
pls->ctx->io_open = nested_io_open; pls->ctx->io_open = nested_io_open;
pls->ctx->flags |= s->flags; pls->ctx->flags |= s->flags & ~AVFMT_FLAG_CUSTOM_IO;
if ((ret = ff_copy_whiteblacklists(pls->ctx, s)) < 0) if ((ret = ff_copy_whiteblacklists(pls->ctx, s)) < 0)
goto fail; goto fail;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment