You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
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:
@ -87,7 +87,7 @@ int av_match_ext(const char *filename, const char *extensions)
|
|||||||
|
|
||||||
ext = strrchr(filename, '.');
|
ext = strrchr(filename, '.');
|
||||||
if (ext)
|
if (ext)
|
||||||
return av_match_list(ext + 1, extensions, ',');
|
return av_match_name(ext + 1, extensions);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user