mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-21 16:10:16 +08:00
avcodec: Disable new iterate API for ossfuzz
A few days ago ossfuzz stoped testing new FFmpeg as it run out of diskspacee https://oss-fuzz-build-logs.storage.googleapis.com/index.html An alternative would be to revert the API. This changes for example -rwxr-x--- 1 michael michael 144803654 May 14 12:54 tools/target_dec_ac3_fixed_fuzzer* to -rwxr-x--- 1 michael michael 30333852 May 14 12:51 tools/target_dec_ac3_fixed_fuzzer* Which should massively decrease space requirements Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -760,7 +760,12 @@ extern AVCodec ff_vp9_cuvid_decoder;
|
||||
extern AVCodec ff_vp9_mediacodec_decoder;
|
||||
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[];
|
||||
#else
|
||||
#include "libavcodec/codec_list.c"
|
||||
#endif
|
||||
|
||||
static AVOnce av_codec_static_init = AV_ONCE_INIT;
|
||||
static void av_codec_init_static(void)
|
||||
|
Reference in New Issue
Block a user