Commit bec37145 authored by Justin Ruggles's avatar Justin Ruggles

cosmetics: indentation

Originally committed as revision 9774 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9fc1ab72
...@@ -1334,8 +1334,8 @@ static int ac3_parse_audio_block(AC3DecodeContext *ctx, int blk) ...@@ -1334,8 +1334,8 @@ static int ac3_parse_audio_block(AC3DecodeContext *ctx, int blk)
if(acmod == AC3_ACMOD_DUALMONO) { /* dynamic range 1+1 mode */ if(acmod == AC3_ACMOD_DUALMONO) { /* dynamic range 1+1 mode */
if(get_bits1(gb)) { if(get_bits1(gb)) {
dynrng = get_sbits(gb, 8); dynrng = get_sbits(gb, 8);
ctx->dynrng2 = ((((dynrng & 0x1f) | 0x20) << 13) * scale_factors[3 - (dynrng >> 5)]); ctx->dynrng2 = ((((dynrng & 0x1f) | 0x20) << 13) * scale_factors[3 - (dynrng >> 5)]);
} else if(blk == 0) { } else if(blk == 0) {
ctx->dynrng2 = 1.0; ctx->dynrng2 = 1.0;
} }
......
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