Commit ce571ceb authored by Justin Ruggles's avatar Justin Ruggles

Use AC3_MAX_COEFS instead of 256 in a couple places in ac3.c

Originally committed as revision 25968 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 47ae6e79
...@@ -221,7 +221,7 @@ void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end, ...@@ -221,7 +221,7 @@ void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end,
/* special case, if snr offset is -960, set all bap's to zero */ /* special case, if snr offset is -960, set all bap's to zero */
if (snr_offset == -960) { if (snr_offset == -960) {
memset(bap, 0, 256); memset(bap, 0, AC3_MAX_COEFS);
return; return;
} }
...@@ -246,7 +246,7 @@ void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap, ...@@ -246,7 +246,7 @@ void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
uint8_t *dba_offsets, uint8_t *dba_lengths, uint8_t *dba_offsets, uint8_t *dba_lengths,
uint8_t *dba_values) uint8_t *dba_values)
{ {
int16_t psd[256]; /* scaled exponents */ int16_t psd[AC3_MAX_COEFS]; /* scaled exponents */
int16_t band_psd[AC3_CRITICAL_BANDS]; /* interpolated exponents */ int16_t band_psd[AC3_CRITICAL_BANDS]; /* interpolated exponents */
int16_t mask[AC3_CRITICAL_BANDS]; /* masking value */ int16_t mask[AC3_CRITICAL_BANDS]; /* masking value */
......
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