Commit 3c6f25ad authored by jbr's avatar jbr

cosmetics: use a better function name than uncouple_channels()

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14614 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c3ad312c
...@@ -383,7 +383,7 @@ static void decode_exponents(GetBitContext *gbc, int exp_strategy, int ngrps, ...@@ -383,7 +383,7 @@ static void decode_exponents(GetBitContext *gbc, int exp_strategy, int ngrps,
* range using the coupling coefficients and coupling coordinates. * range using the coupling coefficients and coupling coordinates.
* reference: Section 7.4.3 Coupling Coordinate Format * 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; int i, j, ch, bnd, subbnd;
...@@ -546,7 +546,7 @@ static void get_transform_coeffs(AC3DecodeContext *s) ...@@ -546,7 +546,7 @@ static void get_transform_coeffs(AC3DecodeContext *s)
if (s->channel_in_cpl[ch]) { if (s->channel_in_cpl[ch]) {
if (!got_cplchan) { if (!got_cplchan) {
get_transform_coeffs_ch(s, CPL_CH, &m); get_transform_coeffs_ch(s, CPL_CH, &m);
uncouple_channels(s); calc_transform_coeffs_cpl(s);
got_cplchan = 1; got_cplchan = 1;
} }
end = s->end_freq[CPL_CH]; end = s->end_freq[CPL_CH];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment