changeset 5783:ca28eb609756 libavformat

Replace last occurrence of the deprecated match_ext() with av_match_ext().
author stefano
date Mon, 08 Mar 2010 23:46:04 +0000
parents 3b477aba769a
children 28885ab1ef1c
files mpegts.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mpegts.c	Mon Mar 08 22:44:03 2010 +0000
+++ b/mpegts.c	Mon Mar 08 23:46:04 2010 +0000
@@ -1299,7 +1299,7 @@
     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;