From e55c47697b0dcb77dd0b11020ffca7f0f2a18975 Mon Sep 17 00:00:00 2001 From: Rob Sykes Date: Tue, 9 Apr 2013 12:23:26 +0100 Subject: correct defines for interpolation order selection --- src/soxr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soxr.h b/src/soxr.h index d878bb8..9bbd811 100644 --- a/src/soxr.h +++ b/src/soxr.h @@ -259,8 +259,8 @@ struct soxr_runtime_spec { /* Typically */ }; /* For `irrational' ratios only: */ #define SOXR_COEF_INTERP_AUTO 0u /* Auto select coef. interpolation. */ -#define SOXR_COEF_INTERP_LOW 1u /* Man. select: less CPU, more memory. */ -#define SOXR_COEF_INTERP_HIGH 2u /* Man. select: more CPU, less memory. */ +#define SOXR_COEF_INTERP_LOW 2u /* Man. select: less CPU, more memory. */ +#define SOXR_COEF_INTERP_HIGH 3u /* Man. select: more CPU, less memory. */ #define SOXR_STRICT_BUFFERING 4u /* Reserved for future use. */ #define SOXR_NOSMALLINTOPT 8u /* For test purposes only. */ -- cgit v1.2.3