mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 22:10:34 +00:00
f7c2dca0d9
This makes only tests actually using avconv depend on it. The remaining tests already depend on what they need. Signed-off-by: Mans Rullgard <mans@mansr.com>
12 lines
311 B
Makefile
12 lines
311 B
Makefile
ALS_SUITE = 00 01 02 03 04 05
|
|
|
|
define FATE_ALS_SUITE
|
|
FATE_ALS += fate-mpeg4-als-conformance-$(1)
|
|
fate-mpeg4-als-conformance-$(1): CMD = crc -i $(SAMPLES)/lossless-audio/als_$(1)_2ch48k16b.mp4
|
|
endef
|
|
|
|
$(foreach N,$(ALS_SUITE),$(eval $(call FATE_ALS_SUITE,$(N))))
|
|
|
|
FATE_AVCONV += $(FATE_ALS)
|
|
fate-als: $(FATE_ALS)
|