diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-08-05 01:13:42 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-08-05 01:13:42 +0000 |
commit | 3f9371680990e1eb8d9b76dde4d5fea82e4cd2ab (patch) | |
tree | ce7b75e0e5f4c48b26c1b035a62212997bf9e298 /libavcodec/ac3dec.h | |
parent | 603139022d32be9a168ecf57f6577cf06daeb0bf (diff) | |
download | ffmpeg-3f9371680990e1eb8d9b76dde4d5fea82e4cd2ab.tar.gz |
Modify decode_band_structure() so that the actual band structure is only
used within the function. This removes the need to have the coupling band
structure stored in the AC3DecodeContext.
Originally committed as revision 19585 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.h')
-rw-r--r-- | libavcodec/ac3dec.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.h b/libavcodec/ac3dec.h index b5367b2fa4..8b42f986d7 100644 --- a/libavcodec/ac3dec.h +++ b/libavcodec/ac3dec.h @@ -82,7 +82,6 @@ typedef struct { int phase_flags_in_use; ///< phase flags in use (phsflginu) int phase_flags[18]; ///< phase flags (phsflg) int num_cpl_bands; ///< number of coupling bands (ncplbnd) - uint8_t cpl_band_struct[18]; ///< coupling band structure (cplbndstrc) uint8_t cpl_band_sizes[18]; ///< number of coeffs in each coupling band int firstchincpl; ///< first channel in coupling int first_cpl_coords[AC3_MAX_CHANNELS]; ///< first coupling coordinates states (firstcplcos) |