summaryrefslogtreecommitdiff
path: root/tools/target_dec_fuzzer.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/target_dec_fuzzer.c')
-rw-r--r--tools/target_dec_fuzzer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c
index fad44a4101..2bdf9ea8d5 100644
--- a/tools/target_dec_fuzzer.c
+++ b/tools/target_dec_fuzzer.c
@@ -59,7 +59,7 @@
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
-extern AVCodec * codec_list[];
+extern const AVCodec * codec_list[];
static void error(const char *err)
{
@@ -67,10 +67,10 @@ static void error(const char *err)
exit(1);
}
-static AVCodec *c = NULL;
-static AVCodec *AVCodecInitialize(enum AVCodecID codec_id)
+static const AVCodec *c = NULL;
+static const AVCodec *AVCodecInitialize(enum AVCodecID codec_id)
{
- AVCodec *res;
+ const AVCodec *res;
res = avcodec_find_decoder(codec_id);
if (!res)