Commit 90da52f0 authored by Mans Rullgard's avatar Mans Rullgard

ac3enc: fix LOCAL_ALIGNED usage in count_mantissa_bits()

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 70bb747a
......@@ -1519,7 +1519,7 @@ static void count_mantissa_bits_update_ch(AC3EncodeContext *s, int ch,
static int count_mantissa_bits(AC3EncodeContext *s)
{
int ch, max_end_freq;
LOCAL_ALIGNED_16(uint16_t, mant_cnt,[AC3_MAX_BLOCKS][16]);
LOCAL_ALIGNED_16(uint16_t, mant_cnt, [AC3_MAX_BLOCKS], [16]);
count_mantissa_bits_init(mant_cnt);
......
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