summaryrefslogtreecommitdiff
path: root/firmware/target/arm
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm')
-rw-r--r--firmware/target/arm/imx233/audiohw-imx233.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/firmware/target/arm/imx233/audiohw-imx233.c b/firmware/target/arm/imx233/audiohw-imx233.c
index e5bb093b2f..769216af87 100644
--- a/firmware/target/arm/imx233/audiohw-imx233.c
+++ b/firmware/target/arm/imx233/audiohw-imx233.c
@@ -27,14 +27,13 @@
27const struct sound_settings_info audiohw_settings[] = 27const struct sound_settings_info audiohw_settings[] =
28{ 28{
29 [SOUND_VOLUME] = {"dB", 0, 1, -74, 6, -25}, 29 [SOUND_VOLUME] = {"dB", 0, 1, -74, 6, -25},
30 [SOUND_BASS] = {"dB", 0, 1, -24, 24, 0},
31 [SOUND_TREBLE] = {"dB", 0, 1, -24, 24, 0},
32 [SOUND_BALANCE] = {"%", 0, 1,-100, 100, 0}, 30 [SOUND_BALANCE] = {"%", 0, 1,-100, 100, 0},
33 [SOUND_CHANNELS] = {"", 0, 1, 0, 5, 0}, 31 [SOUND_CHANNELS] = {"", 0, 1, 0, 5, 0},
34 [SOUND_STEREO_WIDTH] = {"%", 0, 5, 0, 250, 100}, 32 [SOUND_STEREO_WIDTH] = {"%", 0, 5, 0, 250, 100},
35 [SOUND_LEFT_GAIN] = {"dB", 1, 1, 0, 31, 23}, 33 [SOUND_LEFT_GAIN] = {"dB", 1, 1, 0, 31, 23},
36 [SOUND_RIGHT_GAIN] = {"dB", 1, 1, 0, 31, 23}, 34 [SOUND_RIGHT_GAIN] = {"dB", 1, 1, 0, 31, 23},
37 [SOUND_MIC_GAIN] = {"dB", 1, 1, 0, 1, 0}, 35 [SOUND_MIC_GAIN] = {"dB", 1, 1, 0, 1, 0},
36 [SOUND_DEPTH_3D] = {"%", 0, 1, 0, 15, 0},
38}; 37};
39 38
40void audiohw_init(void) 39void audiohw_init(void)
@@ -59,3 +58,8 @@ void audiohw_set_recvol(int left, int right, int type)
59 (void) right; 58 (void) right;
60 (void) type; 59 (void) type;
61} 60}
61
62void audiohw_set_depth_3d(int val)
63{
64 (void) val;
65}