mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-22 23:33:07 +00:00
tools/target_dec_fuzzer: Stop negative block_align and sampling rate
These are checked for early in avcodec_open2() and do not really test the decoder but instead waste resources which could be better spend fuzzing the actual decoder Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
f78dc66089
commit
c1411a1132
@ -206,9 +206,9 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||||
|
||||
extradata_size = bytestream2_get_le32(&gbc);
|
||||
|
||||
ctx->sample_rate = bytestream2_get_le32(&gbc);
|
||||
ctx->sample_rate = bytestream2_get_le32(&gbc) & 0x7FFFFFFF;
|
||||
ctx->channels = (unsigned)bytestream2_get_le32(&gbc) % FF_SANE_NB_CHANNELS;
|
||||
ctx->block_align = bytestream2_get_le32(&gbc);
|
||||
ctx->block_align = bytestream2_get_le32(&gbc) & 0x7FFFFFFF;
|
||||
ctx->codec_tag = bytestream2_get_le32(&gbc);
|
||||
keyframes = bytestream2_get_le64(&gbc);
|
||||
ctx->request_channel_layout = bytestream2_get_le64(&gbc);
|
||||
|
Loading…
Reference in New Issue
Block a user