# HG changeset patch # User jbr # Date 1199048948 0 # Node ID c365f7b831334ea5607b323b29a87a5e91c18768 # Parent b7b19fbc4746bab6b13bbd16eff3ff05bfe139ee cosmetics: vertical realignment after last commit diff -r b7b19fbc4746 -r c365f7b83133 ac3dec.c --- a/ac3dec.c Sun Dec 30 20:58:50 2007 +0000 +++ b/ac3dec.c Sun Dec 30 21:09:08 2007 +0000 @@ -333,9 +333,9 @@ /* get decoding parameters from header info */ s->bit_alloc_params.sr_code = hdr.sr_code; s->channel_mode = hdr.channel_mode; - center_mix_level = gain_levels[center_levels[hdr.center_mix_level]]; - surround_mix_level = gain_levels[surround_levels[hdr.surround_mix_level]]; - s->lfe_on = hdr.lfe_on; + center_mix_level = gain_levels[center_levels[hdr.center_mix_level]]; + surround_mix_level = gain_levels[surround_levels[hdr.surround_mix_level]]; + s->lfe_on = hdr.lfe_on; s->bit_alloc_params.sr_shift = hdr.sr_shift; s->sampling_rate = hdr.sample_rate; s->bit_rate = hdr.bit_rate; @@ -719,8 +719,7 @@ do_imdct_256(s, ch); } else { s->imdct_512.fft.imdct_calc(&s->imdct_512, s->tmp_output, - s->transform_coeffs[ch], - s->tmp_imdct); + s->transform_coeffs[ch], s->tmp_imdct); } /* For the first half of the block, apply the window, add the delay from the previous block, and send to output */ @@ -729,7 +728,7 @@ /* For the second half of the block, apply the window and store the samples to delay, to be combined with the next block */ s->dsp.vector_fmul_reverse(s->delay[ch-1], s->tmp_output+256, - s->window, 256); + s->window, 256); } } @@ -791,7 +790,7 @@ do { if(get_bits1(gbc)) { s->dynamic_range[i] = ((dynamic_range_tab[get_bits(gbc, 8)]-1.0) * - s->avctx->drc_scale)+1.0; + s->avctx->drc_scale)+1.0; } else if(blk == 0) { s->dynamic_range[i] = 1.0f; }