[FFmpeg-soc] [soc]: r1752 - in eac3: ac3tab.c ac3tab.h eac3dec.c
jbr
subversion at mplayerhq.hu
Wed Jan 2 01:07:40 CET 2008
Author: jbr
Date: Wed Jan 2 01:07:40 2008
New Revision: 1752
Log:
cosmetics: rename another table
Modified:
eac3/ac3tab.c
eac3/ac3tab.h
eac3/eac3dec.c
Modified: eac3/ac3tab.c
==============================================================================
--- eac3/ac3tab.c (original)
+++ eac3/ac3tab.c Wed Jan 2 01:07:40 2008
@@ -1333,7 +1333,7 @@ const uint8_t ff_eac3_frm_expstr[32][6]
/**
* Table E2.16 Default Coupling Banding Structure
*/
-const uint8_t ff_eac3_defcplbndstrc[18] =
+const uint8_t ff_eac3_default_cpl_band_struct[18] =
{ 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1 };
/**
Modified: eac3/ac3tab.h
==============================================================================
--- eac3/ac3tab.h (original)
+++ eac3/ac3tab.h Wed Jan 2 01:07:40 2008
@@ -47,7 +47,7 @@ extern const uint8_t ff_eac3_gaq_gk[4][3
extern const int16_t (*ff_eac3_vq_hebap[8])[6];
extern const uint8_t ff_eac3_frm_expstr[32][6];
-extern const uint8_t ff_eac3_defcplbndstrc[18];
+extern const uint8_t ff_eac3_default_cpl_band_struct[18];
extern const uint8_t ff_eac3_defspxbndstrc[17];
extern const uint8_t ff_eac3_defecplbndstrc[22];
extern const float ff_eac3_spxattentab[32][3];
Modified: eac3/eac3dec.c
==============================================================================
--- eac3/eac3dec.c (original)
+++ eac3/eac3dec.c Wed Jan 2 01:07:40 2008
@@ -804,7 +804,7 @@ int ff_eac3_parse_audio_block(AC3DecodeC
}
} else if (!blk) {
for (bnd = 0; bnd < s->num_cpl_subbands-1; bnd++)
- s->cpl_band_struct[bnd] = ff_eac3_defcplbndstrc[bnd+cpl_begin+1];
+ s->cpl_band_struct[bnd] = ff_eac3_default_cpl_band_struct[bnd+cpl_begin+1];
}
s->cpl_band_struct[17] = 0;
More information about the FFmpeg-soc
mailing list