mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 11:49:48 +00:00
ba13606ca6
This allows having the samples accessible via different paths on the target and on the host. Signed-off-by: Martin Storsjö <martin@martin.st>
12 lines
351 B
Makefile
12 lines
351 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 $(TARGET_SAMPLES)/lossless-audio/als_$(1)_2ch48k16b.mp4
|
|
endef
|
|
|
|
$(foreach N,$(ALS_SUITE),$(eval $(call FATE_ALS_SUITE,$(N))))
|
|
|
|
FATE_SAMPLES_AVCONV-$(call DEMDEC, MOV, ALS) += $(FATE_ALS)
|
|
fate-als: $(FATE_ALS)
|