Commit 3b3a676a authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

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

Originally committed as revision 21135 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 52c0fcaf
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment