diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-14 14:53:10 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2010-12-14 14:53:10 +0000 |
commit | 084f5c5afefb7a14eb8229b821c2e0313a55391d (patch) | |
tree | a69b5d4f4d0c1cf97efb38d767eb4a6ecfe512a0 /libavcodec/ac3enc.c | |
parent | 160d85f5b058a1a3b9b2eeb19b878cf8f2a86161 (diff) | |
download | ffmpeg-084f5c5afefb7a14eb8229b821c2e0313a55391d.tar.gz |
cosmetics: remove a comment and just spacing
Originally committed as revision 25993 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3enc.c')
-rw-r--r-- | libavcodec/ac3enc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c index 60ba60e25a..be632983a3 100644 --- a/libavcodec/ac3enc.c +++ b/libavcodec/ac3enc.c @@ -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); 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; |