diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-10-26 18:54:57 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-26 19:20:01 +0200 |
commit | d2db1bb7dea19551e4604067d0acbd9e2950c698 (patch) | |
tree | 6e58c16454337d77286aae9eaa018e7955a78b1a | |
parent | e0b2bdd37a019360117528dc08e8d16e8d83c08b (diff) | |
download | ffmpeg-d2db1bb7dea19551e4604067d0acbd9e2950c698.tar.gz |
avformat/http: dont fail with unknown Content-Encodings
Fixes: http://m1.file.xiami.com/282/23282/343749/1769075752_709488_l.mp3
Based-on-patch-by: Crossle Song <sxm@yixia.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/http.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c index 7e8d60999b..c5b5c53814 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -437,7 +437,6 @@ static int process_line(URLContext *h, char *line, int line_count, // the header at all if this is the case). } else { av_log(h, AV_LOG_WARNING, "Unknown content coding: %s\n", p); - return AVERROR(ENOSYS); } } } |