Commit aca7037e authored by James Almer's avatar James Almer

tools/target_dec_fuzzer: force experimental flag for decoders that need it

Otherwise they will not even open.
Reviewed-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent b47abd57
......@@ -333,6 +333,8 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
ctx->max_samples = maxsamples_per_frame;
ctx->get_buffer2 = fuzz_get_buffer2;
if (c->p.capabilities & AV_CODEC_CAP_EXPERIMENTAL)
ctx->strict_std_compliance = FF_COMPLIANCE_EXPERIMENTAL;
if (size > 1024) {
GetByteContext 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