diff options
author | Josh de Kock <josh@itanimul.li> | 2020-04-29 11:45:49 +0100 |
---|---|---|
committer | Josh de Kock <josh@itanimul.li> | 2020-04-30 10:25:32 +0100 |
commit | d817b57d36795b22dc493ef66e3ed14a583cae49 (patch) | |
tree | 2887e9ff33ff1a6e6722ee19d00b3ab89da9efc0 /tools | |
parent | 8f51a89d66aacd9dc5896bac22e62cbd566e7a71 (diff) | |
download | ffmpeg-d817b57d36795b22dc493ef66e3ed14a583cae49.tar.gz |
tools: fix const specifier for AVInputFormat
Signed-off-by: Josh de Kock <josh@itanimul.li>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/probetest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/probetest.c b/tools/probetest.c index cfa309cabd..6f0e002b74 100644 --- a/tools/probetest.c +++ b/tools/probetest.c @@ -66,7 +66,7 @@ static void probe(AVProbeData *pd, int type, int p, int size) static void print_times(void) { int i = 0; - AVInputFormat *fmt = NULL; + const AVInputFormat *fmt = NULL; void *fmt_opaque = NULL; while ((fmt = av_demuxer_iterate(&fmt_opaque))) { |