comparison ac3dec.c @ 10024:9ff48c350a32 libavcodec

cosmetics: indentation and line wrap
author jbr
date Wed, 05 Aug 2009 01:58:28 +0000
parents be3245d0147c
children 3fccd61e69d1
comparison
equal deleted inserted replaced
10023:be3245d0147c 10024:9ff48c350a32
415 int i, j, ch, bnd; 415 int i, j, ch, bnd;
416 416
417 i = s->start_freq[CPL_CH]; 417 i = s->start_freq[CPL_CH];
418 for(bnd=0; bnd<s->num_cpl_bands; bnd++) { 418 for(bnd=0; bnd<s->num_cpl_bands; bnd++) {
419 for (j = 0; j < s->cpl_band_sizes[bnd]; j++,i++) { 419 for (j = 0; j < s->cpl_band_sizes[bnd]; j++,i++) {
420 for(ch=1; ch<=s->fbw_channels; ch++) { 420 for(ch=1; ch<=s->fbw_channels; ch++) {
421 if(s->channel_in_cpl[ch]) { 421 if(s->channel_in_cpl[ch]) {
422 s->fixed_coeffs[ch][i] = ((int64_t)s->fixed_coeffs[CPL_CH][i] * (int64_t)s->cpl_coords[ch][bnd]) >> 23; 422 s->fixed_coeffs[ch][i] = ((int64_t)s->fixed_coeffs[CPL_CH][i] *
423 if (ch == 2 && s->phase_flags[bnd]) 423 (int64_t)s->cpl_coords[ch][bnd]) >> 23;
424 s->fixed_coeffs[ch][i] = -s->fixed_coeffs[ch][i]; 424 if (ch == 2 && s->phase_flags[bnd])
425 } 425 s->fixed_coeffs[ch][i] = -s->fixed_coeffs[ch][i];
426 } 426 }
427 }
427 } 428 }
428 } 429 }
429 } 430 }
430 431
431 /** 432 /**