1
0
Fork 0
forked from len0rd/rockbox

Use MEM_ALIGN_ATTR in libfaad. Remove global array and re-use existing one.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29211 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2011-02-05 19:50:16 +00:00
parent f3adc77fd5
commit 8033cb6250
14 changed files with 95 additions and 95 deletions

View file

@ -58,9 +58,10 @@ void hf_generation(sbr_info *sbr, qmf_t Xlow[MAX_NTSRHFG][64],
,uint8_t ch)
{
uint8_t l, i, x;
ALIGN complex_t alpha_0[64], alpha_1[64];
complex_t alpha_0[64] MEM_ALIGN_ATTR;
complex_t alpha_1[64] MEM_ALIGN_ATTR;
#ifdef SBR_LOW_POWER
ALIGN real_t rxx[64];
real_t rxx[64];
#endif
uint8_t offset = sbr->tHFAdj;