mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
Correct the sign of the arithmetic in ff_celp_lp_zero_synthesis_filterf()
Patch by Colin McQuillan ( m.niloc googlemail com ) Originally committed as revision 19574 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f7e1353523
commit
d5652f38fb
1 changed files with 1 additions and 1 deletions
|
|
@ -110,6 +110,6 @@ void ff_celp_lp_zero_synthesis_filterf(float *out,
|
|||
for (n = 0; n < buffer_length; n++) {
|
||||
out[n] = in[n];
|
||||
for (i = 1; i < filter_length; i++)
|
||||
out[n] -= filter_coeffs[i-1] * in[n-i];
|
||||
out[n] += filter_coeffs[i-1] * in[n-i];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue