[flac] Add fuzzer_reencoder (#8988)

This PR adds to the flac fuzzer build script to include
fuzzer_reencoder, which is a fuzzer for which the fuzz input is first
decoded and then re-encoded. Additional coverage beyond what is
currently achieved is fuzzing of metadata input to the encoder (which is
copied from the decoded fuzz input) and the use of very large empty
inputs
This commit is contained in:
Martijn van Beurden 2022-11-15 23:02:06 +01:00 committed by GitHub
parent 412e38d599
commit 24b179d5a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ make -j$(nproc)
# Copy decoder fuzzers
cd $SRC/flac/oss-fuzz
cp fuzzer_decoder fuzzer_seek fuzzer_metadata $OUT
cp fuzzer_decoder fuzzer_seek fuzzer_metadata fuzzer_reencoder $OUT
cp fuzzer_*.dict $OUT
cd $SRC