This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avformat/format: Use av_match_name() instead of list in av_match_ext()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.5
Michael Niedermayer
10 years ago
parent
6dc99fdf0e
commit
cebe8c8095
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/format.c
+ 1
- 1
libavformat/format.c
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;
}
Write
Preview
Loading…
Cancel
Save