summaryrefslogtreecommitdiff
path: root/apps/dsp.h
diff options
context:
space:
mode:
authorDan Everton <dan@iocaine.org>2006-02-17 19:56:22 +0000
committerDan Everton <dan@iocaine.org>2006-02-17 19:56:22 +0000
commit5a1d77de83b7a6ba20e70d107ed1b5d6d0e3ce15 (patch)
treeafad30c0b67486a56640e78425972861436dc457 /apps/dsp.h
parenteaa7e22d98f28fd4fc650ae272cf15afcb2456f9 (diff)
downloadrockbox-5a1d77de83b7a6ba20e70d107ed1b5d6d0e3ce15.tar.gz
rockbox-5a1d77de83b7a6ba20e70d107ed1b5d6d0e3ce15.zip
Reduce CPU usage while changing EQ by only updating the coefficients of the band being modified.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8718 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/dsp.h')
-rw-r--r--apps/dsp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dsp.h b/apps/dsp.h
index 7e3acacc32..c20def03b7 100644
--- a/apps/dsp.h
+++ b/apps/dsp.h
@@ -54,7 +54,7 @@ int dsp_stereo_mode(void);
54bool dsp_configure(int setting, void *value); 54bool dsp_configure(int setting, void *value);
55void dsp_set_replaygain(bool always); 55void dsp_set_replaygain(bool always);
56void dsp_set_crossfeed(bool enable); 56void dsp_set_crossfeed(bool enable);
57void dsp_eq_update_data(bool enabled); 57void dsp_eq_update_data(bool enabled, int band);
58void sound_set_pitch(int r); 58void sound_set_pitch(int r);
59int sound_get_pitch(void); 59int sound_get_pitch(void);
60#endif 60#endif