diff options
Diffstat (limited to 'libavcodec/allcodecs.c')
-rw-r--r-- | libavcodec/allcodecs.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c index 7b7a8c7..90d170b 100644 --- a/libavcodec/allcodecs.c +++ b/libavcodec/allcodecs.c @@ -762,7 +762,10 @@ extern AVCodec ff_vp9_vaapi_encoder; // The iterate API is not usable with ossfuzz due to the excessive size of binaries created #if CONFIG_OSSFUZZ -extern AVCodec * codec_list[]; +AVCodec * codec_list[] = { + NULL, + NULL +}; #else #include "libavcodec/codec_list.c" #endif |