summaryrefslogtreecommitdiff
path: root/apps/dsp.h
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2006-10-27 20:41:33 +0000
committerThom Johansen <thomj@rockbox.org>2006-10-27 20:41:33 +0000
commit354770088e87c3aa8720f462fe3ac8368d7de5b5 (patch)
tree58b2e4e05edca22d042e441b041174e802daf80c /apps/dsp.h
parent57cc28d6db6dafe2138916550aad5a9306e80f42 (diff)
downloadrockbox-354770088e87c3aa8720f462fe3ac8368d7de5b5.tar.gz
rockbox-354770088e87c3aa8720f462fe3ac8368d7de5b5.zip
Re-enable the currently unused and broken dithering and noise shaping code already in Rockbox, and make it a user option instead of a codec-controlled option. The majority of people probably will not even hear any difference with this enabled, but feedback is welcome. Save your settings!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11368 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 4221d9e350..965eb28c5f 100644
--- a/apps/dsp.h
+++ b/apps/dsp.h
@@ -39,7 +39,6 @@ enum {
39 DSP_SET_SAMPLE_DEPTH, 39 DSP_SET_SAMPLE_DEPTH,
40 DSP_SET_STEREO_MODE, 40 DSP_SET_STEREO_MODE,
41 DSP_RESET, 41 DSP_RESET,
42 DSP_DITHER,
43 DSP_SET_TRACK_GAIN, 42 DSP_SET_TRACK_GAIN,
44 DSP_SET_ALBUM_GAIN, 43 DSP_SET_ALBUM_GAIN,
45 DSP_SET_TRACK_PEAK, 44 DSP_SET_TRACK_PEAK,
@@ -63,5 +62,6 @@ void sound_set_pitch(int r);
63int sound_get_pitch(void); 62int sound_get_pitch(void);
64void channels_set(int value); 63void channels_set(int value);
65void stereo_width_set(int value); 64void stereo_width_set(int value);
65void dsp_dither_enable(bool enable);
66 66
67#endif 67#endif