Commit cdedf7e6 authored by Justin Ruggles's avatar Justin Ruggles

Convert a for() loop into a while() loop for the downward part of the exponent

delta limiting.

Originally committed as revision 26035 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 27af78cf
...@@ -639,7 +639,8 @@ static void encode_exponents_blk_ch(uint8_t *exp, ...@@ -639,7 +639,8 @@ static void encode_exponents_blk_ch(uint8_t *exp,
differentially encoded */ differentially encoded */
for (i = 1; i <= nb_groups; i++) for (i = 1; i <= nb_groups; i++)
exp[i] = FFMIN(exp[i], exp[i-1] + 2); exp[i] = FFMIN(exp[i], exp[i-1] + 2);
for (i = nb_groups-1; i >= 0; i--) i--;
while (--i >= 0)
exp[i] = FFMIN(exp[i], exp[i+1] + 2); exp[i] = FFMIN(exp[i], exp[i+1] + 2);
/* now we have the exponent values the decoder will see */ /* now we have the exponent values the decoder will see */
......
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