Skip to content
Snippets Groups Projects
Commit c23f7d8b authored by Joshua Colp's avatar Joshua Colp
Browse files

Merged revisions 82265 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r82265 | file | 2007-09-11 18:41:49 -0300 (Tue, 11 Sep 2007) | 4 lines

(closes issue #10679)
Reported by: andrew
Build under dev mode when K6OPTS is enabled.

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@82266 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent c0bcb9f2
No related branches found
No related tags found
No related merge requests found
...@@ -162,7 +162,10 @@ static void Calculation_of_the_LTP_parameters P4((d,dp,bc_out,Nc_out), ...@@ -162,7 +162,10 @@ static void Calculation_of_the_LTP_parameters P4((d,dp,bc_out,Nc_out),
word * Nc_out /* OUT */ word * Nc_out /* OUT */
) )
{ {
register int k, lambda; register int k;
#ifndef K6OPT
register int lambda;
#endif
word Nc, bc; word Nc, bc;
word wt[40]; word wt[40];
......
...@@ -35,9 +35,12 @@ static void Autocorrelation P2((s, L_ACF), ...@@ -35,9 +35,12 @@ static void Autocorrelation P2((s, L_ACF),
* be scaled in order to avoid an overflow situation. * be scaled in order to avoid an overflow situation.
*/ */
{ {
#ifndef K6OPT
register int k, i; register int k, i;
word temp;
#endif
word temp, smax, scalauto; word smax, scalauto;
#ifdef USE_FLOAT_MUL #ifdef USE_FLOAT_MUL
float float_s[160]; float float_s[160];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment