Browse Source

use MAX_BLOCKS for array size instead of 6

Originally committed as revision 14515 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Justin Ruggles 17 years ago
parent
commit
a52d8c6b32
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ac3dec.h

+ 1
- 1
libavcodec/ac3dec.h View File

@@ -91,7 +91,7 @@ typedef struct {

///@defgroup aht adaptive hybrid transform
int channel_uses_aht[AC3_MAX_CHANNELS]; ///< channel AHT in use (chahtinu)
int pre_mantissa[AC3_MAX_CHANNELS][AC3_MAX_COEFS][6]; ///< pre-IDCT mantissas
int pre_mantissa[AC3_MAX_CHANNELS][AC3_MAX_COEFS][MAX_BLOCKS]; ///< pre-IDCT mantissas
///@}

///@defgroup channel channel


Loading…
Cancel
Save