mirror of https://git.ffmpeg.org/ffmpeg.git
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>
This commit is contained in:
parent
e0b2bdd37a
commit
d2db1bb7de
|
@ -437,7 +437,6 @@ static int process_line(URLContext *h, char *line, int line_count,
|
||||||
// the header at all if this is the case).
|
// the header at all if this is the case).
|
||||||
} else {
|
} else {
|
||||||
av_log(h, AV_LOG_WARNING, "Unknown content coding: %s\n", p);
|
av_log(h, AV_LOG_WARNING, "Unknown content coding: %s\n", p);
|
||||||
return AVERROR(ENOSYS);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue