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 <michaelni@gmx.at>2014-04-13 16:12:46 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-04-13 16:24:09 +0400
commitc955525f724d8ea160ed174b6243ba7f4cadcc85 (patch)
tree76994d18c1d227e9a88b7c558a4e36a0b80948e4
parentcbfa71d689a193b7f327dceb6320ab09497757da (diff)
parent13164e479f1c87829096c19003d2cc658ccc1fd4 (diff)
Merge commit '13164e479f1c87829096c19003d2cc658ccc1fd4'
* commit '13164e479f1c87829096c19003d2cc658ccc1fd4': FATE: add tests for more resampling modes Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--tests/fate/libavresample.mak14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/fate/libavresample.mak b/tests/fate/libavresample.mak
index 495a58778e..c854a477ac 100644
--- a/tests/fate/libavresample.mak
+++ b/tests/fate/libavresample.mak
@@ -46,6 +46,20 @@ $(call CROSS_TEST,$(SAMPLERATES),RESAMPLE,s32p,s32le,s16)
$(call CROSS_TEST,$(SAMPLERATES),RESAMPLE,fltp,f32le,f32)
$(call CROSS_TEST,$(SAMPLERATES),RESAMPLE,dblp,f64le,f64)
+FATE_LAVR_RESAMPLE += fate-lavr-resample-linear
+fate-lavr-resample-linear: tests/data/asynth-44100-1.wav
+fate-lavr-resample-linear: CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-44100-1.wav -ar 48000 -filter_size 32 -linear_interp 1 -f s16le -af atrim=end_sample=10240 -
+fate-lavr-resample-linear: CMP = oneoff
+fate-lavr-resample-linear: CMP_UNIT = s16
+fate-lavr-resample-linear: REF = $(SAMPLES)/lavr/lavr-resample-linear
+
+FATE_LAVR_RESAMPLE += fate-lavr-resample-nearest
+fate-lavr-resample-nearest: tests/data/asynth-48000-1.wav
+fate-lavr-resample-nearest: CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-48000-1.wav -ar 44100 -filter_size 0 -phase_shift 0 -f s16le -af atrim=end_sample=10240 -
+fate-lavr-resample-nearest: CMP = oneoff
+fate-lavr-resample-nearest: CMP_UNIT = s16
+fate-lavr-resample-nearest: REF = $(SAMPLES)/lavr/lavr-resample-nearest
+
FATE_LAVR_RESAMPLE-$(call FILTERDEMDECENCMUX, RESAMPLE, WAV, PCM_S16LE, PCM_S16LE, WAV) += $(FATE_LAVR_RESAMPLE)
fate-lavr-resample: $(FATE_LAVR_RESAMPLE-yes)
#FATE_LAVR += $(FATE_LAVR_RESAMPLE-yes)