]> git.sesse.net Git - ffmpeg/commitdiff
tools/target_dec_fuzzer: Also fuzz FF_COMPLIANCE_EXPERIMENTAL
authorMichael Niedermayer <michael@niedermayer.cc>
Sat, 12 Oct 2019 20:34:01 +0000 (22:34 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Mon, 14 Oct 2019 19:16:00 +0000 (21:16 +0200)
This should improve coverage

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tools/target_dec_fuzzer.c

index 99e89ab09242f5ddce92d50972ee747390b61301..8def3c90157ca05180b6d9695f31aab259b04e12 100644 (file)
@@ -171,6 +171,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     if (size > 1024) {
         GetByteContext gbc;
         int extradata_size;
+        int flags;
         size -= 1024;
         bytestream2_init(&gbc, data + size, 1024);
         ctx->width                              = bytestream2_get_le32(&gbc);
@@ -178,8 +179,11 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
         ctx->bit_rate                           = bytestream2_get_le64(&gbc);
         ctx->bits_per_coded_sample              = bytestream2_get_le32(&gbc);
         // Try to initialize a parser for this codec, note, this may fail which just means we test without one
-        if (bytestream2_get_byte(&gbc) & 1)
+        flags = bytestream2_get_byte(&gbc);
+        if (flags & 1)
             parser = av_parser_init(c->id);
+        if (flags & 2)
+            ctx->strict_std_compliance = FF_COMPLIANCE_EXPERIMENTAL;
 
         extradata_size = bytestream2_get_le32(&gbc);