mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
tools/target_dec_fuzzer: Support fuzzing error detection
This should increase coverage Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
1e0ea36945
commit
3ae87bb3c1
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user