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
Replace last occurrence of the deprecated match_ext() with
av_match_ext(). Originally committed as revision 22351 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Stefano Sabatini
15 years ago
parent
677a1144b0
commit
4837bb52d2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/mpegts.c
+ 1
- 1
libavformat/mpegts.c
View File
@@ -1299,7 +1299,7 @@ static int mpegts_probe(AVProbeData *p)
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;
Write
Preview
Loading…
Cancel
Save