10l: Fix forgotten variable rename from r14893 (fixes issue 1675).

Originally committed as revision 21135 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Carl Eugen Hoyos 2010-01-11 10:54:59 +00:00
parent 52c0fcaf52
commit 3b3a676a13
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ void ff_acelp_interpolate(int16_t* out, const int16_t* in,
{
int n, i;
assert(pitch_delay_frac >= 0 && pitch_delay_frac < precision);
assert(frac_pos >= 0 && frac_pos < precision);
for (n = 0; n < length; n++) {
int idx = 0;