[FFmpeg-soc] [soc]: r1799 - eac3/eac3dec.c

jbr subversion at mplayerhq.hu
Tue Jan 8 05:30:13 CET 2008


Author: jbr
Date: Tue Jan  8 05:30:12 2008
New Revision: 1799

Log:
cosmetics: improve indentation and readability after last commit

Modified:
   eac3/eac3dec.c

Modified: eac3/eac3dec.c
==============================================================================
--- eac3/eac3dec.c	(original)
+++ eac3/eac3dec.c	Tue Jan  8 05:30:12 2008
@@ -552,12 +552,13 @@ static int parse_audfrm(AC3DecodeContext
         s->channel_uses_aht[CPL_CH]=0;
         for (ch = (num_cpl_blocks != 6); ch <= s->channels; ch++) {
             nchregs = 0;
-            for (blk = 0; blk < 6; blk++)
+            for (blk = 0; blk < 6; blk++) {
                 if (ch)
-                nchregs += (s->exp_strategy[blk][ch] != EXP_REUSE);
+                    nchregs += (s->exp_strategy[blk][ch] != EXP_REUSE);
                 else
                     nchregs += s->cpl_strategy_exists[blk] ||
                                (s->exp_strategy[blk][CPL_CH] != EXP_REUSE);
+            }
             s->channel_uses_aht[ch] = (nchregs == 1) && get_bits1(gbc);
         }
     } else {



More information about the FFmpeg-soc mailing list