From: Michael Niedermayer <mich...@niedermayer.cc> If the filename isnt set by the user application then the code behaves like before
Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc> --- libavformat/hls.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavformat/hls.c b/libavformat/hls.c index 7a8610c..846d884 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -1983,6 +1983,10 @@ static int hls_probe(AVProbeData *p) * somewhere for a proper match. */ if (strncmp(p->buf, "#EXTM3U", 7)) return 0; + + if (p->filename && !av_match_ext(p->filename, "m3u8,m3u")) + return 0; + if (strstr(p->buf, "#EXT-X-STREAM-INF:") || strstr(p->buf, "#EXT-X-TARGETDURATION:") || strstr(p->buf, "#EXT-X-MEDIA-SEQUENCE:")) -- 1.7.9.5 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel