From d2db1bb7dea19551e4604067d0acbd9e2950c698 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 26 Oct 2013 18:54:57 +0200 Subject: [PATCH] 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 Signed-off-by: Michael Niedermayer --- libavformat/http.c | 1 - 1 file changed, 1 deletion(-) 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); } } }