changeset 5499:838ba4dafaae libavcodec

cosmetics: blank lines, remove some comments
author jbr
date Sun, 05 Aug 2007 21:48:46 +0000
parents 9971ba9c30a3
children 8b0dc2ce135c
files ac3dec.c
diffstat 1 files changed, 1 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/ac3dec.c	Sun Aug 05 21:34:33 2007 +0000
+++ b/ac3dec.c	Sun Aug 05 21:48:46 2007 +0000
@@ -129,7 +129,6 @@
 typedef struct {
     int acmod;
     int dsurmod;
-
     int blksw[AC3_MAX_CHANNELS];
     int dithflag[AC3_MAX_CHANNELS];
     int dither_all;
@@ -199,7 +198,6 @@
     AVCodecContext *avctx;      ///< parent context
 } AC3DecodeContext;
 
-/*********** BEGIN INIT HELPER FUNCTIONS ***********/
 /**
  * Generate a Kaiser-Bessel Derived Window.
  */
@@ -318,7 +316,6 @@
 
     return 0;
 }
-/*********** END INIT FUNCTIONS ***********/
 
 /**
  * Parses the 'sync info' and 'bit stream info' from the AC-3 bitstream.
@@ -506,7 +503,6 @@
     start = ctx->startmant[ch_index];
     end = ctx->endmant[ch_index];
 
-
     for (i = start; i < end; i++) {
         tbap = bap[i];
         switch (tbap) {
@@ -955,7 +951,6 @@
             }
             bit_alloc_stages[ch] = FFMAX(bit_alloc_stages[ch], 2);
         }
-
         for (ch = !ctx->cplinu; ch <= nfchans; ch++) {
             if (ctx->deltbae[ch] == DBA_NEW) {/*channel delta offset, len and bit allocation */
                 ctx->deltnseg[ch] = get_bits(gb, 3);
@@ -1004,6 +999,7 @@
         while(skipl--)
             skip_bits(gb, 8);
     }
+
     /* unpack the transform coefficients
      * * this also uncouples channels if coupling is in use.
      */
@@ -1096,8 +1092,6 @@
     }
     ctx->out_channels = avctx->channels;
 
-    //av_log(avctx, AV_LOG_INFO, "channels = %d \t bit rate = %d \t sampling rate = %d \n", avctx->channels, avctx->bit_rate * 1000, avctx->sample_rate);
-
     //Parse the Audio Blocks.
     for (blk = 0; blk < NB_BLOCKS; blk++) {
         if (ac3_parse_audio_block(ctx, blk)) {
@@ -1133,4 +1127,3 @@
     .close = ac3_decode_end,
     .decode = ac3_decode_frame,
 };
-