[FFmpeg-cvslog] r22351 - trunk/libavformat/mpegts.c
stefano
subversion
Tue Mar 9 00:46:05 CET 2010
Author: stefano
Date: Tue Mar 9 00:46:04 2010
New Revision: 22351
Log:
Replace last occurrence of the deprecated match_ext() with
av_match_ext().
Modified:
trunk/libavformat/mpegts.c
Modified: trunk/libavformat/mpegts.c
==============================================================================
--- trunk/libavformat/mpegts.c Mon Mar 8 23:44:03 2010 (r22350)
+++ trunk/libavformat/mpegts.c Tue Mar 9 00:46:04 2010 (r22351)
@@ -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;
More information about the ffmpeg-cvslog
mailing list