changeset 7491:0dbdc638270e libavcodec

cosmetics: use a better function name than uncouple_channels()
author jbr
date Tue, 05 Aug 2008 01:49:01 +0000
parents bddd15a1d167
children 50e0b25882cd
files ac3dec.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ac3dec.c	Tue Aug 05 01:31:40 2008 +0000
+++ b/ac3dec.c	Tue Aug 05 01:49:01 2008 +0000
@@ -383,7 +383,7 @@
  * 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;
 
@@ -546,7 +546,7 @@
         if (s->channel_in_cpl[ch])  {
             if (!got_cplchan) {
                 get_transform_coeffs_ch(s, CPL_CH, &m);
-                uncouple_channels(s);
+                calc_transform_coeffs_cpl(s);
                 got_cplchan = 1;
             }
             end = s->end_freq[CPL_CH];