diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-01-11 10:54:59 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-01-11 10:54:59 +0000 |
commit | 3b3a676a1303967900eac8536586207a420b6a7e (patch) | |
tree | 587324665a9163437e99d83c2388ad248ab80c81 /libavcodec | |
parent | 52c0fcaf52148b17c883fcc255828884b23368d3 (diff) | |
download | ffmpeg-3b3a676a1303967900eac8536586207a420b6a7e.tar.gz |
10l: Fix forgotten variable rename from r14893 (fixes issue 1675).
Originally committed as revision 21135 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/acelp_filters.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/acelp_filters.c b/libavcodec/acelp_filters.c index 9f720a5b96..0156d763fc 100644 --- a/libavcodec/acelp_filters.c +++ b/libavcodec/acelp_filters.c @@ -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; |