Commit 393b8f35 authored by stefano's avatar stefano

Replace last occurrence of the deprecated match_ext() with

av_match_ext().

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22351 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0d413e34
...@@ -1299,7 +1299,7 @@ static int mpegts_probe(AVProbeData *p) ...@@ -1299,7 +1299,7 @@ static int mpegts_probe(AVProbeData *p)
else return -1; else return -1;
#else #else
/* only use the extension for safer guess */ /* only use the extension for safer guess */
if (match_ext(p->filename, "ts")) if (av_match_ext(p->filename, "ts"))
return AVPROBE_SCORE_MAX; return AVPROBE_SCORE_MAX;
else else
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment