summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2007-02-22 17:22:01 +0000
committerThom Johansen <thomj@rockbox.org>2007-02-22 17:22:01 +0000
commit10a22849e6564dfff953a41a94d14b18de97fd1e (patch)
tree5e02de3fdecd8e7afebe60ffbedc3d9f8923281a
parent46597c953963eb8333e5122896fdcb4d0ec9f93f (diff)
downloadrockbox-10a22849e6564dfff953a41a94d14b18de97fd1e.tar.gz
rockbox-10a22849e6564dfff953a41a94d14b18de97fd1e.zip
Fix comment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12454 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/eq_cf.S5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/eq_cf.S b/apps/eq_cf.S
index 75bfcafb3a..954b9d697d 100644
--- a/apps/eq_cf.S
+++ b/apps/eq_cf.S
@@ -48,9 +48,8 @@ eq_filter:
48 move.l (11*4+12, %sp), %d5 | number of samples 48 move.l (11*4+12, %sp), %d5 | number of samples
49 movem.l (%a5), %d0-%d3 | load filter history 49 movem.l (%a5), %d0-%d3 | load filter history
50 50
51 /* d0-r3 = history, d4 = number of channels, d5 = sample count, 51 /* d0-d3 = history, d4 = temp, d5 = sample count, d6 = lower shift amount,
52 * d6 = lower shift amount, d7 = upper shift amount, a0-a4 = coefs, 52 * d7 = upper shift amount, a0-a4 = coefs, a5 = history pointer, a6 = x[]
53 * a5 = history pointer, a6 = x[]
54 */ 53 */
55.loop: 54.loop:
56 /* Direct form 1 filtering code. We assume DSP has put EMAC in frac mode. 55 /* Direct form 1 filtering code. We assume DSP has put EMAC in frac mode.