]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/format.c
avformat/mpegts: Continue parsing PMTs during duration estimation
[ffmpeg] / libavformat / format.c
index 3b741ea9383fd5f0eecfc0d91a6e4bd946353e69..97f5657141491a6dbb1107b458f528bcef6615f7 100644 (file)
@@ -87,7 +87,7 @@ int av_match_ext(const char *filename, const char *extensions)
 
     ext = strrchr(filename, '.');
     if (ext)
-        return av_match_list(ext + 1, extensions, ',');
+        return av_match_name(ext + 1, extensions);
     return 0;
 }