Commit 20520421 authored by Justin Ruggles's avatar Justin Ruggles

simplify by combining increment with array access

Originally committed as revision 20038 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent be5830ea
......@@ -109,8 +109,7 @@ void ff_ac3_bit_alloc_calc_psd(int8_t *exp, int start, int end, int16_t *psd,
j=start;
k=bin_to_band_tab[start];
do {
v=psd[j];
j++;
v = psd[j++];
end1 = FFMIN(band_start_tab[k+1], end);
for (; j < end1; j++) {
/* logadd */
......
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