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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-10-14 23:46:51 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2017-08-04 20:18:08 +0300
commit528cfff9443838858ed09c1cf93c631f81ddae5d (patch)
tree5a3dfee61bf7bd0b196ee7b5bfd2e624c481cd2d
parent3dfb4ef8f30589f7817f610c057b892b53ad1c40 (diff)
rtpdec_asf: support the asf_o demuxer
-rw-r--r--libavformat/rtpdec_asf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_asf.c b/libavformat/rtpdec_asf.c
index 2c09fda10b..9d349a9262 100644
--- a/libavformat/rtpdec_asf.c
+++ b/libavformat/rtpdec_asf.c
@@ -120,7 +120,7 @@ int ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p)
avformat_close_input(&rt->asf_ctx);
}
- if (!(iformat = av_find_input_format("asf")))
+ if (!(iformat = av_find_input_format("asf")) && !(iformat = av_find_input_format("asf_o")))
return AVERROR_DEMUXER_NOT_FOUND;
rt->asf_ctx = avformat_alloc_context();