diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-11-30 11:53:52 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-11-30 11:53:52 +0000 |
| commit | b153133682fe33cdd38c15cb500709a341288a68 (patch) | |
| tree | 9be65bf22e807aec71be5d8a9374dcad5c6248c5 | |
| parent | fbb80b00dbc231b8209c639bc6c2a17f9db81980 (diff) | |
| download | rockbox-b153133682fe33cdd38c15cb500709a341288a68.zip rockbox-b153133682fe33cdd38c15cb500709a341288a68.tar.gz rockbox-b153133682fe33cdd38c15cb500709a341288a68.tar.bz2 rockbox-b153133682fe33cdd38c15cb500709a341288a68.tar.xz | |
Remove extraneous semicolons, and fix a comment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19267 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/codecs/ape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/ape.c b/apps/codecs/ape.c index 97f9ee6..0419a6f 100644 --- a/apps/codecs/ape.c +++ b/apps/codecs/ape.c @@ -45,7 +45,7 @@ static uint32_t seektablebuf[MAX_SEEKPOINTS]; #define INPUT_CHUNKSIZE (32*1024) -/* 4608*4 = 18432 bytes per channel */ +/* 1024*4 = 4096 bytes per channel */ static int32_t decoded0[BLOCKS_PER_LOOP] IBSS_ATTR; static int32_t decoded1[BLOCKS_PER_LOOP] IBSS_ATTR; |