[FFmpeg-cvslog] r25993 - trunk/libavcodec/ac3enc.c
jbr
subversion
Tue Dec 14 15:53:11 CET 2010
Author: jbr
Date: Tue Dec 14 15:53:10 2010
New Revision: 25993
Log:
cosmetics: remove a comment and just spacing
Modified:
trunk/libavcodec/ac3enc.c
Modified: trunk/libavcodec/ac3enc.c
==============================================================================
--- trunk/libavcodec/ac3enc.c Tue Dec 14 15:53:06 2010 (r25992)
+++ trunk/libavcodec/ac3enc.c Tue Dec 14 15:53:10 2010 (r25993)
@@ -1322,13 +1322,14 @@ static int ac3_encode_frame(AVCodecConte
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);
- /* everything is known... let's output the frame */
+
output_frame_header(s, frame);
for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
output_audio_block(s, exp_strategy[blk], encoded_exp[blk],
bap[blk], mdct_coef[blk], exp_shift[blk], blk);
}
+
output_frame_end(s);
return s->frame_size;
More information about the ffmpeg-cvslog
mailing list