forked from len0rd/rockbox
Fix comments.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19102 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
60e16e8e7a
commit
9a0224fd28
1 changed files with 3 additions and 3 deletions
|
|
@ -33,13 +33,13 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
|
|||
|
||||
/* Statically allocate the filter buffers */
|
||||
|
||||
static int16_t filterbuf32[(32*3 + HISTORY_SIZE) * 2] /* 4480 bytes */
|
||||
static int16_t filterbuf32[(32*3 + HISTORY_SIZE) * 2] /* 2432 bytes */
|
||||
IBSS_ATTR __attribute__((aligned(16)));
|
||||
static int16_t filterbuf256[(256*3 + HISTORY_SIZE) * 2] /* 5120 bytes */
|
||||
IBSS_ATTR __attribute__((aligned(16)));
|
||||
|
||||
/* This is only needed for "insane" files, and no Rockbox targets can
|
||||
hope to decode them in realtime anyway. */
|
||||
/* This is only needed for "insane" files, and no current Rockbox targets
|
||||
can hope to decode them in realtime, although the Gigabeat S comes close. */
|
||||
static int16_t filterbuf1280[(1280*3 + HISTORY_SIZE) * 2] /* 17408 bytes */
|
||||
IBSS_ATTR_DEMAC_INSANEBUF __attribute__((aligned(16)));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue