aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-01-20 15:25:32 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-01-28 15:53:54 +0100
commit736e42bc33ec80bb04eb00a9e26287a2d65f4ea5 (patch)
tree7385f18ee9368836af8d639ea4bba4b07990f64b
parentcb88f428b32f37a77f88d864a79135b3c80c39ef (diff)
downloadffmpeg-736e42bc33ec80bb04eb00a9e26287a2d65f4ea5.tar.gz
avformat/libquvi: Set default demuxer and protocol limitations
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 15cc98a0f38ac45444d177186cfbf28e14bd5f1f) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavformat/libquvi.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/libavformat/libquvi.c b/libavformat/libquvi.c
index 7151694542..1e5c8bc525 100644
--- a/libavformat/libquvi.c
+++ b/libavformat/libquvi.c
@@ -95,6 +95,20 @@ static int libquvi_read_header(AVFormatContext *s)
goto err_quvi_cleanup;
}
+ if (!qc->fmtctx->format_whitelist) {
+ qc->fmtctx->format_whitelist = av_strdup("avi,asf,flv,mov,mpeg,mpegts,aac,h264,hevc,mp3,ogg,matroska,mxf,mp2");
+ if (!qc->fmtctx->format_whitelist) {
+ avformat_free_context(qc->fmtctx);
+ qc->fmtctx = NULL;
+ goto err_quvi_cleanup;
+ }
+ }
+ if (strncmp(media_url, "http:", 5) && strncmp(media_url, "https:", 6)) {
+ avformat_free_context(qc->fmtctx);
+ qc->fmtctx = NULL;
+ goto err_quvi_cleanup;
+ }
+
ret = avformat_open_input(&qc->fmtctx, media_url, NULL, NULL);
if (ret < 0)
goto err_quvi_cleanup;