Commit 5b746ab7 authored by jbr's avatar jbr

cosmetics: indentation and line wrap


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19587 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9d902365
......@@ -419,7 +419,8 @@ static void calc_transform_coeffs_cpl(AC3DecodeContext *s)
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;
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];
}
......
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