[FFmpeg-cvslog] tools/probetest: replace the deprecated API
Zhong Li
git at videolan.org
Mon Nov 4 17:35:17 EET 2019
ffmpeg | branch: master | Zhong Li <zhongli_dev at 126.com> | Sat Nov 2 23:47:00 2019 +0800| [f52e15df0f6a91428220d7a0852f0d020c2e75a2] | committer: Zhong Li
tools/probetest: replace the deprecated API
Signed-off-by: Zhong Li <zhongli_dev at 126.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f52e15df0f6a91428220d7a0852f0d020c2e75a2
---
tools/probetest.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/tools/probetest.c b/tools/probetest.c
index 2c6c1de246..cfa309cabd 100644
--- a/tools/probetest.c
+++ b/tools/probetest.c
@@ -38,9 +38,10 @@ static const char *single_format;
static void probe(AVProbeData *pd, int type, int p, int size)
{
int i = 0;
- AVInputFormat *fmt = NULL;
+ const AVInputFormat *fmt = NULL;
+ void *fmt_opaque = NULL;
- while ((fmt = av_iformat_next(fmt))) {
+ while ((fmt = av_demuxer_iterate(&fmt_opaque))) {
if (fmt->flags & AVFMT_NOFILE)
continue;
if (fmt->read_probe &&
@@ -66,8 +67,9 @@ static void print_times(void)
{
int i = 0;
AVInputFormat *fmt = NULL;
+ void *fmt_opaque = NULL;
- while ((fmt = av_iformat_next(fmt))) {
+ while ((fmt = av_demuxer_iterate(&fmt_opaque))) {
if (fmt->flags & AVFMT_NOFILE)
continue;
if (time_array[i] > 1000000) {
More information about the ffmpeg-cvslog
mailing list