diff options
author | James Almer <jamrial@gmail.com> | 2019-11-30 15:57:44 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2019-12-05 20:49:15 -0300 |
commit | 964eb754b456e2bd968b754fd7f3c329264355e4 (patch) | |
tree | 2ce18e7c848bb83ef195debc81ecf4f9c7620bf6 /tools/Makefile | |
parent | 37f31f4e509fe4ccc56a64edaa6fa3d95ee20466 (diff) | |
download | ffmpeg-964eb754b456e2bd968b754fd7f3c329264355e4.tar.gz |
tools: add a fuzzer tool for bitstream filters
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile index 370ee35416..001093105b 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -5,6 +5,9 @@ TOOLS-$(CONFIG_ZLIB) += cws2fws tools/target_dec_%_fuzzer.o: tools/target_dec_fuzzer.c $(COMPILE_C) -DFFMPEG_DECODER=$* +tools/target_bsf_%_fuzzer.o: tools/target_bsf_fuzzer.c + $(COMPILE_C) -DFFMPEG_BSF=$* + tools/target_dem_fuzzer.o: tools/target_dem_fuzzer.c $(COMPILE_C) |