Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <cboesch@gopro.com>2017-05-22 18:31:32 +0300
committerClément Bœsch <cboesch@gopro.com>2017-05-22 18:31:32 +0300
commitef01061225088c4945f5e309bc695ea5beb2a867 (patch)
tree59ceae80828babc66b7b7240f4a0e1136f430ef6 /libavformat/hls.c
parent0dcac9c3f0f8f32009098edb704fac4b08bac951 (diff)
lavf/hls: do not transfer custom IO flag
See 0dcac9c3f0f8f32009098edb704fac4b08bac951
Diffstat (limited to 'libavformat/hls.c')
-rw-r--r--libavformat/hls.c2
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;