diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-08 23:46:04 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-08 23:46:04 +0000 |
commit | 4837bb52d22554936b0e57fd99130dc522b49b83 (patch) | |
tree | b9c08b9e87fa665294f9475f6fe4b67f6f1b852e /libavformat/mpegts.c | |
parent | 677a1144b090b8575b95f71afa03691ba11d72b7 (diff) | |
download | ffmpeg-4837bb52d22554936b0e57fd99130dc522b49b83.tar.gz |
Replace last occurrence of the deprecated match_ext() with
av_match_ext().
Originally committed as revision 22351 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r-- | libavformat/mpegts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index e1d1128100..2951bb7364 100644 --- 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; |