summaryrefslogtreecommitdiff
authorMichael Niedermayer <michaelni@gmx.at>2013-10-26 16:54:57 (GMT)
committer Michael Niedermayer <michaelni@gmx.at>2013-10-26 17:20:01 (GMT)
commitd2db1bb7dea19551e4604067d0acbd9e2950c698 (patch)
tree6e58c16454337d77286aae9eaa018e7955a78b1a
parente0b2bdd37a019360117528dc08e8d16e8d83c08b (diff)
downloadffmpeg-d2db1bb7dea19551e4604067d0acbd9e2950c698.zip
ffmpeg-d2db1bb7dea19551e4604067d0acbd9e2950c698.tar.gz
ffmpeg-d2db1bb7dea19551e4604067d0acbd9e2950c698.tar.bz2
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>
Diffstat
-rw-r--r--libavformat/http.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/http.c b/libavformat/http.c
index 7e8d609..c5b5c53 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);
}
}
}