diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-02-05 19:50:16 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-02-05 19:50:16 +0000 |
| commit | 8033cb6250c403f4b7c189c4aa4c085df145a044 (patch) | |
| tree | f016b3dfda878c2baa71e9aabccd4a3fc766432a /apps/codecs/libfaad/sbr_noise.h | |
| parent | f3adc77fd509392479e09f97a6fe72a90e2c4cc1 (diff) | |
| download | rockbox-8033cb6250c403f4b7c189c4aa4c085df145a044.zip rockbox-8033cb6250c403f4b7c189c4aa4c085df145a044.tar.gz rockbox-8033cb6250c403f4b7c189c4aa4c085df145a044.tar.bz2 rockbox-8033cb6250c403f4b7c189c4aa4c085df145a044.tar.xz | |
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
Diffstat (limited to 'apps/codecs/libfaad/sbr_noise.h')
| -rw-r--r-- | apps/codecs/libfaad/sbr_noise.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libfaad/sbr_noise.h b/apps/codecs/libfaad/sbr_noise.h index 73ec5f4..48f0ea9 100644 --- a/apps/codecs/libfaad/sbr_noise.h +++ b/apps/codecs/libfaad/sbr_noise.h @@ -39,7 +39,7 @@ extern "C" { /* Table 1.A.13 Noise table V */ -ALIGN static const complex_t V[] = { +static const complex_t V[] MEM_ALIGN_ATTR = { { FRAC_CONST(-0.99948155879974), FRAC_CONST(-0.59483414888382) }, { FRAC_CONST(0.97113454341888), FRAC_CONST(-0.67528516054153) }, { FRAC_CONST(0.14130051434040), FRAC_CONST(-0.95090985298157) }, |