From 9ab5f7107d2f1411e9fda6c36af64524e5ed31d1 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 30 Sep 2013 12:15:02 +0200 Subject: FATE: add lavr mixing tests --- tests/Makefile | 1 + tests/fate/libavresample.mak | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 tests/fate/libavresample.mak (limited to 'tests') diff --git a/tests/Makefile b/tests/Makefile index 132a1a739b..5eb7ffd024 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -82,6 +82,7 @@ include $(SRC_PATH)/tests/fate/indeo.mak include $(SRC_PATH)/tests/fate/libavcodec.mak include $(SRC_PATH)/tests/fate/libavdevice.mak include $(SRC_PATH)/tests/fate/libavformat.mak +include $(SRC_PATH)/tests/fate/libavresample.mak include $(SRC_PATH)/tests/fate/libavutil.mak include $(SRC_PATH)/tests/fate/lossless-audio.mak include $(SRC_PATH)/tests/fate/lossless-video.mak diff --git a/tests/fate/libavresample.mak b/tests/fate/libavresample.mak new file mode 100644 index 0000000000..15da42ce78 --- /dev/null +++ b/tests/fate/libavresample.mak @@ -0,0 +1,26 @@ +CROSS_TEST = $(foreach I,$(1), \ + $(foreach J,$(1), \ + $(if $(filter-out $(I),$(J)), \ + $(eval $(call $(2),$(I),$(J),$(3),$(4))), \ + ))) + +MIX_CHANNELS = 1 2 3 4 5 6 7 8 + +define MIX +FATE_LAVR_MIX += fate-lavr-mix-$(3)-$(1)-$(2) +fate-lavr-mix-$(3)-$(1)-$(2): tests/data/asynth-44100-$(1).wav +fate-lavr-mix-$(3)-$(1)-$(2): CMD = avconv -i $(TARGET_PATH)/tests/data/asynth-44100-$(1).wav -ac $(2) -mix_coeff_type $(3) -internal_sample_fmt $(4) -f s16le -af atrim=end_sample=1024 - +fate-lavr-mix-$(3)-$(1)-$(2): CMP = oneoff +fate-lavr-mix-$(3)-$(1)-$(2): REF = $(SAMPLES)/lavr/lavr-mix-$(3)-$(1)-$(2) +endef + +$(call CROSS_TEST,$(MIX_CHANNELS),MIX,q8,s16p) +$(call CROSS_TEST,$(MIX_CHANNELS),MIX,q15,s16p) +$(call CROSS_TEST,$(MIX_CHANNELS),MIX,flt,fltp) + +FATE_LAVR_MIX-$(call FILTERDEMDECENCMUX, RESAMPLE, WAV, PCM_S16LE, PCM_S16LE, WAV) += $(FATE_LAVR_MIX) +fate-lavr-mix: $(FATE_LAVR_MIX-yes) +FATE_LAVR += $(FATE_LAVR_MIX-yes) + +FATE_SAMPLES_AVCONV += $(FATE_LAVR) +fate-lavr: $(FATE_LAVR) -- cgit v1.2.3