From ba28403a04c8911bd728bf09e57567cc6080f682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20J=C3=A4genstedt?= <philip@foolip.org> Date: Thu, 27 Sep 2012 14:38:00 +0200 Subject: [PATCH] Typo: FIND_PITCH_BANDWI(D)TH_EXPANSION --- silk/fixed/find_pitch_lags_FIX.c | 2 +- silk/float/find_pitch_lags_FLP.c | 2 +- silk/tuning_parameters.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/silk/fixed/find_pitch_lags_FIX.c b/silk/fixed/find_pitch_lags_FIX.c index 9b83c7094..39c304871 100644 --- a/silk/fixed/find_pitch_lags_FIX.c +++ b/silk/fixed/find_pitch_lags_FIX.c @@ -101,7 +101,7 @@ void silk_find_pitch_lags_FIX( } /* Do BWE */ - silk_bwexpander( A_Q12, psEnc->sCmn.pitchEstimationLPCOrder, SILK_FIX_CONST( FIND_PITCH_BANDWITH_EXPANSION, 16 ) ); + silk_bwexpander( A_Q12, psEnc->sCmn.pitchEstimationLPCOrder, SILK_FIX_CONST( FIND_PITCH_BANDWIDTH_EXPANSION, 16 ) ); /*****************************************/ /* LPC analysis filtering */ diff --git a/silk/float/find_pitch_lags_FLP.c b/silk/float/find_pitch_lags_FLP.c index 9f06effde..00862a6de 100644 --- a/silk/float/find_pitch_lags_FLP.c +++ b/silk/float/find_pitch_lags_FLP.c @@ -96,7 +96,7 @@ void silk_find_pitch_lags_FLP( silk_k2a_FLP( A, refl_coef, psEnc->sCmn.pitchEstimationLPCOrder ); /* Bandwidth expansion */ - silk_bwexpander_FLP( A, psEnc->sCmn.pitchEstimationLPCOrder, FIND_PITCH_BANDWITH_EXPANSION ); + silk_bwexpander_FLP( A, psEnc->sCmn.pitchEstimationLPCOrder, FIND_PITCH_BANDWIDTH_EXPANSION ); /*****************************************/ /* LPC analysis filtering */ diff --git a/silk/tuning_parameters.h b/silk/tuning_parameters.h index 0b0b7749b..a26de4d25 100644 --- a/silk/tuning_parameters.h +++ b/silk/tuning_parameters.h @@ -44,7 +44,7 @@ extern "C" #define FIND_PITCH_WHITE_NOISE_FRACTION 1e-3f /* Bandwidth expansion for whitening filter in pitch analysis */ -#define FIND_PITCH_BANDWITH_EXPANSION 0.99f +#define FIND_PITCH_BANDWIDTH_EXPANSION 0.99f /*********************/ /* Linear prediction */ -- GitLab