diff options
Diffstat (limited to 'apps/codecs/libfaad/syntax.c')
-rw-r--r-- | apps/codecs/libfaad/syntax.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/codecs/libfaad/syntax.c b/apps/codecs/libfaad/syntax.c index fa077d4e94..545163e85b 100644 --- a/apps/codecs/libfaad/syntax.c +++ b/apps/codecs/libfaad/syntax.c | |||
@@ -558,7 +558,7 @@ void raw_data_block(NeAACDecHandle hDecoder, NeAACDecFrameInfo *hInfo, | |||
558 | 558 | ||
559 | /* Table 4.4.4 and */ | 559 | /* Table 4.4.4 and */ |
560 | /* Table 4.4.9 */ | 560 | /* Table 4.4.9 */ |
561 | ALIGN int16_t spec_data[1024] = {0}; | 561 | int16_t spec_data[1024] MEM_ALIGN_ATTR = {0}; |
562 | element sce; | 562 | element sce; |
563 | static uint8_t single_lfe_channel_element(NeAACDecHandle hDecoder, bitfile *ld, | 563 | static uint8_t single_lfe_channel_element(NeAACDecHandle hDecoder, bitfile *ld, |
564 | uint8_t channel, uint8_t *tag) | 564 | uint8_t channel, uint8_t *tag) |
@@ -603,8 +603,8 @@ static uint8_t single_lfe_channel_element(NeAACDecHandle hDecoder, bitfile *ld, | |||
603 | } | 603 | } |
604 | 604 | ||
605 | /* Table 4.4.5 */ | 605 | /* Table 4.4.5 */ |
606 | ALIGN int16_t spec_data1[1024] IBSS_ATTR; | 606 | int16_t spec_data1[1024] IBSS_ATTR MEM_ALIGN_ATTR; |
607 | ALIGN int16_t spec_data2[1024] IBSS_ATTR; | 607 | int16_t spec_data2[1024] IBSS_ATTR MEM_ALIGN_ATTR; |
608 | element cpe; | 608 | element cpe; |
609 | static uint8_t channel_pair_element(NeAACDecHandle hDecoder, bitfile *ld, | 609 | static uint8_t channel_pair_element(NeAACDecHandle hDecoder, bitfile *ld, |
610 | uint8_t channels, uint8_t *tag) | 610 | uint8_t channels, uint8_t *tag) |
@@ -1170,8 +1170,8 @@ static void gain_control_data(bitfile *ld, ic_stream *ics) | |||
1170 | #endif | 1170 | #endif |
1171 | 1171 | ||
1172 | #ifdef SCALABLE_DEC | 1172 | #ifdef SCALABLE_DEC |
1173 | ALIGN int16_t spec_data1[1024]; | 1173 | int16_t spec_data1[1024] MEM_ALIGN_ATTR; |
1174 | ALIGN int16_t spec_data2[1024]; | 1174 | int16_t spec_data2[1024] MEM_ALIGN_ATTR; |
1175 | /* Table 4.4.13 ASME */ | 1175 | /* Table 4.4.13 ASME */ |
1176 | void aac_scalable_main_element(NeAACDecHandle hDecoder, NeAACDecFrameInfo *hInfo, | 1176 | void aac_scalable_main_element(NeAACDecHandle hDecoder, NeAACDecFrameInfo *hInfo, |
1177 | bitfile *ld, program_config *pce, drc_info *drc) | 1177 | bitfile *ld, program_config *pce, drc_info *drc) |