Commit 084f5c5a authored by Justin Ruggles's avatar Justin Ruggles

cosmetics: remove a comment and just spacing

Originally committed as revision 25993 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 160d85f5
...@@ -1322,13 +1322,14 @@ static int ac3_encode_frame(AVCodecContext *avctx, ...@@ -1322,13 +1322,14 @@ static int ac3_encode_frame(AVCodecContext *avctx,
frame_bits = process_exponents(s, mdct_coef, exp_shift, exp, exp_strategy, encoded_exp); frame_bits = process_exponents(s, mdct_coef, exp_shift, exp, exp_strategy, encoded_exp);
compute_bit_allocation(s, bap, encoded_exp, exp_strategy, frame_bits); compute_bit_allocation(s, bap, encoded_exp, exp_strategy, frame_bits);
/* everything is known... let's output the frame */
output_frame_header(s, frame); output_frame_header(s, frame);
for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) { for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
output_audio_block(s, exp_strategy[blk], encoded_exp[blk], output_audio_block(s, exp_strategy[blk], encoded_exp[blk],
bap[blk], mdct_coef[blk], exp_shift[blk], blk); bap[blk], mdct_coef[blk], exp_shift[blk], blk);
} }
output_frame_end(s); output_frame_end(s);
return s->frame_size; return s->frame_size;
......
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