From: Paul Brossier Date: Thu, 1 Oct 2009 22:51:50 +0000 (+0200) Subject: src/temporal/[ac]_weighting.c: update error message X-Git-Tag: bzr2git~233 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2cc816a4d405cbe3a34a3b17ff68f55ec239236f;p=aubio.git src/temporal/[ac]_weighting.c: update error message --- diff --git a/src/temporal/a_weighting.c b/src/temporal/a_weighting.c index 47af8972..0f89e2f7 100644 --- a/src/temporal/a_weighting.c +++ b/src/temporal/a_weighting.c @@ -224,7 +224,8 @@ void aubio_filter_set_a_weighting (aubio_filter_t * f) { default: AUBIO_ERROR ( "sampling rate of A-weighting filter is %d, should be one of\ - 8000, 16000, 22050, 44100, 96000, 192000.\n", samplerate ); + 8000, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000, 192000.\n", + samplerate ); break; } diff --git a/src/temporal/c_weighting.c b/src/temporal/c_weighting.c index cee6ae3a..d6f3a7f3 100644 --- a/src/temporal/c_weighting.c +++ b/src/temporal/c_weighting.c @@ -183,7 +183,8 @@ void aubio_filter_set_c_weighting (aubio_filter_t * f) { default: AUBIO_ERROR ( "sampling rate of C-weighting filter is %d, should be one of\ - 8000, 16000, 22050, 44100, 96000, 192000.\n", samplerate ); + 8000, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000, 192000.\n", + samplerate ); break; }