diff options
author | James Almer <jamrial@gmail.com> | 2014-04-25 04:52:31 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-25 16:46:07 +0200 |
commit | cdac3ab59f3c187ee12006972dba0757a1e7cc08 (patch) | |
tree | 7f0bc69d052fea30b6e0158f03b50a2ad638e485 /tests | |
parent | 92cc6d5163cd43a1a909dcc63787292f33e5d6ed (diff) | |
download | ffmpeg-cdac3ab59f3c187ee12006972dba0757a1e7cc08.tar.gz |
swresample: add swri_resample_double_sse2
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fate/libswresample.mak | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/fate/libswresample.mak b/tests/fate/libswresample.mak index 6a5c314d59..0c617bfdd4 100644 --- a/tests/fate/libswresample.mak +++ b/tests/fate/libswresample.mak @@ -311,6 +311,24 @@ fate-swr-resample_lin-fltp-48000-8000: SIZE_TOLERANCE = 576000 - 20484 fate-swr-resample_lin-fltp-48000-44100: CMP_TARGET = 0.63 fate-swr-resample_lin-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20480 + +fate-swr-resample_lin-dblp-8000-44100: CMP_TARGET = 14.61 +fate-swr-resample_lin-dblp-8000-44100: SIZE_TOLERANCE = 96000 - 20480 + +fate-swr-resample_lin-dblp-8000-48000: CMP_TARGET = 14.50 +fate-swr-resample_lin-dblp-8000-48000: SIZE_TOLERANCE = 96000 - 20480 + +fate-swr-resample_lin-dblp-44100-8000: CMP_TARGET = 75.45 +fate-swr-resample_lin-dblp-44100-8000: SIZE_TOLERANCE = 529200 - 20486 + +fate-swr-resample_lin-dblp-44100-48000: CMP_TARGET = 9.67 +fate-swr-resample_lin-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20482 + +fate-swr-resample_lin-dblp-48000-8000: CMP_TARGET = 62.41 +fate-swr-resample_lin-dblp-48000-8000: SIZE_TOLERANCE = 576000 - 20484 + +fate-swr-resample_lin-dblp-48000-44100: CMP_TARGET = 0.63 +fate-swr-resample_lin-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20480 endef define ARESAMPLE_NN @@ -343,6 +361,7 @@ $(call CROSS_TEST,$(SAMPLERATES),ARESAMPLE,dblp,f64le,s16) $(call CROSS_TEST,$(SAMPLERATES_LITE),ARESAMPLE_LIN,s16p,s16le,s16) $(call CROSS_TEST,$(SAMPLERATES_LITE),ARESAMPLE_LIN,fltp,f32le,s16) +$(call CROSS_TEST,$(SAMPLERATES_LITE),ARESAMPLE_LIN,dblp,f64le,s16) $(call CROSS_TEST,$(SAMPLERATES_NN),ARESAMPLE_NN,s16p,s16le,s16) $(call CROSS_TEST,$(SAMPLERATES_NN),ARESAMPLE_NN,fltp,f32le,s16) |