avformat/format: Use av_match_name() instead of list in av_match_ext()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-10-23 04:33:09 +02:00
parent 6dc99fdf0e
commit cebe8c8095

View 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;
}