diff options
author | Clément Bœsch <cboesch@gopro.com> | 2017-05-22 17:31:32 +0200 |
---|---|---|
committer | Clément Bœsch <cboesch@gopro.com> | 2017-05-22 17:31:32 +0200 |
commit | ef01061225088c4945f5e309bc695ea5beb2a867 (patch) | |
tree | 59ceae80828babc66b7b7240f4a0e1136f430ef6 /libavformat/hls.c | |
parent | 0dcac9c3f0f8f32009098edb704fac4b08bac951 (diff) | |
download | ffmpeg-ef01061225088c4945f5e309bc695ea5beb2a867.tar.gz |
lavf/hls: do not transfer custom IO flag
See 0dcac9c3f0f8f32009098edb704fac4b08bac951
Diffstat (limited to 'libavformat/hls.c')
-rw-r--r-- | libavformat/hls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c index bac53a4350..0c7283d974 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -1761,7 +1761,7 @@ static int hls_read_header(AVFormatContext *s) } pls->ctx->pb = &pls->pb; 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) goto fail; |