summaryrefslogtreecommitdiff
path: root/firmware/sound.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2013-04-15 13:24:29 -0400
committerMichael Sevakis <jethead71@rockbox.org>2013-04-15 13:24:29 -0400
commitbbd991ad63805533ec4e2558061bbba48bfab1a9 (patch)
tree21986650ba75882d2100597591d4338dc6a14c10 /firmware/sound.c
parent0971f576341cf38c04d2d9735f0a385e62974108 (diff)
downloadrockbox-bbd991ad63805533ec4e2558061bbba48bfab1a9.tar.gz
rockbox-bbd991ad63805533ec4e2558061bbba48bfab1a9.zip
Fix some more errors and warnings from 0c7b787.
Change-Id: Ib67d0ab344e36964cadbcc982dc2afe35733770b
Diffstat (limited to 'firmware/sound.c')
-rw-r--r--firmware/sound.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/firmware/sound.c b/firmware/sound.c
index 4c390f4a5b..e6cfe57cf5 100644
--- a/firmware/sound.c
+++ b/firmware/sound.c
@@ -103,13 +103,6 @@ void sound_set(int setting, int value)
103 sound_set_val(value); 103 sound_set_val(value);
104} 104}
105 105
106/* Return the sound value scaled to centibels (tenth-decibels) */
107static int sound_value_to_cb(int setting, int value)
108{
109 long e = (1 - sound_numdecimals(setting)) << 16;
110 return fp_mul(value, fp_exp10(e, 16), 16);
111}
112
113#if !defined(AUDIOHW_HAVE_CLIPPING) 106#if !defined(AUDIOHW_HAVE_CLIPPING)
114/* 107/*
115 * The prescaler compensates for any kind of boosts, to prevent clipping. 108 * The prescaler compensates for any kind of boosts, to prevent clipping.
@@ -132,6 +125,13 @@ static int current_bass = 0; /* tenth dB */
132static int current_eq_band_gain[AUDIOHW_EQ_BAND_NUM]; /* tenth dB */ 125static int current_eq_band_gain[AUDIOHW_EQ_BAND_NUM]; /* tenth dB */
133#endif 126#endif
134 127
128/* Return the sound value scaled to centibels (tenth-decibels) */
129static int sound_value_to_cb(int setting, int value)
130{
131 long e = (1 - sound_numdecimals(setting)) << 16;
132 return fp_mul(value, fp_exp10(e, 16), 16);
133}
134
135static void set_prescaled_volume(void) 135static void set_prescaled_volume(void)
136{ 136{
137 int prescale = 0; 137 int prescale = 0;