[FFmpeg-soc] [soc]: r1590 - in eac3: eac3.h eac3dec.c
jbr
subversion at mplayerhq.hu
Sat Dec 15 19:27:31 CET 2007
Author: jbr
Date: Sat Dec 15 19:27:31 2007
New Revision: 1590
Log:
fix spelling error
Modified:
eac3/eac3.h
eac3/eac3dec.c
Modified: eac3/eac3.h
==============================================================================
--- eac3/eac3.h (original)
+++ eac3/eac3.h Sat Dec 15 19:27:31 2007
@@ -64,7 +64,7 @@ typedef struct EAC3Context{
int dba_syntax; ///< Delta bit allocation syntax enabled (dbaflde)
int skip_syntax; ///< Skip Filed syntax enabled (skipflde)
int cpl_in_use[MAX_BLOCKS]; ///< Coupling in use (cplinu)
- int cpl_stratety_exists[MAX_BLOCKS]; ///< Coupling strategy exists (cplstre)
+ int cpl_strategy_exists[MAX_BLOCKS]; ///< Coupling strategy exists (cplstre)
int exp_strategy[MAX_BLOCKS][AC3_MAX_CHANNELS]; ///< Channel exponent strategy (chexpstr)
int channel_uses_aht[AC3_MAX_CHANNELS]; ///< Channel AHT in use (chahtinu)
int channel_uses_spx[AC3_MAX_CHANNELS]; ///< Channel in spectral extension attenuation process (chinspxatten)
Modified: eac3/eac3dec.c
==============================================================================
--- eac3/eac3dec.c (original)
+++ eac3/eac3dec.c Sat Dec 15 19:27:31 2007
@@ -520,13 +520,13 @@ static int parse_audfrm(GetBitContext *g
parse_spx_atten_data = get_bits1(gbc);
/* Coupling data */
if (s->channel_mode > 1) {
- s->cpl_stratety_exists[0] = 1;
+ s->cpl_strategy_exists[0] = 1;
s->cpl_in_use[0] = get_bits1(gbc);
num_cpl_blocks = s->cpl_in_use[0];
for (blk = 1; blk < s->num_blocks; blk++) {
- s->cpl_stratety_exists[blk] = get_bits1(gbc);
+ s->cpl_strategy_exists[blk] = get_bits1(gbc);
- if (s->cpl_stratety_exists[blk]) {
+ if (s->cpl_strategy_exists[blk]) {
s->cpl_in_use[blk] = get_bits1(gbc);
} else {
s->cpl_in_use[blk] = s->cpl_in_use[blk-1];
@@ -779,7 +779,7 @@ static int parse_audblk(GetBitContext *g
#endif
/* Coupling strategy and enhanced coupling strategy information */
- if (s->cpl_stratety_exists[blk]) {
+ if (s->cpl_strategy_exists[blk]) {
if (s->cpl_in_use[blk]) {
ecpl_in_use = get_bits1(gbc);
if (s->channel_mode == AC3_CHMODE_STEREO) {
More information about the FFmpeg-soc
mailing list