Skip to content
Snippets Groups Projects
Commit f6a1ca1d authored by Vitor Sessak's avatar Vitor Sessak
Browse files

Misc cosmetics in compute_lpc_coefs(): braces removal and empty lines

Originally committed as revision 15093 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1ffbafa0
No related branches found
No related tags found
No related merge requests found
...@@ -37,9 +37,10 @@ static void compute_lpc_coefs(const double *autoc, int max_order, ...@@ -37,9 +37,10 @@ static void compute_lpc_coefs(const double *autoc, int max_order,
for(i=0; i<max_order; i++) { for(i=0; i<max_order; i++) {
double r = -autoc[i+1]; double r = -autoc[i+1];
for(j=0; j<i; j++) {
for(j=0; j<i; j++)
r -= lpc_tmp[j] * autoc[i-j]; r -= lpc_tmp[j] * autoc[i-j];
}
r /= err; r /= err;
ref[i] = fabs(r); ref[i] = fabs(r);
...@@ -51,13 +52,12 @@ static void compute_lpc_coefs(const double *autoc, int max_order, ...@@ -51,13 +52,12 @@ static void compute_lpc_coefs(const double *autoc, int max_order,
lpc_tmp[j] += r * lpc_tmp[i-1-j]; lpc_tmp[j] += r * lpc_tmp[i-1-j];
lpc_tmp[i-1-j] += r * tmp; lpc_tmp[i-1-j] += r * tmp;
} }
if(i & 1) {
if(i & 1)
lpc_tmp[j] += lpc_tmp[j] * r; lpc_tmp[j] += lpc_tmp[j] * r;
}
for(j=0; j<=i; j++) { for(j=0; j<=i; j++)
lpc[i][j] = -lpc_tmp[j]; lpc[i][j] = -lpc_tmp[j];
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment