[FFmpeg-devel] [PATCH 1/2] tools/target_dec_fuzzer: set parser codec id to avoid assertion failure
Michael Niedermayer
michael at niedermayer.cc
Fri Jul 6 13:34:41 EEST 2018
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
tools/target_dec_fuzzer.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c
index 3146bf2c1a..a94d5e6a92 100644
--- a/tools/target_dec_fuzzer.c
+++ b/tools/target_dec_fuzzer.c
@@ -193,6 +193,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
av_free(parser_avctx);
return 0; // Failure of avcodec_open2() does not imply that a issue was found
}
+ parser_avctx->codec_id = ctx->codec_id;
FDBCreate(&buffer);
int got_frame;
--
2.18.0
More information about the ffmpeg-devel
mailing list