diff options
Diffstat (limited to 'apps/codecs/libfaad/filtbank.c')
-rw-r--r-- | apps/codecs/libfaad/filtbank.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libfaad/filtbank.c b/apps/codecs/libfaad/filtbank.c index 0c1f6c03cf..906af9e1a9 100644 --- a/apps/codecs/libfaad/filtbank.c +++ b/apps/codecs/libfaad/filtbank.c | |||
@@ -196,7 +196,7 @@ static INLINE void mdct(fb_info *fb, real_t *in_data, real_t *out_data, uint16_t | |||
196 | } | 196 | } |
197 | #endif | 197 | #endif |
198 | 198 | ||
199 | ALIGN real_t transf_buf[2*1024] IBSS_ATTR; | 199 | real_t transf_buf[2*1024] IBSS_ATTR MEM_ALIGN_ATTR; |
200 | 200 | ||
201 | void ifilter_bank(uint8_t window_sequence, uint8_t window_shape, | 201 | void ifilter_bank(uint8_t window_sequence, uint8_t window_shape, |
202 | uint8_t window_shape_prev, real_t *freq_in, | 202 | uint8_t window_shape_prev, real_t *freq_in, |
@@ -403,7 +403,7 @@ void ifilter_bank(uint8_t window_sequence, uint8_t window_shape, | |||
403 | 403 | ||
404 | 404 | ||
405 | #ifdef LTP_DEC | 405 | #ifdef LTP_DEC |
406 | ALIGN real_t windowed_buf[2*1024] = {0}; | 406 | real_t windowed_buf[2*1024] MEM_ALIGN_ATTR = {0}; |
407 | /* only works for LTP -> no overlapping, no short blocks */ | 407 | /* only works for LTP -> no overlapping, no short blocks */ |
408 | void filter_bank_ltp(fb_info *fb, uint8_t window_sequence, uint8_t window_shape, | 408 | void filter_bank_ltp(fb_info *fb, uint8_t window_sequence, uint8_t window_shape, |
409 | uint8_t window_shape_prev, real_t *in_data, real_t *out_mdct, | 409 | uint8_t window_shape_prev, real_t *in_data, real_t *out_mdct, |