Browse Source

tools/target_dec_fuzzer: enable mjpeg for tiff or tdsc

This is needed for fuzzing tiff/tdsc and should increase coverage

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.3
Michael Niedermayer 6 years ago
parent
commit
3371d0611f
2 changed files with 7 additions and 0 deletions
  1. +1
    -0
      libavcodec/allcodecs.c
  2. +6
    -0
      tools/target_dec_fuzzer.c

+ 1
- 0
libavcodec/allcodecs.c View File

@@ -812,6 +812,7 @@ extern AVCodec ff_vp9_qsv_encoder;
// The iterate API is not usable with ossfuzz due to the excessive size of binaries created
#if CONFIG_OSSFUZZ
AVCodec * codec_list[] = {
NULL,
NULL,
NULL
};


+ 6
- 0
tools/target_dec_fuzzer.c View File

@@ -120,6 +120,12 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
codec_list[0] = &DECODER_SYMBOL(FFMPEG_DECODER);
avcodec_register(&DECODER_SYMBOL(FFMPEG_DECODER));

#if FFMPEG_DECODER == tiff || FFMPEG_DECODER == tdsc
extern AVCodec DECODER_SYMBOL(mjpeg);
codec_list[1] = &DECODER_SYMBOL(mjpeg);
avcodec_register(&DECODER_SYMBOL(mjpeg));
#endif

c = &DECODER_SYMBOL(FFMPEG_DECODER);
#else
avcodec_register_all();


Loading…
Cancel
Save