[FFmpeg-cvslog] tools/target_dec_fuzzer: Do not use codec_id to look up decoder, but use selected decoder directly
Michael Niedermayer
git at videolan.org
Sat May 6 16:35:28 EEST 2017
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sat May 6 15:12:05 2017 +0200| [d58fe0177453bfa43eca9e5174304025248908b2] | committer: Michael Niedermayer
tools/target_dec_fuzzer: Do not use codec_id to look up decoder, but use selected decoder directly
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d58fe0177453bfa43eca9e5174304025248908b2
---
tools/target_dec_fuzzer.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c
index 5a0b53e546..d5ba99d78a 100644
--- a/tools/target_dec_fuzzer.c
+++ b/tools/target_dec_fuzzer.c
@@ -67,7 +67,6 @@ static AVCodec *AVCodecInitialize(enum AVCodecID codec_id)
{
AVCodec *res;
- av_log_set_level(AV_LOG_PANIC);
res = avcodec_find_decoder(codec_id);
if (!res)
error("Failed to find decoder");
@@ -146,13 +145,13 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
#define DECODER_SYMBOL(CODEC) DECODER_SYMBOL0(CODEC)
extern AVCodec DECODER_SYMBOL(FFMPEG_DECODER);
avcodec_register(&DECODER_SYMBOL(FFMPEG_DECODER));
- int codec_id = DECODER_SYMBOL(FFMPEG_DECODER).id;
- c = AVCodecInitialize(codec_id); // Done once.
+ c = &DECODER_SYMBOL(FFMPEG_DECODER);
#else
avcodec_register_all();
c = AVCodecInitialize(FFMPEG_CODEC); // Done once.
#endif
+ av_log_set_level(AV_LOG_PANIC);
}
switch (c->type) {
More information about the ffmpeg-cvslog
mailing list