Message ID | 20200207134831.23137-5-michael@niedermayer.cc |
---|---|
State | New |
Headers | show |
Series | [FFmpeg-devel,1/7] tools/target_dec_fuzzer: Fuzz skip_frame | expand |
Context | Check | Description |
---|---|---|
andriy/ffmpeg-patchwork | success | Make fate finished |
On Fri, Feb 07, 2020 at 02:48:29PM +0100, Michael Niedermayer wrote: > This should increase coverage > > Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> > --- > tools/target_dec_fuzzer.c | 2 ++ > 1 file changed, 2 insertions(+) will apply [...]
diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c index f1768d4dce..7e73c83686 100644 --- a/tools/target_dec_fuzzer.c +++ b/tools/target_dec_fuzzer.c @@ -210,6 +210,8 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { } if (flags & 0x10) ctx->flags2 |= AV_CODEC_FLAG2_FAST; + if (flags & 0x80) + ctx->flags2 |= AV_CODEC_FLAG2_EXPORT_MVS; if (flags & 0x40) av_force_cpu_flags(0);
This should increase coverage Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> --- tools/target_dec_fuzzer.c | 2 ++ 1 file changed, 2 insertions(+)