summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2017-01-29 15:30:10 +0000
committerRostislav Pehlivanov <atomnuker@gmail.com>2017-01-29 16:14:18 +0000
commite05d2dd86abc2fdbadfc7ec9a84c22013be62da2 (patch)
tree1d08ae7028e1da5252ee3dbf1affd2bc475ec5a9
parentbbd4d9230407d70a9c93af4ac00f2e6d894358be (diff)
downloadffmpeg-streaming-e05d2dd86abc2fdbadfc7ec9a84c22013be62da2.zip
ffmpeg-streaming-e05d2dd86abc2fdbadfc7ec9a84c22013be62da2.tar.gz
doc/examples/decoder_targeted: move to tools/target_dec_fuzzer.c
Name and purpose are more appropriate there since the code isn't an ideal example. Reviewed-by: wm4 <nfxjfg@googlemail.com> Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
-rw-r--r--tools/target_dec_fuzzer.c (renamed from doc/examples/decoder_targeted.c)4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/decoder_targeted.c b/tools/target_dec_fuzzer.c
index 030eba6..533aa37 100644
--- a/doc/examples/decoder_targeted.c
+++ b/tools/target_dec_fuzzer.c
@@ -30,12 +30,12 @@
* build the fuzz target.
Choose the value of FFMPEG_CODEC (e.g. AV_CODEC_ID_DVD_SUBTITLE) and
choose one of FUZZ_FFMPEG_VIDEO, FUZZ_FFMPEG_AUDIO, FUZZ_FFMPEG_SUBTITLE.
- clang -fsanitize=address -fsanitize-coverage=trace-pc-guard,trace-cmp doc/examples/decoder_targeted.c -o decoder_targeted -I. -DFFMPEG_CODEC=AV_CODEC_ID_MPEG1VIDEO -DFUZZ_FFMPEG_VIDEO ../../libfuzzer/libFuzzer.a -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat -Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,--as-needed -Wl,-z,noexecstack -Wl,--warn-common -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample -lavdevice -lavfilter -lavformat -lavcodec -lswresample -lswscale -lavutil -ldl -lxcb -lxcb-shm -lxcb -lxcb-xfixes -lxcb -lxcb-shape -lxcb -lX11 -lasound -lm -lbz2 -lz -pthread
+ clang -fsanitize=address -fsanitize-coverage=trace-pc-guard,trace-cmp tools/target_dec_fuzzer.c -o target_dec_fuzzer -I. -DFFMPEG_CODEC=AV_CODEC_ID_MPEG1VIDEO -DFUZZ_FFMPEG_VIDEO ../../libfuzzer/libFuzzer.a -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat -Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,--as-needed -Wl,-z,noexecstack -Wl,--warn-common -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample -lavdevice -lavfilter -lavformat -lavcodec -lswresample -lswscale -lavutil -ldl -lxcb -lxcb-shm -lxcb -lxcb-xfixes -lxcb -lxcb-shape -lxcb -lX11 -lasound -lm -lbz2 -lz -pthread
* create a corpus directory and put some samples there (empty dir is ok too):
mkdir CORPUS && cp some-files CORPUS
* Run fuzzing:
- ./decoder_targeted -max_len=100000 CORPUS
+ ./target_dec_fuzzer -max_len=100000 CORPUS
More info:
http://libfuzzer.info
OpenPOWER on IntegriCloud