Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-05-03 17:36:39 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2017-05-03 18:22:13 +0300
commitdec2fa8cc7089605d1d934d65dd2709cfe8aece2 (patch)
tree542fefe2a13ca58da2b32d8ca4f4e4ec19ac4df9 /tools/Makefile
parent3f17751eeb7e3348576e2597884d5e5155aadcfb (diff)
tools/target_dec_fuzzer: Use decoder and not codec_id as argument
This allows fuzzing decoders with the same codec_id We also avoid register all to allow the linker to prune unused sections and symbols Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index c4d9e90dea..3ebd3619ca 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -2,7 +2,7 @@ TOOLS = qt-faststart trasher uncoded_frame
TOOLS-$(CONFIG_ZLIB) += cws2fws
tools/target_dec_%_fuzzer.o: tools/target_dec_fuzzer.c
- $(COMPILE_C) -DFFMPEG_CODEC=AV_CODEC_ID_$*
+ $(COMPILE_C) -DFFMPEG_DECODER=$*
OBJDIRS += tools