diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-03-12 20:09:55 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-03-12 20:09:55 +0000 |
| commit | 24c0474472015655c7b40bcdfc1537baf1642927 (patch) | |
| tree | 9fb5e6a3da8cc874e5acd0674a6528e6189df20b /apps/codecs | |
| parent | 76e8701626099e751c5524086cd1830ba0093106 (diff) | |
| download | rockbox-24c0474472015655c7b40bcdfc1537baf1642927.zip rockbox-24c0474472015655c7b40bcdfc1537baf1642927.tar.gz rockbox-24c0474472015655c7b40bcdfc1537baf1642927.tar.bz2 rockbox-24c0474472015655c7b40bcdfc1537baf1642927.tar.xz | |
Fix comment on interpolation macro.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25136 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/libatrac/atrac3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libatrac/atrac3.c b/apps/codecs/libatrac/atrac3.c index 5c0bc82..c746886 100644 --- a/apps/codecs/libatrac/atrac3.c +++ b/apps/codecs/libatrac/atrac3.c @@ -789,9 +789,9 @@ static int addTonalComponents (int32_t *pSpectrum, int numComponents, tonal_comp /** * Linear equidistant interpolation between two points x and y. 7 interpolation - * points can be calculated. Result is scaled by <<16. - * Result for s=0 is x*ONE_16 - * Result for s=8 is y*ONE_16 + * points can be calculated. + * Result for s=0 is x + * Result for s=8 is y * * @param x first input point * @param y second input point |