Commit 4837bb52 authored by Stefano Sabatini's avatar Stefano Sabatini

Replace last occurrence of the deprecated match_ext() with

av_match_ext().

Originally committed as revision 22351 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 677a1144
......@@ -1299,7 +1299,7 @@ static int mpegts_probe(AVProbeData *p)
else return -1;
#else
/* only use the extension for safer guess */
if (match_ext(p->filename, "ts"))
if (av_match_ext(p->filename, "ts"))
return AVPROBE_SCORE_MAX;
else
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