summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-11-12 18:20:25 +0000
committerJens Arnold <amiconn@rockbox.org>2008-11-12 18:20:25 +0000
commit9a0224fd2800facac398b09ba386973c8ad0cab5 (patch)
tree6ce334b1769f13f9a538d2d8ea5c8f546767eb36 /apps
parent60e16e8e7a3060790df3eeacbcdae14f240f689e (diff)
downloadrockbox-9a0224fd2800facac398b09ba386973c8ad0cab5.tar.gz
rockbox-9a0224fd2800facac398b09ba386973c8ad0cab5.zip
Fix comments.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19102 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/demac/libdemac/decoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/demac/libdemac/decoder.c b/apps/codecs/demac/libdemac/decoder.c
index f6c2451c0c..2b8dcd2cf3 100644
--- a/apps/codecs/demac/libdemac/decoder.c
+++ b/apps/codecs/demac/libdemac/decoder.c
@@ -33,13 +33,13 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
33 33
34/* Statically allocate the filter buffers */ 34/* Statically allocate the filter buffers */
35 35
36static int16_t filterbuf32[(32*3 + HISTORY_SIZE) * 2] /* 4480 bytes */ 36static int16_t filterbuf32[(32*3 + HISTORY_SIZE) * 2] /* 2432 bytes */
37 IBSS_ATTR __attribute__((aligned(16))); 37 IBSS_ATTR __attribute__((aligned(16)));
38static int16_t filterbuf256[(256*3 + HISTORY_SIZE) * 2] /* 5120 bytes */ 38static int16_t filterbuf256[(256*3 + HISTORY_SIZE) * 2] /* 5120 bytes */
39 IBSS_ATTR __attribute__((aligned(16))); 39 IBSS_ATTR __attribute__((aligned(16)));
40 40
41/* This is only needed for "insane" files, and no Rockbox targets can 41/* This is only needed for "insane" files, and no current Rockbox targets
42 hope to decode them in realtime anyway. */ 42 can hope to decode them in realtime, although the Gigabeat S comes close. */
43static int16_t filterbuf1280[(1280*3 + HISTORY_SIZE) * 2] /* 17408 bytes */ 43static int16_t filterbuf1280[(1280*3 + HISTORY_SIZE) * 2] /* 17408 bytes */
44 IBSS_ATTR_DEMAC_INSANEBUF __attribute__((aligned(16))); 44 IBSS_ATTR_DEMAC_INSANEBUF __attribute__((aligned(16)));
45 45