mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 05:50:43 +00:00
Merge declaration and initialization of a few vars in compute_lpc_coefs()
Originally committed as revision 15088 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
8dfc56ec32
commit
5d2dd90848
@ -32,13 +32,11 @@ static void compute_lpc_coefs(const double *autoc, int max_order,
|
||||
double lpc[][MAX_LPC_ORDER], double *ref)
|
||||
{
|
||||
int i, j, i2;
|
||||
double r, err, tmp;
|
||||
double err = autoc[0];
|
||||
double lpc_tmp[MAX_LPC_ORDER];
|
||||
|
||||
err = autoc[0];
|
||||
|
||||
for(i=0; i<max_order; i++) {
|
||||
r = -autoc[i+1];
|
||||
double r = -autoc[i+1];
|
||||
for(j=0; j<i; j++) {
|
||||
r -= lpc_tmp[j] * autoc[i-j];
|
||||
}
|
||||
@ -50,7 +48,7 @@ static void compute_lpc_coefs(const double *autoc, int max_order,
|
||||
i2 = (i >> 1);
|
||||
lpc_tmp[i] = r;
|
||||
for(j=0; j<i2; j++) {
|
||||
tmp = lpc_tmp[j];
|
||||
double tmp = lpc_tmp[j];
|
||||
lpc_tmp[j] += r * lpc_tmp[i-1-j];
|
||||
lpc_tmp[i-1-j] += r * tmp;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user