Commit 3ae87bb3 authored by Michael Niedermayer's avatar Michael Niedermayer

tools/target_dec_fuzzer: Support fuzzing error detection

This should increase coverage
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 1e0ea369
......@@ -194,6 +194,12 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
parser = av_parser_init(c->id);
if (flags & 2)
ctx->strict_std_compliance = FF_COMPLIANCE_EXPERIMENTAL;
if (flags & 4) {
ctx->err_recognition = AV_EF_AGGRESSIVE | AV_EF_COMPLIANT | AV_EF_CAREFUL;
if (flags & 8)
ctx->err_recognition |= AV_EF_EXPLODE;
}
extradata_size = bytestream2_get_le32(&gbc);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment