mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
(closes issue #10679)
Reported by: andrew Build under dev mode when K6OPTS is enabled. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@82265 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -162,7 +162,10 @@ static void Calculation_of_the_LTP_parameters P4((d,dp,bc_out,Nc_out),
|
||||
word * Nc_out /* OUT */
|
||||
)
|
||||
{
|
||||
register int k, lambda;
|
||||
register int k;
|
||||
#ifndef K6OPT
|
||||
register int lambda;
|
||||
#endif
|
||||
word Nc, bc;
|
||||
word wt[40];
|
||||
|
||||
|
@@ -35,9 +35,12 @@ static void Autocorrelation P2((s, L_ACF),
|
||||
* be scaled in order to avoid an overflow situation.
|
||||
*/
|
||||
{
|
||||
#ifndef K6OPT
|
||||
register int k, i;
|
||||
word temp;
|
||||
#endif
|
||||
|
||||
word temp, smax, scalauto;
|
||||
word smax, scalauto;
|
||||
|
||||
#ifdef USE_FLOAT_MUL
|
||||
float float_s[160];
|
||||
|
Reference in New Issue
Block a user