tools/target_dec_fuzzer: Do not attempt to fuzz VDPAU, its not supported
Fixes: 1364/clusterfuzz-testcase-minimized-6459843441328128 Fixes: 1392 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
d58fe01774
commit
38e79d9d9c
1 changed files with 4 additions and 0 deletions
|
|
@ -147,6 +147,10 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|||
avcodec_register(&DECODER_SYMBOL(FFMPEG_DECODER));
|
||||
|
||||
c = &DECODER_SYMBOL(FFMPEG_DECODER);
|
||||
|
||||
// Unsupported
|
||||
if (c->capabilities & AV_CODEC_CAP_HWACCEL_VDPAU)
|
||||
return 0;
|
||||
#else
|
||||
avcodec_register_all();
|
||||
c = AVCodecInitialize(FFMPEG_CODEC); // Done once.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue