# HG changeset patch # User jbr # Date 1249437508 0 # Node ID 9ff48c350a3288eb5721f7832c4159b76e5441ba # Parent be3245d0147ca39358966011d68bee106e62b85c cosmetics: indentation and line wrap diff -r be3245d0147c -r 9ff48c350a32 ac3dec.c --- a/ac3dec.c Wed Aug 05 01:14:28 2009 +0000 +++ b/ac3dec.c Wed Aug 05 01:58:28 2009 +0000 @@ -417,13 +417,14 @@ i = s->start_freq[CPL_CH]; for(bnd=0; bndnum_cpl_bands; bnd++) { for (j = 0; j < s->cpl_band_sizes[bnd]; j++,i++) { - for(ch=1; ch<=s->fbw_channels; ch++) { - if(s->channel_in_cpl[ch]) { - s->fixed_coeffs[ch][i] = ((int64_t)s->fixed_coeffs[CPL_CH][i] * (int64_t)s->cpl_coords[ch][bnd]) >> 23; - if (ch == 2 && s->phase_flags[bnd]) - s->fixed_coeffs[ch][i] = -s->fixed_coeffs[ch][i]; - } + for(ch=1; ch<=s->fbw_channels; ch++) { + if(s->channel_in_cpl[ch]) { + s->fixed_coeffs[ch][i] = ((int64_t)s->fixed_coeffs[CPL_CH][i] * + (int64_t)s->cpl_coords[ch][bnd]) >> 23; + if (ch == 2 && s->phase_flags[bnd]) + s->fixed_coeffs[ch][i] = -s->fixed_coeffs[ch][i]; } + } } } }