[FFmpeg-soc] [soc]: r3022 - eac3/ac3dec.c

jbr subversion at mplayerhq.hu
Tue Aug 5 03:51:47 CEST 2008


Author: jbr
Date: Tue Aug  5 03:51:47 2008
New Revision: 3022

Log:
cosmetics: use a better function name than uncouple_channels() and remove a comment

Modified:
   eac3/ac3dec.c

Modified: eac3/ac3dec.c
==============================================================================
--- eac3/ac3dec.c	(original)
+++ eac3/ac3dec.c	Tue Aug  5 03:51:47 2008
@@ -398,7 +398,7 @@ static void decode_exponents(GetBitConte
  * range using the coupling coefficients and coupling coordinates.
  * reference: Section 7.4.3 Coupling Coordinate Format
  */
-static void uncouple_channels(AC3DecodeContext *s)
+static void calc_transform_coeffs_cpl(AC3DecodeContext *s)
 {
     int i, j, ch, bnd, subbnd;
 
@@ -573,8 +573,7 @@ static void get_transform_coeffs(AC3Deco
         if (s->channel_in_cpl[ch])  {
             if (!got_cplchan) {
                 get_transform_coeffs_ch(s, blk, CPL_CH, &m);
-                /* calculate transform coefficients for coupling range */
-                uncouple_channels(s);
+                calc_transform_coeffs_cpl(s);
                 got_cplchan = 1;
             }
             end = s->end_freq[CPL_CH];



More information about the FFmpeg-soc mailing list