# HG changeset patch # User jbr # Date 1217900941 0 # Node ID 0dbdc638270e0eb76b386b214f4be32deba0d919 # Parent bddd15a1d167e90b12bcdf9092d1f79a011ce7de cosmetics: use a better function name than uncouple_channels() diff -r bddd15a1d167 -r 0dbdc638270e ac3dec.c --- 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];