diff options
author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-07-11 18:41:41 +0000 |
---|---|---|
committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-07-11 18:41:41 +0000 |
commit | fe61885e4841a1b2beed729321c4df2b22432096 (patch) | |
tree | b55e7dd88d1373ee6d8623c683bf0d9ec04ca4ea /apps/codecs/libfaad/sbr_dct.c | |
parent | bc48fed0e7b1db5b140ee90b77728f143f8aa352 (diff) |
Minor correction to macros, beautification of loop.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27391 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libfaad/sbr_dct.c')
-rw-r--r-- | apps/codecs/libfaad/sbr_dct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libfaad/sbr_dct.c b/apps/codecs/libfaad/sbr_dct.c index f471745813..f22a24a18e 100644 --- a/apps/codecs/libfaad/sbr_dct.c +++ b/apps/codecs/libfaad/sbr_dct.c @@ -1535,7 +1535,7 @@ const uint32_t dct4_revtab[32] ICONST_ATTR = { x_im = imag_part; \ tmp = MUL_C(x_re + x_im, tab[tabidx++]); \ out1 = MUL_C(x_re , tab[tabidx++]) + tmp; \ - out2 = MUL_C(x_im , tab[tabidx++]) + tmp; \ + out2 = MUL_C(x_im , tab[tabidx++]) + tmp; /* size 64 only! */ void dct4_kernel(real_t *real, real_t *imag) |