git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Replace last occurrence of the deprecated match_ext() with
[ffmpeg.git]
/
libavformat
/
mpegts.c
diff --git
a/libavformat/mpegts.c
b/libavformat/mpegts.c
index
e1d1128
..
2951bb7
100644
(file)
--- a/
libavformat/mpegts.c
+++ b/
libavformat/mpegts.c
@@
-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;