swresample/resample: use uniform normalization

this gives better frequency response

update swresample fate and other fates
that depend on resampling

Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
pull/230/merge
Muhammad Faiz 8 years ago
parent dbc932e745
commit 61926b6c3e
  1. 14
      libswresample/resample.c
  2. 276
      tests/fate/libswresample.mak
  3. 2
      tests/ref/acodec/roqaudio
  4. 6
      tests/ref/acodec/s302m
  5. 8
      tests/ref/lavf/dv_fmt
  6. 8
      tests/ref/lavf/gxf
  7. 12
      tests/ref/lavf/mxf

@ -149,6 +149,7 @@ static int build_filter(ResampleContext *c, void *filter, double factor, int tap
double *tab = av_malloc_array(tap_count+1, sizeof(*tab)); double *tab = av_malloc_array(tap_count+1, sizeof(*tab));
double *sin_lut = av_malloc_array(ph_nb, sizeof(*sin_lut)); double *sin_lut = av_malloc_array(ph_nb, sizeof(*sin_lut));
const int center= (tap_count-1)/2; const int center= (tap_count-1)/2;
double norm = 0;
int ret = AVERROR(ENOMEM); int ret = AVERROR(ENOMEM);
if (!tab || !sin_lut) if (!tab || !sin_lut)
@ -160,10 +161,9 @@ static int build_filter(ResampleContext *c, void *filter, double factor, int tap
if (factor == 1.0) { if (factor == 1.0) {
for (ph = 0; ph < ph_nb; ph++) for (ph = 0; ph < ph_nb; ph++)
sin_lut[ph] = sin(M_PI * ph / phase_count); sin_lut[ph] = sin(M_PI * ph / phase_count) * (center & 1 ? 1 : -1);
} }
for(ph = 0; ph < ph_nb; ph++) { for(ph = 0; ph < ph_nb; ph++) {
double norm = 0;
s = sin_lut[ph]; s = sin_lut[ph];
for(i=0;i<=tap_count;i++) { for(i=0;i<=tap_count;i++) {
x = M_PI * ((double)(i - center) - (double)ph / phase_count) * factor; x = M_PI * ((double)(i - center) - (double)ph / phase_count) * factor;
@ -194,7 +194,7 @@ static int build_filter(ResampleContext *c, void *filter, double factor, int tap
tab[i] = y; tab[i] = y;
s = -s; s = -s;
if (i < tap_count) if (!ph && i < tap_count)
norm += y; norm += y;
} }
@ -211,7 +211,7 @@ static int build_filter(ResampleContext *c, void *filter, double factor, int tap
else { else {
for (i = 1; i <= tap_count; i++) for (i = 1; i <= tap_count; i++)
((int16_t*)filter)[(phase_count-ph) * alloc + tap_count-i] = ((int16_t*)filter)[(phase_count-ph) * alloc + tap_count-i] =
av_clip_int16(lrintf(tab[i] * scale / (norm - tab[0] + tab[tap_count]))); av_clip_int16(lrintf(tab[i] * scale / norm));
} }
break; break;
case AV_SAMPLE_FMT_S32P: case AV_SAMPLE_FMT_S32P:
@ -225,7 +225,7 @@ static int build_filter(ResampleContext *c, void *filter, double factor, int tap
else { else {
for (i = 1; i <= tap_count; i++) for (i = 1; i <= tap_count; i++)
((int32_t*)filter)[(phase_count-ph) * alloc + tap_count-i] = ((int32_t*)filter)[(phase_count-ph) * alloc + tap_count-i] =
av_clipl_int32(llrint(tab[i] * scale / (norm - tab[0] + tab[tap_count]))); av_clipl_int32(llrint(tab[i] * scale / norm));
} }
break; break;
case AV_SAMPLE_FMT_FLTP: case AV_SAMPLE_FMT_FLTP:
@ -238,7 +238,7 @@ static int build_filter(ResampleContext *c, void *filter, double factor, int tap
} }
else { else {
for (i = 1; i <= tap_count; i++) for (i = 1; i <= tap_count; i++)
((float*)filter)[(phase_count-ph) * alloc + tap_count-i] = tab[i] * scale / (norm - tab[0] + tab[tap_count]); ((float*)filter)[(phase_count-ph) * alloc + tap_count-i] = tab[i] * scale / norm;
} }
break; break;
case AV_SAMPLE_FMT_DBLP: case AV_SAMPLE_FMT_DBLP:
@ -251,7 +251,7 @@ static int build_filter(ResampleContext *c, void *filter, double factor, int tap
} }
else { else {
for (i = 1; i <= tap_count; i++) for (i = 1; i <= tap_count; i++)
((double*)filter)[(phase_count-ph) * alloc + tap_count-i] = tab[i] * scale / (norm - tab[0] + tab[tap_count]); ((double*)filter)[(phase_count-ph) * alloc + tap_count-i] = tab[i] * scale / norm;
} }
break; break;
} }

@ -26,34 +26,34 @@ endef
#you can use this if you need to update it! #you can use this if you need to update it!
#make -k `make fate-list | grep swr` | egrep 'TEST|stddev' | tr '\n' '@' | sed 's#TEST *\([^@]*\)@stddev: *\([0-9.]*\)[^b@]*bytes: *\([0-9]*\) */ *\([0-9]*\)@#fate-\1: CMP_TARGET = \2@fate-\1: SIZE_TOLERANCE = \3 - \4@@#g' | tr '@' '\n' #make -k `make fate-list | grep swr` | egrep 'TEST|stddev' | tr '\n' '@' | sed 's#TEST *\([^@]*\)@stddev: *\([0-9.]*\)[^b@]*bytes: *\([0-9]*\) */ *\([0-9]*\)@#fate-\1: CMP_TARGET = \2@fate-\1: SIZE_TOLERANCE = \3 - \4@@#g' | tr '@' '\n'
fate-swr-resample-dblp-2626-44100: CMP_TARGET = 1352.68 fate-swr-resample-dblp-2626-44100: CMP_TARGET = 1352.69
fate-swr-resample-dblp-2626-44100: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-dblp-2626-44100: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-dblp-2626-48000: CMP_TARGET = 1352.65 fate-swr-resample-dblp-2626-48000: CMP_TARGET = 1352.66
fate-swr-resample-dblp-2626-48000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-dblp-2626-48000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-dblp-2626-8000: CMP_TARGET = 1353.08 fate-swr-resample-dblp-2626-8000: CMP_TARGET = 1353.09
fate-swr-resample-dblp-2626-8000: SIZE_TOLERANCE = 31512 - 20482 fate-swr-resample-dblp-2626-8000: SIZE_TOLERANCE = 31512 - 20482
fate-swr-resample-dblp-2626-96000: CMP_TARGET = 1352.67 fate-swr-resample-dblp-2626-96000: CMP_TARGET = 1352.68
fate-swr-resample-dblp-2626-96000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-dblp-2626-96000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-dblp-44100-2626: CMP_TARGET = 185.82 fate-swr-resample-dblp-44100-2626: CMP_TARGET = 185.82
fate-swr-resample-dblp-44100-2626: SIZE_TOLERANCE = 529200 - 20490 fate-swr-resample-dblp-44100-2626: SIZE_TOLERANCE = 529200 - 20490
fate-swr-resample-dblp-44100-48000: CMP_TARGET = 9.70 fate-swr-resample-dblp-44100-48000: CMP_TARGET = 9.69
fate-swr-resample-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample-dblp-44100-8000: CMP_TARGET = 75.45 fate-swr-resample-dblp-44100-8000: CMP_TARGET = 75.45
fate-swr-resample-dblp-44100-8000: SIZE_TOLERANCE = 529200 - 20486 fate-swr-resample-dblp-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample-dblp-44100-96000: CMP_TARGET = 11.47 fate-swr-resample-dblp-44100-96000: CMP_TARGET = 11.46
fate-swr-resample-dblp-44100-96000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample-dblp-44100-96000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample-dblp-48000-2626: CMP_TARGET = 456.51 fate-swr-resample-dblp-48000-2626: CMP_TARGET = 456.51
fate-swr-resample-dblp-48000-2626: SIZE_TOLERANCE = 576000 - 20510 fate-swr-resample-dblp-48000-2626: SIZE_TOLERANCE = 576000 - 20510
fate-swr-resample-dblp-48000-44100: CMP_TARGET = 1.02 fate-swr-resample-dblp-48000-44100: CMP_TARGET = 1.00
fate-swr-resample-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample-dblp-48000-8000: CMP_TARGET = 62.38 fate-swr-resample-dblp-48000-8000: CMP_TARGET = 62.38
@ -77,43 +77,43 @@ fate-swr-resample-dblp-8000-96000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample-dblp-96000-2626: CMP_TARGET = 675.08 fate-swr-resample-dblp-96000-2626: CMP_TARGET = 675.08
fate-swr-resample-dblp-96000-2626: SIZE_TOLERANCE = 1152000 - 20474 fate-swr-resample-dblp-96000-2626: SIZE_TOLERANCE = 1152000 - 20474
fate-swr-resample-dblp-96000-44100: CMP_TARGET = 1.45 fate-swr-resample-dblp-96000-44100: CMP_TARGET = 1.44
fate-swr-resample-dblp-96000-44100: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample-dblp-96000-44100: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample-dblp-96000-48000: CMP_TARGET = 1.00 fate-swr-resample-dblp-96000-48000: CMP_TARGET = 0.99
fate-swr-resample-dblp-96000-48000: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample-dblp-96000-48000: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample-dblp-96000-8000: CMP_TARGET = 58.57 fate-swr-resample-dblp-96000-8000: CMP_TARGET = 58.57
fate-swr-resample-dblp-96000-8000: SIZE_TOLERANCE = 1152000 - 20496 fate-swr-resample-dblp-96000-8000: SIZE_TOLERANCE = 1152000 - 20496
fate-swr-resample-fltp-2626-44100: CMP_TARGET = 1352.68 fate-swr-resample-fltp-2626-44100: CMP_TARGET = 1352.69
fate-swr-resample-fltp-2626-44100: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-fltp-2626-44100: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-fltp-2626-48000: CMP_TARGET = 1352.65 fate-swr-resample-fltp-2626-48000: CMP_TARGET = 1352.66
fate-swr-resample-fltp-2626-48000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-fltp-2626-48000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-fltp-2626-8000: CMP_TARGET = 1353.08 fate-swr-resample-fltp-2626-8000: CMP_TARGET = 1353.09
fate-swr-resample-fltp-2626-8000: SIZE_TOLERANCE = 31512 - 20482 fate-swr-resample-fltp-2626-8000: SIZE_TOLERANCE = 31512 - 20482
fate-swr-resample-fltp-2626-96000: CMP_TARGET = 1352.67 fate-swr-resample-fltp-2626-96000: CMP_TARGET = 1352.68
fate-swr-resample-fltp-2626-96000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-fltp-2626-96000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-fltp-44100-2626: CMP_TARGET = 185.82 fate-swr-resample-fltp-44100-2626: CMP_TARGET = 185.82
fate-swr-resample-fltp-44100-2626: SIZE_TOLERANCE = 529200 - 20490 fate-swr-resample-fltp-44100-2626: SIZE_TOLERANCE = 529200 - 20490
fate-swr-resample-fltp-44100-48000: CMP_TARGET = 9.70 fate-swr-resample-fltp-44100-48000: CMP_TARGET = 9.69
fate-swr-resample-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample-fltp-44100-8000: CMP_TARGET = 75.45 fate-swr-resample-fltp-44100-8000: CMP_TARGET = 75.45
fate-swr-resample-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20486 fate-swr-resample-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample-fltp-44100-96000: CMP_TARGET = 11.47 fate-swr-resample-fltp-44100-96000: CMP_TARGET = 11.46
fate-swr-resample-fltp-44100-96000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample-fltp-44100-96000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample-fltp-48000-2626: CMP_TARGET = 456.51 fate-swr-resample-fltp-48000-2626: CMP_TARGET = 456.51
fate-swr-resample-fltp-48000-2626: SIZE_TOLERANCE = 576000 - 20510 fate-swr-resample-fltp-48000-2626: SIZE_TOLERANCE = 576000 - 20510
fate-swr-resample-fltp-48000-44100: CMP_TARGET = 1.02 fate-swr-resample-fltp-48000-44100: CMP_TARGET = 1.00
fate-swr-resample-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample-fltp-48000-8000: CMP_TARGET = 62.38 fate-swr-resample-fltp-48000-8000: CMP_TARGET = 62.38
@ -137,25 +137,25 @@ fate-swr-resample-fltp-8000-96000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample-fltp-96000-2626: CMP_TARGET = 675.08 fate-swr-resample-fltp-96000-2626: CMP_TARGET = 675.08
fate-swr-resample-fltp-96000-2626: SIZE_TOLERANCE = 1152000 - 20474 fate-swr-resample-fltp-96000-2626: SIZE_TOLERANCE = 1152000 - 20474
fate-swr-resample-fltp-96000-44100: CMP_TARGET = 1.45 fate-swr-resample-fltp-96000-44100: CMP_TARGET = 1.44
fate-swr-resample-fltp-96000-44100: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample-fltp-96000-44100: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample-fltp-96000-48000: CMP_TARGET = 1.00 fate-swr-resample-fltp-96000-48000: CMP_TARGET = 0.99
fate-swr-resample-fltp-96000-48000: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample-fltp-96000-48000: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample-fltp-96000-8000: CMP_TARGET = 58.57 fate-swr-resample-fltp-96000-8000: CMP_TARGET = 58.57
fate-swr-resample-fltp-96000-8000: SIZE_TOLERANCE = 1152000 - 20496 fate-swr-resample-fltp-96000-8000: SIZE_TOLERANCE = 1152000 - 20496
fate-swr-resample-s16p-2626-44100: CMP_TARGET = 1393.01 fate-swr-resample-s16p-2626-44100: CMP_TARGET = 1393.02
fate-swr-resample-s16p-2626-44100: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-s16p-2626-44100: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-s16p-2626-48000: CMP_TARGET = 1392.99 fate-swr-resample-s16p-2626-48000: CMP_TARGET = 1393.01
fate-swr-resample-s16p-2626-48000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-s16p-2626-48000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-s16p-2626-8000: CMP_TARGET = 1393.90 fate-swr-resample-s16p-2626-8000: CMP_TARGET = 1393.91
fate-swr-resample-s16p-2626-8000: SIZE_TOLERANCE = 31512 - 20482 fate-swr-resample-s16p-2626-8000: SIZE_TOLERANCE = 31512 - 20482
fate-swr-resample-s16p-2626-96000: CMP_TARGET = 1393.08 fate-swr-resample-s16p-2626-96000: CMP_TARGET = 1393.09
fate-swr-resample-s16p-2626-96000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-s16p-2626-96000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-s16p-44100-2626: CMP_TARGET = 185.84 fate-swr-resample-s16p-44100-2626: CMP_TARGET = 185.84
@ -173,19 +173,19 @@ fate-swr-resample-s16p-44100-96000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample-s16p-48000-2626: CMP_TARGET = 456.55 fate-swr-resample-s16p-48000-2626: CMP_TARGET = 456.55
fate-swr-resample-s16p-48000-2626: SIZE_TOLERANCE = 576000 - 20510 fate-swr-resample-s16p-48000-2626: SIZE_TOLERANCE = 576000 - 20510
fate-swr-resample-s16p-48000-44100: CMP_TARGET = 1.22 fate-swr-resample-s16p-48000-44100: CMP_TARGET = 1.20
fate-swr-resample-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample-s16p-48000-8000: CMP_TARGET = 62.41 fate-swr-resample-s16p-48000-8000: CMP_TARGET = 62.41
fate-swr-resample-s16p-48000-8000: SIZE_TOLERANCE = 576000 - 20484 fate-swr-resample-s16p-48000-8000: SIZE_TOLERANCE = 576000 - 20484
fate-swr-resample-s16p-48000-96000: CMP_TARGET = 0.50 fate-swr-resample-s16p-48000-96000: CMP_TARGET = 0.73
fate-swr-resample-s16p-48000-96000: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample-s16p-48000-96000: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample-s16p-8000-2626: CMP_TARGET = 2506.02 fate-swr-resample-s16p-8000-2626: CMP_TARGET = 2506.02
fate-swr-resample-s16p-8000-2626: SIZE_TOLERANCE = 96000 - 20486 fate-swr-resample-s16p-8000-2626: SIZE_TOLERANCE = 96000 - 20486
fate-swr-resample-s16p-8000-44100: CMP_TARGET = 15.12 fate-swr-resample-s16p-8000-44100: CMP_TARGET = 15.13
fate-swr-resample-s16p-8000-44100: SIZE_TOLERANCE = 96000 - 20480 fate-swr-resample-s16p-8000-44100: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample-s16p-8000-48000: CMP_TARGET = 14.69 fate-swr-resample-s16p-8000-48000: CMP_TARGET = 14.69
@ -194,46 +194,46 @@ fate-swr-resample-s16p-8000-48000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample-s16p-8000-96000: CMP_TARGET = 13.83 fate-swr-resample-s16p-8000-96000: CMP_TARGET = 13.83
fate-swr-resample-s16p-8000-96000: SIZE_TOLERANCE = 96000 - 20480 fate-swr-resample-s16p-8000-96000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample-s16p-96000-2626: CMP_TARGET = 675.14 fate-swr-resample-s16p-96000-2626: CMP_TARGET = 675.15
fate-swr-resample-s16p-96000-2626: SIZE_TOLERANCE = 1152000 - 20474 fate-swr-resample-s16p-96000-2626: SIZE_TOLERANCE = 1152000 - 20474
fate-swr-resample-s16p-96000-44100: CMP_TARGET = 1.62 fate-swr-resample-s16p-96000-44100: CMP_TARGET = 1.62
fate-swr-resample-s16p-96000-44100: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample-s16p-96000-44100: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample-s16p-96000-48000: CMP_TARGET = 1.03 fate-swr-resample-s16p-96000-48000: CMP_TARGET = 1.12
fate-swr-resample-s16p-96000-48000: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample-s16p-96000-48000: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample-s16p-96000-8000: CMP_TARGET = 58.60 fate-swr-resample-s16p-96000-8000: CMP_TARGET = 58.60
fate-swr-resample-s16p-96000-8000: SIZE_TOLERANCE = 1152000 - 20496 fate-swr-resample-s16p-96000-8000: SIZE_TOLERANCE = 1152000 - 20496
fate-swr-resample-s32p-2626-44100: CMP_TARGET = 1393.01 fate-swr-resample-s32p-2626-44100: CMP_TARGET = 1393.02
fate-swr-resample-s32p-2626-44100: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-s32p-2626-44100: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-s32p-2626-48000: CMP_TARGET = 1392.99 fate-swr-resample-s32p-2626-48000: CMP_TARGET = 1393.01
fate-swr-resample-s32p-2626-48000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-s32p-2626-48000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-s32p-2626-8000: CMP_TARGET = 1393.89 fate-swr-resample-s32p-2626-8000: CMP_TARGET = 1393.90
fate-swr-resample-s32p-2626-8000: SIZE_TOLERANCE = 31512 - 20482 fate-swr-resample-s32p-2626-8000: SIZE_TOLERANCE = 31512 - 20482
fate-swr-resample-s32p-2626-96000: CMP_TARGET = 1393.00 fate-swr-resample-s32p-2626-96000: CMP_TARGET = 1393.01
fate-swr-resample-s32p-2626-96000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample-s32p-2626-96000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample-s32p-44100-2626: CMP_TARGET = 185.82 fate-swr-resample-s32p-44100-2626: CMP_TARGET = 185.82
fate-swr-resample-s32p-44100-2626: SIZE_TOLERANCE = 529200 - 20490 fate-swr-resample-s32p-44100-2626: SIZE_TOLERANCE = 529200 - 20490
fate-swr-resample-s32p-44100-48000: CMP_TARGET = 9.70 fate-swr-resample-s32p-44100-48000: CMP_TARGET = 9.69
fate-swr-resample-s32p-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample-s32p-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample-s32p-44100-8000: CMP_TARGET = 75.45 fate-swr-resample-s32p-44100-8000: CMP_TARGET = 75.45
fate-swr-resample-s32p-44100-8000: SIZE_TOLERANCE = 529200 - 20486 fate-swr-resample-s32p-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample-s32p-44100-96000: CMP_TARGET = 11.47 fate-swr-resample-s32p-44100-96000: CMP_TARGET = 11.46
fate-swr-resample-s32p-44100-96000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample-s32p-44100-96000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample-s32p-48000-2626: CMP_TARGET = 456.51 fate-swr-resample-s32p-48000-2626: CMP_TARGET = 456.51
fate-swr-resample-s32p-48000-2626: SIZE_TOLERANCE = 576000 - 20510 fate-swr-resample-s32p-48000-2626: SIZE_TOLERANCE = 576000 - 20510
fate-swr-resample-s32p-48000-44100: CMP_TARGET = 1.02 fate-swr-resample-s32p-48000-44100: CMP_TARGET = 1.00
fate-swr-resample-s32p-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample-s32p-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample-s32p-48000-8000: CMP_TARGET = 62.38 fate-swr-resample-s32p-48000-8000: CMP_TARGET = 62.38
@ -257,10 +257,10 @@ fate-swr-resample-s32p-8000-96000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample-s32p-96000-2626: CMP_TARGET = 675.08 fate-swr-resample-s32p-96000-2626: CMP_TARGET = 675.08
fate-swr-resample-s32p-96000-2626: SIZE_TOLERANCE = 1152000 - 20474 fate-swr-resample-s32p-96000-2626: SIZE_TOLERANCE = 1152000 - 20474
fate-swr-resample-s32p-96000-44100: CMP_TARGET = 1.45 fate-swr-resample-s32p-96000-44100: CMP_TARGET = 1.44
fate-swr-resample-s32p-96000-44100: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample-s32p-96000-44100: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample-s32p-96000-48000: CMP_TARGET = 1.00 fate-swr-resample-s32p-96000-48000: CMP_TARGET = 0.99
fate-swr-resample-s32p-96000-48000: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample-s32p-96000-48000: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample-s32p-96000-8000: CMP_TARGET = 58.57 fate-swr-resample-s32p-96000-8000: CMP_TARGET = 58.57
@ -290,10 +290,10 @@ fate-swr-resample_lin-s16p-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample_lin-s16p-44100-48000: CMP_TARGET = 9.66 fate-swr-resample_lin-s16p-44100-48000: CMP_TARGET = 9.66
fate-swr-resample_lin-s16p-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample_lin-s16p-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_lin-s16p-48000-8000: CMP_TARGET = 62.39 fate-swr-resample_lin-s16p-48000-8000: CMP_TARGET = 62.38
fate-swr-resample_lin-s16p-48000-8000: SIZE_TOLERANCE = 576000 - 20484 fate-swr-resample_lin-s16p-48000-8000: SIZE_TOLERANCE = 576000 - 20484
fate-swr-resample_lin-s16p-48000-44100: CMP_TARGET = 0.68 fate-swr-resample_lin-s16p-48000-44100: CMP_TARGET = 0.65
fate-swr-resample_lin-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_lin-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample_lin-fltp-8000-44100: CMP_TARGET = 14.59 fate-swr-resample_lin-fltp-8000-44100: CMP_TARGET = 14.59
@ -305,13 +305,13 @@ fate-swr-resample_lin-fltp-8000-48000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_lin-fltp-44100-8000: CMP_TARGET = 75.38 fate-swr-resample_lin-fltp-44100-8000: CMP_TARGET = 75.38
fate-swr-resample_lin-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20486 fate-swr-resample_lin-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample_lin-fltp-44100-48000: CMP_TARGET = 9.65 fate-swr-resample_lin-fltp-44100-48000: CMP_TARGET = 9.64
fate-swr-resample_lin-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample_lin-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_lin-fltp-48000-8000: CMP_TARGET = 62.36 fate-swr-resample_lin-fltp-48000-8000: CMP_TARGET = 62.36
fate-swr-resample_lin-fltp-48000-8000: SIZE_TOLERANCE = 576000 - 20484 fate-swr-resample_lin-fltp-48000-8000: SIZE_TOLERANCE = 576000 - 20484
fate-swr-resample_lin-fltp-48000-44100: CMP_TARGET = 0.26 fate-swr-resample_lin-fltp-48000-44100: CMP_TARGET = 0.23
fate-swr-resample_lin-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_lin-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample_lin-dblp-8000-44100: CMP_TARGET = 14.59 fate-swr-resample_lin-dblp-8000-44100: CMP_TARGET = 14.59
@ -323,13 +323,13 @@ fate-swr-resample_lin-dblp-8000-48000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_lin-dblp-44100-8000: CMP_TARGET = 75.38 fate-swr-resample_lin-dblp-44100-8000: CMP_TARGET = 75.38
fate-swr-resample_lin-dblp-44100-8000: SIZE_TOLERANCE = 529200 - 20486 fate-swr-resample_lin-dblp-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample_lin-dblp-44100-48000: CMP_TARGET = 9.65 fate-swr-resample_lin-dblp-44100-48000: CMP_TARGET = 9.64
fate-swr-resample_lin-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample_lin-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_lin-dblp-48000-8000: CMP_TARGET = 62.36 fate-swr-resample_lin-dblp-48000-8000: CMP_TARGET = 62.36
fate-swr-resample_lin-dblp-48000-8000: SIZE_TOLERANCE = 576000 - 20484 fate-swr-resample_lin-dblp-48000-8000: SIZE_TOLERANCE = 576000 - 20484
fate-swr-resample_lin-dblp-48000-44100: CMP_TARGET = 0.26 fate-swr-resample_lin-dblp-48000-44100: CMP_TARGET = 0.23
fate-swr-resample_lin-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_lin-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20480
define ARESAMPLE_NN define ARESAMPLE_NN
@ -343,13 +343,13 @@ fate-swr-resample_nn-$(3)-$(1)-$(2): FUZZ = 0.1
fate-swr-resample_nn-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav fate-swr-resample_nn-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav
endef endef
fate-swr-resample_nn-fltp-44100-8000: CMP_TARGET = 590.98 fate-swr-resample_nn-fltp-44100-8000: CMP_TARGET = 591.03
fate-swr-resample_nn-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20486 fate-swr-resample_nn-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample_nn-fltp-8000-44100: CMP_TARGET = 3163.32 fate-swr-resample_nn-fltp-8000-44100: CMP_TARGET = 3163.32
fate-swr-resample_nn-fltp-8000-44100: SIZE_TOLERANCE = 96000 - 20480 fate-swr-resample_nn-fltp-8000-44100: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_nn-s16p-44100-8000: CMP_TARGET = 590.97 fate-swr-resample_nn-s16p-44100-8000: CMP_TARGET = 590.98
fate-swr-resample_nn-s16p-44100-8000: SIZE_TOLERANCE = 529200 - 20486 fate-swr-resample_nn-s16p-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample_nn-s16p-8000-44100: CMP_TARGET = 3163.39 fate-swr-resample_nn-s16p-8000-44100: CMP_TARGET = 3163.39
@ -362,20 +362,20 @@ fate-swr-resample_async-$(3)-$(1)-$(2): CMD = ffmpeg -i $(TARGET_PATH)/tests/dat
fate-swr-resample_async-$(3)-$(1)-$(2): CMP = stddev fate-swr-resample_async-$(3)-$(1)-$(2): CMP = stddev
fate-swr-resample_async-$(3)-$(1)-$(2): CMP_UNIT = $(5) fate-swr-resample_async-$(3)-$(1)-$(2): CMP_UNIT = $(5)
fate-swr-resample_async-$(3)-$(1)-$(2): FUZZ = 0.1 fate-swr-resample_async-$(3)-$(1)-$(2): FUZZ = 0.01
fate-swr-resample_async-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav fate-swr-resample_async-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav
endef endef
fate-swr-resample_async-fltp-44100-8000: CMP_TARGET = 4020.62 fate-swr-resample_async-fltp-44100-8000: CMP_TARGET = 4020.60
fate-swr-resample_async-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20310 fate-swr-resample_async-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20310
fate-swr-resample_async-fltp-8000-44100: CMP_TARGET = 11186.69 fate-swr-resample_async-fltp-8000-44100: CMP_TARGET = 11186.66
fate-swr-resample_async-fltp-8000-44100: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_async-fltp-8000-44100: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_async-s16p-44100-8000: CMP_TARGET = 4020.73 fate-swr-resample_async-s16p-44100-8000: CMP_TARGET = 4020.71
fate-swr-resample_async-s16p-44100-8000: SIZE_TOLERANCE = 529200 - 20310 fate-swr-resample_async-s16p-44100-8000: SIZE_TOLERANCE = 529200 - 20310
fate-swr-resample_async-s16p-8000-44100: CMP_TARGET = 11187.01 fate-swr-resample_async-s16p-8000-44100: CMP_TARGET = 11186.94
fate-swr-resample_async-s16p-8000-44100: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_async-s16p-8000-44100: SIZE_TOLERANCE = 96000 - 20344
define ARESAMPLE_EXACT define ARESAMPLE_EXACT
@ -389,22 +389,22 @@ fate-swr-resample_exact-$(3)-$(1)-$(2): FUZZ = 0.1
fate-swr-resample_exact-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav fate-swr-resample_exact-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav
endef endef
fate-swr-resample_exact-dblp-2626-44100: CMP_TARGET = 1352.68 fate-swr-resample_exact-dblp-2626-44100: CMP_TARGET = 1352.69
fate-swr-resample_exact-dblp-2626-44100: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-dblp-2626-44100: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-dblp-2626-48000: CMP_TARGET = 1352.65 fate-swr-resample_exact-dblp-2626-48000: CMP_TARGET = 1352.66
fate-swr-resample_exact-dblp-2626-48000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-dblp-2626-48000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-dblp-2626-8000: CMP_TARGET = 1353.08 fate-swr-resample_exact-dblp-2626-8000: CMP_TARGET = 1353.09
fate-swr-resample_exact-dblp-2626-8000: SIZE_TOLERANCE = 31512 - 20482 fate-swr-resample_exact-dblp-2626-8000: SIZE_TOLERANCE = 31512 - 20482
fate-swr-resample_exact-dblp-2626-96000: CMP_TARGET = 1352.67 fate-swr-resample_exact-dblp-2626-96000: CMP_TARGET = 1352.68
fate-swr-resample_exact-dblp-2626-96000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-dblp-2626-96000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-dblp-44100-2626: CMP_TARGET = 185.82 fate-swr-resample_exact-dblp-44100-2626: CMP_TARGET = 185.82
fate-swr-resample_exact-dblp-44100-2626: SIZE_TOLERANCE = 529200 - 20490 fate-swr-resample_exact-dblp-44100-2626: SIZE_TOLERANCE = 529200 - 20490
fate-swr-resample_exact-dblp-44100-48000: CMP_TARGET = 9.65 fate-swr-resample_exact-dblp-44100-48000: CMP_TARGET = 9.64
fate-swr-resample_exact-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample_exact-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact-dblp-44100-8000: CMP_TARGET = 75.38 fate-swr-resample_exact-dblp-44100-8000: CMP_TARGET = 75.38
@ -416,7 +416,7 @@ fate-swr-resample_exact-dblp-44100-96000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact-dblp-48000-2626: CMP_TARGET = 456.51 fate-swr-resample_exact-dblp-48000-2626: CMP_TARGET = 456.51
fate-swr-resample_exact-dblp-48000-2626: SIZE_TOLERANCE = 576000 - 20510 fate-swr-resample_exact-dblp-48000-2626: SIZE_TOLERANCE = 576000 - 20510
fate-swr-resample_exact-dblp-48000-44100: CMP_TARGET = 0.26 fate-swr-resample_exact-dblp-48000-44100: CMP_TARGET = 0.23
fate-swr-resample_exact-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_exact-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample_exact-dblp-48000-8000: CMP_TARGET = 62.36 fate-swr-resample_exact-dblp-48000-8000: CMP_TARGET = 62.36
@ -440,31 +440,31 @@ fate-swr-resample_exact-dblp-8000-96000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_exact-dblp-96000-2626: CMP_TARGET = 675.08 fate-swr-resample_exact-dblp-96000-2626: CMP_TARGET = 675.08
fate-swr-resample_exact-dblp-96000-2626: SIZE_TOLERANCE = 1152000 - 20474 fate-swr-resample_exact-dblp-96000-2626: SIZE_TOLERANCE = 1152000 - 20474
fate-swr-resample_exact-dblp-96000-44100: CMP_TARGET = 1.26 fate-swr-resample_exact-dblp-96000-44100: CMP_TARGET = 1.23
fate-swr-resample_exact-dblp-96000-44100: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample_exact-dblp-96000-44100: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample_exact-dblp-96000-48000: CMP_TARGET = 1.00 fate-swr-resample_exact-dblp-96000-48000: CMP_TARGET = 0.99
fate-swr-resample_exact-dblp-96000-48000: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample_exact-dblp-96000-48000: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample_exact-dblp-96000-8000: CMP_TARGET = 58.52 fate-swr-resample_exact-dblp-96000-8000: CMP_TARGET = 58.52
fate-swr-resample_exact-dblp-96000-8000: SIZE_TOLERANCE = 1152000 - 20496 fate-swr-resample_exact-dblp-96000-8000: SIZE_TOLERANCE = 1152000 - 20496
fate-swr-resample_exact-fltp-2626-44100: CMP_TARGET = 1352.68 fate-swr-resample_exact-fltp-2626-44100: CMP_TARGET = 1352.69
fate-swr-resample_exact-fltp-2626-44100: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-fltp-2626-44100: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-fltp-2626-48000: CMP_TARGET = 1352.65 fate-swr-resample_exact-fltp-2626-48000: CMP_TARGET = 1352.66
fate-swr-resample_exact-fltp-2626-48000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-fltp-2626-48000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-fltp-2626-8000: CMP_TARGET = 1353.08 fate-swr-resample_exact-fltp-2626-8000: CMP_TARGET = 1353.09
fate-swr-resample_exact-fltp-2626-8000: SIZE_TOLERANCE = 31512 - 20482 fate-swr-resample_exact-fltp-2626-8000: SIZE_TOLERANCE = 31512 - 20482
fate-swr-resample_exact-fltp-2626-96000: CMP_TARGET = 1352.67 fate-swr-resample_exact-fltp-2626-96000: CMP_TARGET = 1352.68
fate-swr-resample_exact-fltp-2626-96000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-fltp-2626-96000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-fltp-44100-2626: CMP_TARGET = 185.82 fate-swr-resample_exact-fltp-44100-2626: CMP_TARGET = 185.82
fate-swr-resample_exact-fltp-44100-2626: SIZE_TOLERANCE = 529200 - 20490 fate-swr-resample_exact-fltp-44100-2626: SIZE_TOLERANCE = 529200 - 20490
fate-swr-resample_exact-fltp-44100-48000: CMP_TARGET = 9.65 fate-swr-resample_exact-fltp-44100-48000: CMP_TARGET = 9.64
fate-swr-resample_exact-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample_exact-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact-fltp-44100-8000: CMP_TARGET = 75.38 fate-swr-resample_exact-fltp-44100-8000: CMP_TARGET = 75.38
@ -476,7 +476,7 @@ fate-swr-resample_exact-fltp-44100-96000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact-fltp-48000-2626: CMP_TARGET = 456.51 fate-swr-resample_exact-fltp-48000-2626: CMP_TARGET = 456.51
fate-swr-resample_exact-fltp-48000-2626: SIZE_TOLERANCE = 576000 - 20510 fate-swr-resample_exact-fltp-48000-2626: SIZE_TOLERANCE = 576000 - 20510
fate-swr-resample_exact-fltp-48000-44100: CMP_TARGET = 0.26 fate-swr-resample_exact-fltp-48000-44100: CMP_TARGET = 0.23
fate-swr-resample_exact-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_exact-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample_exact-fltp-48000-8000: CMP_TARGET = 62.36 fate-swr-resample_exact-fltp-48000-8000: CMP_TARGET = 62.36
@ -500,31 +500,31 @@ fate-swr-resample_exact-fltp-8000-96000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_exact-fltp-96000-2626: CMP_TARGET = 675.08 fate-swr-resample_exact-fltp-96000-2626: CMP_TARGET = 675.08
fate-swr-resample_exact-fltp-96000-2626: SIZE_TOLERANCE = 1152000 - 20474 fate-swr-resample_exact-fltp-96000-2626: SIZE_TOLERANCE = 1152000 - 20474
fate-swr-resample_exact-fltp-96000-44100: CMP_TARGET = 1.26 fate-swr-resample_exact-fltp-96000-44100: CMP_TARGET = 1.23
fate-swr-resample_exact-fltp-96000-44100: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample_exact-fltp-96000-44100: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample_exact-fltp-96000-48000: CMP_TARGET = 1.00 fate-swr-resample_exact-fltp-96000-48000: CMP_TARGET = 0.99
fate-swr-resample_exact-fltp-96000-48000: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample_exact-fltp-96000-48000: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample_exact-fltp-96000-8000: CMP_TARGET = 58.52 fate-swr-resample_exact-fltp-96000-8000: CMP_TARGET = 58.52
fate-swr-resample_exact-fltp-96000-8000: SIZE_TOLERANCE = 1152000 - 20496 fate-swr-resample_exact-fltp-96000-8000: SIZE_TOLERANCE = 1152000 - 20496
fate-swr-resample_exact-s16p-2626-44100: CMP_TARGET = 1393.01 fate-swr-resample_exact-s16p-2626-44100: CMP_TARGET = 1393.02
fate-swr-resample_exact-s16p-2626-44100: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-s16p-2626-44100: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-s16p-2626-48000: CMP_TARGET = 1392.99 fate-swr-resample_exact-s16p-2626-48000: CMP_TARGET = 1393.01
fate-swr-resample_exact-s16p-2626-48000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-s16p-2626-48000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-s16p-2626-8000: CMP_TARGET = 1393.90 fate-swr-resample_exact-s16p-2626-8000: CMP_TARGET = 1393.91
fate-swr-resample_exact-s16p-2626-8000: SIZE_TOLERANCE = 31512 - 20482 fate-swr-resample_exact-s16p-2626-8000: SIZE_TOLERANCE = 31512 - 20482
fate-swr-resample_exact-s16p-2626-96000: CMP_TARGET = 1393.08 fate-swr-resample_exact-s16p-2626-96000: CMP_TARGET = 1393.09
fate-swr-resample_exact-s16p-2626-96000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-s16p-2626-96000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-s16p-44100-2626: CMP_TARGET = 185.84 fate-swr-resample_exact-s16p-44100-2626: CMP_TARGET = 185.84
fate-swr-resample_exact-s16p-44100-2626: SIZE_TOLERANCE = 529200 - 20490 fate-swr-resample_exact-s16p-44100-2626: SIZE_TOLERANCE = 529200 - 20490
fate-swr-resample_exact-s16p-44100-48000: CMP_TARGET = 9.67 fate-swr-resample_exact-s16p-44100-48000: CMP_TARGET = 9.66
fate-swr-resample_exact-s16p-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample_exact-s16p-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact-s16p-44100-8000: CMP_TARGET = 75.43 fate-swr-resample_exact-s16p-44100-8000: CMP_TARGET = 75.43
@ -536,13 +536,13 @@ fate-swr-resample_exact-s16p-44100-96000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact-s16p-48000-2626: CMP_TARGET = 456.55 fate-swr-resample_exact-s16p-48000-2626: CMP_TARGET = 456.55
fate-swr-resample_exact-s16p-48000-2626: SIZE_TOLERANCE = 576000 - 20510 fate-swr-resample_exact-s16p-48000-2626: SIZE_TOLERANCE = 576000 - 20510
fate-swr-resample_exact-s16p-48000-44100: CMP_TARGET = 0.72 fate-swr-resample_exact-s16p-48000-44100: CMP_TARGET = 0.68
fate-swr-resample_exact-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_exact-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample_exact-s16p-48000-8000: CMP_TARGET = 62.39 fate-swr-resample_exact-s16p-48000-8000: CMP_TARGET = 62.39
fate-swr-resample_exact-s16p-48000-8000: SIZE_TOLERANCE = 576000 - 20484 fate-swr-resample_exact-s16p-48000-8000: SIZE_TOLERANCE = 576000 - 20484
fate-swr-resample_exact-s16p-48000-96000: CMP_TARGET = 0.50 fate-swr-resample_exact-s16p-48000-96000: CMP_TARGET = 0.73
fate-swr-resample_exact-s16p-48000-96000: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_exact-s16p-48000-96000: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample_exact-s16p-8000-2626: CMP_TARGET = 2506.02 fate-swr-resample_exact-s16p-8000-2626: CMP_TARGET = 2506.02
@ -557,34 +557,34 @@ fate-swr-resample_exact-s16p-8000-48000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_exact-s16p-8000-96000: CMP_TARGET = 13.65 fate-swr-resample_exact-s16p-8000-96000: CMP_TARGET = 13.65
fate-swr-resample_exact-s16p-8000-96000: SIZE_TOLERANCE = 96000 - 20480 fate-swr-resample_exact-s16p-8000-96000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_exact-s16p-96000-2626: CMP_TARGET = 675.14 fate-swr-resample_exact-s16p-96000-2626: CMP_TARGET = 675.15
fate-swr-resample_exact-s16p-96000-2626: SIZE_TOLERANCE = 1152000 - 20474 fate-swr-resample_exact-s16p-96000-2626: SIZE_TOLERANCE = 1152000 - 20474
fate-swr-resample_exact-s16p-96000-44100: CMP_TARGET = 1.45 fate-swr-resample_exact-s16p-96000-44100: CMP_TARGET = 1.44
fate-swr-resample_exact-s16p-96000-44100: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample_exact-s16p-96000-44100: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample_exact-s16p-96000-48000: CMP_TARGET = 1.03 fate-swr-resample_exact-s16p-96000-48000: CMP_TARGET = 1.12
fate-swr-resample_exact-s16p-96000-48000: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample_exact-s16p-96000-48000: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample_exact-s16p-96000-8000: CMP_TARGET = 58.56 fate-swr-resample_exact-s16p-96000-8000: CMP_TARGET = 58.56
fate-swr-resample_exact-s16p-96000-8000: SIZE_TOLERANCE = 1152000 - 20496 fate-swr-resample_exact-s16p-96000-8000: SIZE_TOLERANCE = 1152000 - 20496
fate-swr-resample_exact-s32p-2626-44100: CMP_TARGET = 1393.01 fate-swr-resample_exact-s32p-2626-44100: CMP_TARGET = 1393.02
fate-swr-resample_exact-s32p-2626-44100: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-s32p-2626-44100: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-s32p-2626-48000: CMP_TARGET = 1392.99 fate-swr-resample_exact-s32p-2626-48000: CMP_TARGET = 1393.01
fate-swr-resample_exact-s32p-2626-48000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-s32p-2626-48000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-s32p-2626-8000: CMP_TARGET = 1393.89 fate-swr-resample_exact-s32p-2626-8000: CMP_TARGET = 1393.90
fate-swr-resample_exact-s32p-2626-8000: SIZE_TOLERANCE = 31512 - 20482 fate-swr-resample_exact-s32p-2626-8000: SIZE_TOLERANCE = 31512 - 20482
fate-swr-resample_exact-s32p-2626-96000: CMP_TARGET = 1393.00 fate-swr-resample_exact-s32p-2626-96000: CMP_TARGET = 1393.01
fate-swr-resample_exact-s32p-2626-96000: SIZE_TOLERANCE = 31512 - 20480 fate-swr-resample_exact-s32p-2626-96000: SIZE_TOLERANCE = 31512 - 20480
fate-swr-resample_exact-s32p-44100-2626: CMP_TARGET = 185.82 fate-swr-resample_exact-s32p-44100-2626: CMP_TARGET = 185.82
fate-swr-resample_exact-s32p-44100-2626: SIZE_TOLERANCE = 529200 - 20490 fate-swr-resample_exact-s32p-44100-2626: SIZE_TOLERANCE = 529200 - 20490
fate-swr-resample_exact-s32p-44100-48000: CMP_TARGET = 9.65 fate-swr-resample_exact-s32p-44100-48000: CMP_TARGET = 9.64
fate-swr-resample_exact-s32p-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample_exact-s32p-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact-s32p-44100-8000: CMP_TARGET = 75.38 fate-swr-resample_exact-s32p-44100-8000: CMP_TARGET = 75.38
@ -596,7 +596,7 @@ fate-swr-resample_exact-s32p-44100-96000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact-s32p-48000-2626: CMP_TARGET = 456.51 fate-swr-resample_exact-s32p-48000-2626: CMP_TARGET = 456.51
fate-swr-resample_exact-s32p-48000-2626: SIZE_TOLERANCE = 576000 - 20510 fate-swr-resample_exact-s32p-48000-2626: SIZE_TOLERANCE = 576000 - 20510
fate-swr-resample_exact-s32p-48000-44100: CMP_TARGET = 0.26 fate-swr-resample_exact-s32p-48000-44100: CMP_TARGET = 0.23
fate-swr-resample_exact-s32p-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_exact-s32p-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample_exact-s32p-48000-8000: CMP_TARGET = 62.36 fate-swr-resample_exact-s32p-48000-8000: CMP_TARGET = 62.36
@ -620,10 +620,10 @@ fate-swr-resample_exact-s32p-8000-96000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_exact-s32p-96000-2626: CMP_TARGET = 675.08 fate-swr-resample_exact-s32p-96000-2626: CMP_TARGET = 675.08
fate-swr-resample_exact-s32p-96000-2626: SIZE_TOLERANCE = 1152000 - 20474 fate-swr-resample_exact-s32p-96000-2626: SIZE_TOLERANCE = 1152000 - 20474
fate-swr-resample_exact-s32p-96000-44100: CMP_TARGET = 1.26 fate-swr-resample_exact-s32p-96000-44100: CMP_TARGET = 1.23
fate-swr-resample_exact-s32p-96000-44100: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample_exact-s32p-96000-44100: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample_exact-s32p-96000-48000: CMP_TARGET = 1.00 fate-swr-resample_exact-s32p-96000-48000: CMP_TARGET = 0.99
fate-swr-resample_exact-s32p-96000-48000: SIZE_TOLERANCE = 1152000 - 20480 fate-swr-resample_exact-s32p-96000-48000: SIZE_TOLERANCE = 1152000 - 20480
fate-swr-resample_exact-s32p-96000-8000: CMP_TARGET = 58.52 fate-swr-resample_exact-s32p-96000-8000: CMP_TARGET = 58.52
@ -640,76 +640,76 @@ fate-swr-resample_exact_async-$(3)-$(1)-$(2): FUZZ = 0.1
fate-swr-resample_exact_async-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav fate-swr-resample_exact_async-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav
endef endef
fate-swr-resample_exact_async-dblp-44100-48000: CMP_TARGET = 7791.55 fate-swr-resample_exact_async-dblp-44100-48000: CMP_TARGET = 7791.50
fate-swr-resample_exact_async-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20300 fate-swr-resample_exact_async-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20300
fate-swr-resample_exact_async-dblp-44100-8000: CMP_TARGET = 4022.89 fate-swr-resample_exact_async-dblp-44100-8000: CMP_TARGET = 4022.87
fate-swr-resample_exact_async-dblp-44100-8000: SIZE_TOLERANCE = 529200 - 20310 fate-swr-resample_exact_async-dblp-44100-8000: SIZE_TOLERANCE = 529200 - 20310
fate-swr-resample_exact_async-dblp-48000-44100: CMP_TARGET = 1923.99 fate-swr-resample_exact_async-dblp-48000-44100: CMP_TARGET = 1923.97
fate-swr-resample_exact_async-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20298 fate-swr-resample_exact_async-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20298
fate-swr-resample_exact_async-dblp-48000-8000: CMP_TARGET = 2592.02 fate-swr-resample_exact_async-dblp-48000-8000: CMP_TARGET = 2592.00
fate-swr-resample_exact_async-dblp-48000-8000: SIZE_TOLERANCE = 576000 - 20304 fate-swr-resample_exact_async-dblp-48000-8000: SIZE_TOLERANCE = 576000 - 20304
fate-swr-resample_exact_async-dblp-8000-44100: CMP_TARGET = 11187.37 fate-swr-resample_exact_async-dblp-8000-44100: CMP_TARGET = 11187.24
fate-swr-resample_exact_async-dblp-8000-44100: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_async-dblp-8000-44100: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_async-dblp-8000-48000: CMP_TARGET = 11326.82 fate-swr-resample_exact_async-dblp-8000-48000: CMP_TARGET = 11326.80
fate-swr-resample_exact_async-dblp-8000-48000: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_async-dblp-8000-48000: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_async-fltp-44100-48000: CMP_TARGET = 7791.55 fate-swr-resample_exact_async-fltp-44100-48000: CMP_TARGET = 7791.50
fate-swr-resample_exact_async-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20300 fate-swr-resample_exact_async-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20300
fate-swr-resample_exact_async-fltp-44100-8000: CMP_TARGET = 4022.89 fate-swr-resample_exact_async-fltp-44100-8000: CMP_TARGET = 4022.87
fate-swr-resample_exact_async-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20310 fate-swr-resample_exact_async-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20310
fate-swr-resample_exact_async-fltp-48000-44100: CMP_TARGET = 1923.98 fate-swr-resample_exact_async-fltp-48000-44100: CMP_TARGET = 1923.97
fate-swr-resample_exact_async-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20298 fate-swr-resample_exact_async-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20298
fate-swr-resample_exact_async-fltp-48000-8000: CMP_TARGET = 2592.02 fate-swr-resample_exact_async-fltp-48000-8000: CMP_TARGET = 2592.00
fate-swr-resample_exact_async-fltp-48000-8000: SIZE_TOLERANCE = 576000 - 20304 fate-swr-resample_exact_async-fltp-48000-8000: SIZE_TOLERANCE = 576000 - 20304
fate-swr-resample_exact_async-fltp-8000-44100: CMP_TARGET = 11187.37 fate-swr-resample_exact_async-fltp-8000-44100: CMP_TARGET = 11187.24
fate-swr-resample_exact_async-fltp-8000-44100: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_async-fltp-8000-44100: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_async-fltp-8000-48000: CMP_TARGET = 11326.82 fate-swr-resample_exact_async-fltp-8000-48000: CMP_TARGET = 11326.80
fate-swr-resample_exact_async-fltp-8000-48000: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_async-fltp-8000-48000: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_async-s16p-44100-48000: CMP_TARGET = 7791.56 fate-swr-resample_exact_async-s16p-44100-48000: CMP_TARGET = 7791.50
fate-swr-resample_exact_async-s16p-44100-48000: SIZE_TOLERANCE = 529200 - 20300 fate-swr-resample_exact_async-s16p-44100-48000: SIZE_TOLERANCE = 529200 - 20300
fate-swr-resample_exact_async-s16p-44100-8000: CMP_TARGET = 4023.06 fate-swr-resample_exact_async-s16p-44100-8000: CMP_TARGET = 4023.05
fate-swr-resample_exact_async-s16p-44100-8000: SIZE_TOLERANCE = 529200 - 20310 fate-swr-resample_exact_async-s16p-44100-8000: SIZE_TOLERANCE = 529200 - 20310
fate-swr-resample_exact_async-s16p-48000-44100: CMP_TARGET = 1923.98 fate-swr-resample_exact_async-s16p-48000-44100: CMP_TARGET = 1923.96
fate-swr-resample_exact_async-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20298 fate-swr-resample_exact_async-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20298
fate-swr-resample_exact_async-s16p-48000-8000: CMP_TARGET = 2592.15 fate-swr-resample_exact_async-s16p-48000-8000: CMP_TARGET = 2592.15
fate-swr-resample_exact_async-s16p-48000-8000: SIZE_TOLERANCE = 576000 - 20304 fate-swr-resample_exact_async-s16p-48000-8000: SIZE_TOLERANCE = 576000 - 20304
fate-swr-resample_exact_async-s16p-8000-44100: CMP_TARGET = 11187.62 fate-swr-resample_exact_async-s16p-8000-44100: CMP_TARGET = 11187.58
fate-swr-resample_exact_async-s16p-8000-44100: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_async-s16p-8000-44100: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_async-s16p-8000-48000: CMP_TARGET = 11327.50 fate-swr-resample_exact_async-s16p-8000-48000: CMP_TARGET = 11327.48
fate-swr-resample_exact_async-s16p-8000-48000: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_async-s16p-8000-48000: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_async-s32p-44100-48000: CMP_TARGET = 7791.55 fate-swr-resample_exact_async-s32p-44100-48000: CMP_TARGET = 7791.50
fate-swr-resample_exact_async-s32p-44100-48000: SIZE_TOLERANCE = 529200 - 20300 fate-swr-resample_exact_async-s32p-44100-48000: SIZE_TOLERANCE = 529200 - 20300
fate-swr-resample_exact_async-s32p-44100-8000: CMP_TARGET = 4022.89 fate-swr-resample_exact_async-s32p-44100-8000: CMP_TARGET = 4022.87
fate-swr-resample_exact_async-s32p-44100-8000: SIZE_TOLERANCE = 529200 - 20310 fate-swr-resample_exact_async-s32p-44100-8000: SIZE_TOLERANCE = 529200 - 20310
fate-swr-resample_exact_async-s32p-48000-44100: CMP_TARGET = 1923.98 fate-swr-resample_exact_async-s32p-48000-44100: CMP_TARGET = 1923.97
fate-swr-resample_exact_async-s32p-48000-44100: SIZE_TOLERANCE = 576000 - 20298 fate-swr-resample_exact_async-s32p-48000-44100: SIZE_TOLERANCE = 576000 - 20298
fate-swr-resample_exact_async-s32p-48000-8000: CMP_TARGET = 2592.02 fate-swr-resample_exact_async-s32p-48000-8000: CMP_TARGET = 2592.00
fate-swr-resample_exact_async-s32p-48000-8000: SIZE_TOLERANCE = 576000 - 20304 fate-swr-resample_exact_async-s32p-48000-8000: SIZE_TOLERANCE = 576000 - 20304
fate-swr-resample_exact_async-s32p-8000-44100: CMP_TARGET = 11187.37 fate-swr-resample_exact_async-s32p-8000-44100: CMP_TARGET = 11187.24
fate-swr-resample_exact_async-s32p-8000-44100: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_async-s32p-8000-44100: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_async-s32p-8000-48000: CMP_TARGET = 11326.82 fate-swr-resample_exact_async-s32p-8000-48000: CMP_TARGET = 11326.80
fate-swr-resample_exact_async-s32p-8000-48000: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_async-s32p-8000-48000: SIZE_TOLERANCE = 96000 - 20344
define ARESAMPLE_EXACT_LIN define ARESAMPLE_EXACT_LIN
@ -723,13 +723,13 @@ fate-swr-resample_exact_lin-$(3)-$(1)-$(2): FUZZ = 0.1
fate-swr-resample_exact_lin-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav fate-swr-resample_exact_lin-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav
endef endef
fate-swr-resample_exact_lin-dblp-44100-48000: CMP_TARGET = 9.65 fate-swr-resample_exact_lin-dblp-44100-48000: CMP_TARGET = 9.64
fate-swr-resample_exact_lin-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample_exact_lin-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact_lin-dblp-44100-8000: CMP_TARGET = 75.38 fate-swr-resample_exact_lin-dblp-44100-8000: CMP_TARGET = 75.38
fate-swr-resample_exact_lin-dblp-44100-8000: SIZE_TOLERANCE = 529200 - 20486 fate-swr-resample_exact_lin-dblp-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample_exact_lin-dblp-48000-44100: CMP_TARGET = 0.26 fate-swr-resample_exact_lin-dblp-48000-44100: CMP_TARGET = 0.23
fate-swr-resample_exact_lin-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_exact_lin-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample_exact_lin-dblp-48000-8000: CMP_TARGET = 62.36 fate-swr-resample_exact_lin-dblp-48000-8000: CMP_TARGET = 62.36
@ -741,13 +741,13 @@ fate-swr-resample_exact_lin-dblp-8000-44100: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_exact_lin-dblp-8000-48000: CMP_TARGET = 14.50 fate-swr-resample_exact_lin-dblp-8000-48000: CMP_TARGET = 14.50
fate-swr-resample_exact_lin-dblp-8000-48000: SIZE_TOLERANCE = 96000 - 20480 fate-swr-resample_exact_lin-dblp-8000-48000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_exact_lin-fltp-44100-48000: CMP_TARGET = 9.65 fate-swr-resample_exact_lin-fltp-44100-48000: CMP_TARGET = 9.64
fate-swr-resample_exact_lin-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample_exact_lin-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact_lin-fltp-44100-8000: CMP_TARGET = 75.38 fate-swr-resample_exact_lin-fltp-44100-8000: CMP_TARGET = 75.38
fate-swr-resample_exact_lin-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20486 fate-swr-resample_exact_lin-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample_exact_lin-fltp-48000-44100: CMP_TARGET = 0.26 fate-swr-resample_exact_lin-fltp-48000-44100: CMP_TARGET = 0.23
fate-swr-resample_exact_lin-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_exact_lin-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample_exact_lin-fltp-48000-8000: CMP_TARGET = 62.36 fate-swr-resample_exact_lin-fltp-48000-8000: CMP_TARGET = 62.36
@ -759,13 +759,13 @@ fate-swr-resample_exact_lin-fltp-8000-44100: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_exact_lin-fltp-8000-48000: CMP_TARGET = 14.50 fate-swr-resample_exact_lin-fltp-8000-48000: CMP_TARGET = 14.50
fate-swr-resample_exact_lin-fltp-8000-48000: SIZE_TOLERANCE = 96000 - 20480 fate-swr-resample_exact_lin-fltp-8000-48000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_exact_lin-s16p-44100-48000: CMP_TARGET = 9.67 fate-swr-resample_exact_lin-s16p-44100-48000: CMP_TARGET = 9.66
fate-swr-resample_exact_lin-s16p-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample_exact_lin-s16p-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact_lin-s16p-44100-8000: CMP_TARGET = 75.43 fate-swr-resample_exact_lin-s16p-44100-8000: CMP_TARGET = 75.43
fate-swr-resample_exact_lin-s16p-44100-8000: SIZE_TOLERANCE = 529200 - 20486 fate-swr-resample_exact_lin-s16p-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample_exact_lin-s16p-48000-44100: CMP_TARGET = 0.72 fate-swr-resample_exact_lin-s16p-48000-44100: CMP_TARGET = 0.68
fate-swr-resample_exact_lin-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_exact_lin-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample_exact_lin-s16p-48000-8000: CMP_TARGET = 62.39 fate-swr-resample_exact_lin-s16p-48000-8000: CMP_TARGET = 62.39
@ -777,13 +777,13 @@ fate-swr-resample_exact_lin-s16p-8000-44100: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_exact_lin-s16p-8000-48000: CMP_TARGET = 14.54 fate-swr-resample_exact_lin-s16p-8000-48000: CMP_TARGET = 14.54
fate-swr-resample_exact_lin-s16p-8000-48000: SIZE_TOLERANCE = 96000 - 20480 fate-swr-resample_exact_lin-s16p-8000-48000: SIZE_TOLERANCE = 96000 - 20480
fate-swr-resample_exact_lin-s32p-44100-48000: CMP_TARGET = 9.65 fate-swr-resample_exact_lin-s32p-44100-48000: CMP_TARGET = 9.64
fate-swr-resample_exact_lin-s32p-44100-48000: SIZE_TOLERANCE = 529200 - 20482 fate-swr-resample_exact_lin-s32p-44100-48000: SIZE_TOLERANCE = 529200 - 20482
fate-swr-resample_exact_lin-s32p-44100-8000: CMP_TARGET = 75.38 fate-swr-resample_exact_lin-s32p-44100-8000: CMP_TARGET = 75.38
fate-swr-resample_exact_lin-s32p-44100-8000: SIZE_TOLERANCE = 529200 - 20486 fate-swr-resample_exact_lin-s32p-44100-8000: SIZE_TOLERANCE = 529200 - 20486
fate-swr-resample_exact_lin-s32p-48000-44100: CMP_TARGET = 0.26 fate-swr-resample_exact_lin-s32p-48000-44100: CMP_TARGET = 0.23
fate-swr-resample_exact_lin-s32p-48000-44100: SIZE_TOLERANCE = 576000 - 20480 fate-swr-resample_exact_lin-s32p-48000-44100: SIZE_TOLERANCE = 576000 - 20480
fate-swr-resample_exact_lin-s32p-48000-8000: CMP_TARGET = 62.36 fate-swr-resample_exact_lin-s32p-48000-8000: CMP_TARGET = 62.36
@ -806,76 +806,76 @@ fate-swr-resample_exact_lin_async-$(3)-$(1)-$(2): FUZZ = 0.1
fate-swr-resample_exact_lin_async-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav fate-swr-resample_exact_lin_async-$(3)-$(1)-$(2): REF = tests/data/asynth-$(1)-1.wav
endef endef
fate-swr-resample_exact_lin_async-dblp-44100-48000: CMP_TARGET = 7791.78 fate-swr-resample_exact_lin_async-dblp-44100-48000: CMP_TARGET = 7791.72
fate-swr-resample_exact_lin_async-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20300 fate-swr-resample_exact_lin_async-dblp-44100-48000: SIZE_TOLERANCE = 529200 - 20300
fate-swr-resample_exact_lin_async-dblp-44100-8000: CMP_TARGET = 4023.03 fate-swr-resample_exact_lin_async-dblp-44100-8000: CMP_TARGET = 4023.01
fate-swr-resample_exact_lin_async-dblp-44100-8000: SIZE_TOLERANCE = 529200 - 20310 fate-swr-resample_exact_lin_async-dblp-44100-8000: SIZE_TOLERANCE = 529200 - 20310
fate-swr-resample_exact_lin_async-dblp-48000-44100: CMP_TARGET = 1923.80 fate-swr-resample_exact_lin_async-dblp-48000-44100: CMP_TARGET = 1923.79
fate-swr-resample_exact_lin_async-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20298 fate-swr-resample_exact_lin_async-dblp-48000-44100: SIZE_TOLERANCE = 576000 - 20298
fate-swr-resample_exact_lin_async-dblp-48000-8000: CMP_TARGET = 2591.73 fate-swr-resample_exact_lin_async-dblp-48000-8000: CMP_TARGET = 2591.72
fate-swr-resample_exact_lin_async-dblp-48000-8000: SIZE_TOLERANCE = 576000 - 20304 fate-swr-resample_exact_lin_async-dblp-48000-8000: SIZE_TOLERANCE = 576000 - 20304
fate-swr-resample_exact_lin_async-dblp-8000-44100: CMP_TARGET = 11187.37 fate-swr-resample_exact_lin_async-dblp-8000-44100: CMP_TARGET = 11187.25
fate-swr-resample_exact_lin_async-dblp-8000-44100: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_lin_async-dblp-8000-44100: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_lin_async-dblp-8000-48000: CMP_TARGET = 11326.82 fate-swr-resample_exact_lin_async-dblp-8000-48000: CMP_TARGET = 11326.80
fate-swr-resample_exact_lin_async-dblp-8000-48000: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_lin_async-dblp-8000-48000: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_lin_async-fltp-44100-48000: CMP_TARGET = 7791.78 fate-swr-resample_exact_lin_async-fltp-44100-48000: CMP_TARGET = 7791.72
fate-swr-resample_exact_lin_async-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20300 fate-swr-resample_exact_lin_async-fltp-44100-48000: SIZE_TOLERANCE = 529200 - 20300
fate-swr-resample_exact_lin_async-fltp-44100-8000: CMP_TARGET = 4023.03 fate-swr-resample_exact_lin_async-fltp-44100-8000: CMP_TARGET = 4023.01
fate-swr-resample_exact_lin_async-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20310 fate-swr-resample_exact_lin_async-fltp-44100-8000: SIZE_TOLERANCE = 529200 - 20310
fate-swr-resample_exact_lin_async-fltp-48000-44100: CMP_TARGET = 1923.81 fate-swr-resample_exact_lin_async-fltp-48000-44100: CMP_TARGET = 1923.79
fate-swr-resample_exact_lin_async-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20298 fate-swr-resample_exact_lin_async-fltp-48000-44100: SIZE_TOLERANCE = 576000 - 20298
fate-swr-resample_exact_lin_async-fltp-48000-8000: CMP_TARGET = 2591.73 fate-swr-resample_exact_lin_async-fltp-48000-8000: CMP_TARGET = 2591.72
fate-swr-resample_exact_lin_async-fltp-48000-8000: SIZE_TOLERANCE = 576000 - 20304 fate-swr-resample_exact_lin_async-fltp-48000-8000: SIZE_TOLERANCE = 576000 - 20304
fate-swr-resample_exact_lin_async-fltp-8000-44100: CMP_TARGET = 11187.37 fate-swr-resample_exact_lin_async-fltp-8000-44100: CMP_TARGET = 11187.25
fate-swr-resample_exact_lin_async-fltp-8000-44100: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_lin_async-fltp-8000-44100: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_lin_async-fltp-8000-48000: CMP_TARGET = 11326.82 fate-swr-resample_exact_lin_async-fltp-8000-48000: CMP_TARGET = 11326.80
fate-swr-resample_exact_lin_async-fltp-8000-48000: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_lin_async-fltp-8000-48000: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_lin_async-s16p-44100-48000: CMP_TARGET = 7791.78 fate-swr-resample_exact_lin_async-s16p-44100-48000: CMP_TARGET = 7791.72
fate-swr-resample_exact_lin_async-s16p-44100-48000: SIZE_TOLERANCE = 529200 - 20300 fate-swr-resample_exact_lin_async-s16p-44100-48000: SIZE_TOLERANCE = 529200 - 20300
fate-swr-resample_exact_lin_async-s16p-44100-8000: CMP_TARGET = 4023.20 fate-swr-resample_exact_lin_async-s16p-44100-8000: CMP_TARGET = 4023.19
fate-swr-resample_exact_lin_async-s16p-44100-8000: SIZE_TOLERANCE = 529200 - 20310 fate-swr-resample_exact_lin_async-s16p-44100-8000: SIZE_TOLERANCE = 529200 - 20310
fate-swr-resample_exact_lin_async-s16p-48000-44100: CMP_TARGET = 1923.81 fate-swr-resample_exact_lin_async-s16p-48000-44100: CMP_TARGET = 1923.79
fate-swr-resample_exact_lin_async-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20298 fate-swr-resample_exact_lin_async-s16p-48000-44100: SIZE_TOLERANCE = 576000 - 20298
fate-swr-resample_exact_lin_async-s16p-48000-8000: CMP_TARGET = 2591.86 fate-swr-resample_exact_lin_async-s16p-48000-8000: CMP_TARGET = 2591.85
fate-swr-resample_exact_lin_async-s16p-48000-8000: SIZE_TOLERANCE = 576000 - 20304 fate-swr-resample_exact_lin_async-s16p-48000-8000: SIZE_TOLERANCE = 576000 - 20304
fate-swr-resample_exact_lin_async-s16p-8000-44100: CMP_TARGET = 11187.62 fate-swr-resample_exact_lin_async-s16p-8000-44100: CMP_TARGET = 11187.57
fate-swr-resample_exact_lin_async-s16p-8000-44100: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_lin_async-s16p-8000-44100: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_lin_async-s16p-8000-48000: CMP_TARGET = 11327.49 fate-swr-resample_exact_lin_async-s16p-8000-48000: CMP_TARGET = 11327.48
fate-swr-resample_exact_lin_async-s16p-8000-48000: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_lin_async-s16p-8000-48000: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_lin_async-s32p-44100-48000: CMP_TARGET = 7791.78 fate-swr-resample_exact_lin_async-s32p-44100-48000: CMP_TARGET = 7791.72
fate-swr-resample_exact_lin_async-s32p-44100-48000: SIZE_TOLERANCE = 529200 - 20300 fate-swr-resample_exact_lin_async-s32p-44100-48000: SIZE_TOLERANCE = 529200 - 20300
fate-swr-resample_exact_lin_async-s32p-44100-8000: CMP_TARGET = 4023.03 fate-swr-resample_exact_lin_async-s32p-44100-8000: CMP_TARGET = 4023.01
fate-swr-resample_exact_lin_async-s32p-44100-8000: SIZE_TOLERANCE = 529200 - 20310 fate-swr-resample_exact_lin_async-s32p-44100-8000: SIZE_TOLERANCE = 529200 - 20310
fate-swr-resample_exact_lin_async-s32p-48000-44100: CMP_TARGET = 1923.81 fate-swr-resample_exact_lin_async-s32p-48000-44100: CMP_TARGET = 1923.79
fate-swr-resample_exact_lin_async-s32p-48000-44100: SIZE_TOLERANCE = 576000 - 20298 fate-swr-resample_exact_lin_async-s32p-48000-44100: SIZE_TOLERANCE = 576000 - 20298
fate-swr-resample_exact_lin_async-s32p-48000-8000: CMP_TARGET = 2591.73 fate-swr-resample_exact_lin_async-s32p-48000-8000: CMP_TARGET = 2591.72
fate-swr-resample_exact_lin_async-s32p-48000-8000: SIZE_TOLERANCE = 576000 - 20304 fate-swr-resample_exact_lin_async-s32p-48000-8000: SIZE_TOLERANCE = 576000 - 20304
fate-swr-resample_exact_lin_async-s32p-8000-44100: CMP_TARGET = 11187.37 fate-swr-resample_exact_lin_async-s32p-8000-44100: CMP_TARGET = 11187.25
fate-swr-resample_exact_lin_async-s32p-8000-44100: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_lin_async-s32p-8000-44100: SIZE_TOLERANCE = 96000 - 20344
fate-swr-resample_exact_lin_async-s32p-8000-48000: CMP_TARGET = 11326.82 fate-swr-resample_exact_lin_async-s32p-8000-48000: CMP_TARGET = 11326.80
fate-swr-resample_exact_lin_async-s32p-8000-48000: SIZE_TOLERANCE = 96000 - 20344 fate-swr-resample_exact_lin_async-s32p-8000-48000: SIZE_TOLERANCE = 96000 - 20344
$(call CROSS_TEST,$(SAMPLERATES),ARESAMPLE,s16p,s16le,s16) $(call CROSS_TEST,$(SAMPLERATES),ARESAMPLE,s16p,s16le,s16)

@ -1,4 +1,4 @@
75859976d7098588aeaebbc5551484a9 *tests/data/fate/acodec-roqaudio.roq 75859976d7098588aeaebbc5551484a9 *tests/data/fate/acodec-roqaudio.roq
265992 tests/data/fate/acodec-roqaudio.roq 265992 tests/data/fate/acodec-roqaudio.roq
73d5aaaab9488e63f1cf6fc324c7a9a2 *tests/data/fate/acodec-roqaudio.out.wav 2057ed235e9d4e727e13bf57f3891093 *tests/data/fate/acodec-roqaudio.out.wav
stddev: 4481.70 PSNR: 23.30 MAXDIFF:46250 bytes: 1058400/ 1058400 stddev: 4481.70 PSNR: 23.30 MAXDIFF:46250 bytes: 1058400/ 1058400

@ -1,4 +1,4 @@
f6908214498489799b50e332ac42ebf3 *tests/data/fate/acodec-s302m.mpegts a69563c4c5db97d1b313c2fd7a193dd4 *tests/data/fate/acodec-s302m.mpegts
1589164 tests/data/fate/acodec-s302m.mpegts 1589164 tests/data/fate/acodec-s302m.mpegts
f9b6528eee1aea04640ee83400c78689 *tests/data/fate/acodec-s302m.out.wav 2c033ed1d9029ed03e08c1d01dcefd99 *tests/data/fate/acodec-s302m.out.wav
stddev: 986.97 PSNR: 36.44 MAXDIFF:18642 bytes: 1058400/ 1056708 stddev: 986.98 PSNR: 36.44 MAXDIFF:18642 bytes: 1058400/ 1056708

@ -1,9 +1,9 @@
11be3e5caa2892236b3475c3f7807b76 *./tests/data/lavf/lavf.dv 3bcb02ee889b8b2da19cae79d0f1c27d *./tests/data/lavf/lavf.dv
3600000 ./tests/data/lavf/lavf.dv 3600000 ./tests/data/lavf/lavf.dv
./tests/data/lavf/lavf.dv CRC=0x0b2cd3ec ./tests/data/lavf/lavf.dv CRC=0x5a36cc70
e9949bc767924e1e7d28856029fee024 *./tests/data/lavf/lavf.dv f827583ae54e590d753c37709738fd54 *./tests/data/lavf/lavf.dv
3480000 ./tests/data/lavf/lavf.dv 3480000 ./tests/data/lavf/lavf.dv
./tests/data/lavf/lavf.dv CRC=0xfab17c4a ./tests/data/lavf/lavf.dv CRC=0x8f8074be
87d3b20f656235671383a7eaa2f66330 *./tests/data/lavf/lavf.dv 87d3b20f656235671383a7eaa2f66330 *./tests/data/lavf/lavf.dv
3600000 ./tests/data/lavf/lavf.dv 3600000 ./tests/data/lavf/lavf.dv
./tests/data/lavf/lavf.dv CRC=0xf3e6873c ./tests/data/lavf/lavf.dv CRC=0xf3e6873c

@ -1,9 +1,9 @@
7993da95d8bfe04832e27892c163e562 *./tests/data/lavf/lavf.gxf 1b384e20293a84b274739c147e2b290a *./tests/data/lavf/lavf.gxf
795876 ./tests/data/lavf/lavf.gxf 795876 ./tests/data/lavf/lavf.gxf
./tests/data/lavf/lavf.gxf CRC=0xda7cebbc ./tests/data/lavf/lavf.gxf CRC=0x55b3ec1d
9e873074b5c3ef1d80d233a38e7de156 *./tests/data/lavf/lavf.gxf 411f109b5867e5cb81bc876d3cc5702b *./tests/data/lavf/lavf.gxf
794656 ./tests/data/lavf/lavf.gxf 794656 ./tests/data/lavf/lavf.gxf
./tests/data/lavf/lavf.gxf CRC=0x7f0c9089 ./tests/data/lavf/lavf.gxf CRC=0x0d7e90ea
0638c4d073ac224608baaba16732b68f *./tests/data/lavf/lavf.gxf 0638c4d073ac224608baaba16732b68f *./tests/data/lavf/lavf.gxf
795876 ./tests/data/lavf/lavf.gxf 795876 ./tests/data/lavf/lavf.gxf
./tests/data/lavf/lavf.gxf CRC=0x5ade0285 ./tests/data/lavf/lavf.gxf CRC=0x5ade0285

@ -1,9 +1,9 @@
c61e677b4facc407ca82b1d7c6298484 *./tests/data/lavf/lavf.mxf 2fd59c174dfb213d35e86dea63c0fb13 *./tests/data/lavf/lavf.mxf
525369 ./tests/data/lavf/lavf.mxf 525369 ./tests/data/lavf/lavf.mxf
./tests/data/lavf/lavf.mxf CRC=0xdbfff6f1 ./tests/data/lavf/lavf.mxf CRC=0x9fd3f752
1ae017b5879992431614b1c7ab3b48c5 *./tests/data/lavf/lavf.mxf edb3b610c301362d7b4c12f06f8d2782 *./tests/data/lavf/lavf.mxf
560697 ./tests/data/lavf/lavf.mxf 560697 ./tests/data/lavf/lavf.mxf
./tests/data/lavf/lavf.mxf CRC=0x11a6178e ./tests/data/lavf/lavf.mxf CRC=0xc51717ef
27fac91dce279630a04b94b93518a9d8 *./tests/data/lavf/lavf.mxf a6ba421f38ee5ec46e181225c632fee4 *./tests/data/lavf/lavf.mxf
525369 ./tests/data/lavf/lavf.mxf 525369 ./tests/data/lavf/lavf.mxf
./tests/data/lavf/lavf.mxf CRC=0xdbfff6f1 ./tests/data/lavf/lavf.mxf CRC=0x9fd3f752

Loading…
Cancel
Save