mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-12-02 08:16:41 +00:00
65994f5530
Signed-off-by: gg0907 <guohui_1701@163.com>
26 lines
661 B
Makefile
26 lines
661 B
Makefile
TOOLS = enum_options qt-faststart trasher uncoded_frame
|
|
TOOLS-$(CONFIG_LIBMYSOFA) += sofa2wavs
|
|
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) -DFFMPEG_DEMUXER=$* -DIO_FLAT=0
|
|
|
|
tools/target_dem_fuzzer.o: tools/target_dem_fuzzer.c
|
|
$(COMPILE_C) -DIO_FLAT=1
|
|
|
|
tools/target_io_dem_fuzzer.o: tools/target_dem_fuzzer.c
|
|
$(COMPILE_C) -DIO_FLAT=0
|
|
|
|
OUTDIRS += tools
|
|
|
|
clean::
|
|
$(RM) $(CLEANSUFFIXES:%=tools/%)
|
|
|
|
-include $(wildcard tools/*.d)
|