summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorSimon Wilson <simonwilson@google.com>2011-10-06 17:37:42 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2011-10-06 17:37:42 -0700
commit23d17844b14e26bb3e1163119da5fa7b44cc8a42 (patch)
tree491c1190fcda549b6d0aa436769d4d143b70770e /audio
parentb60355617f8fbe23c1459e8831b9035c4609c361 (diff)
parentfcb204e9329241047ed7564c4808440f62a5c580 (diff)
downloaddevice_samsung_tuna-23d17844b14e26bb3e1163119da5fa7b44cc8a42.zip
device_samsung_tuna-23d17844b14e26bb3e1163119da5fa7b44cc8a42.tar.gz
device_samsung_tuna-23d17844b14e26bb3e1163119da5fa7b44cc8a42.tar.bz2
am fcb204e9: Merge "Fix issue 5415809: increase HP volume for TTY." into ics-factoryrom
* commit 'fcb204e9329241047ed7564c4808440f62a5c580': Fix issue 5415809: increase HP volume for TTY.
Diffstat (limited to 'audio')
-rwxr-xr-xaudio/audio_hw.c27
1 files changed, 18 insertions, 9 deletions
diff --git a/audio/audio_hw.c b/audio/audio_hw.c
index 77b3dec..e70f767 100755
--- a/audio/audio_hw.c
+++ b/audio/audio_hw.c
@@ -162,6 +162,7 @@
#define HEADSET_VOLUME_EUROPE -12
#define HEADPHONE_VOLUME_DEFAULT -6
#define HEADPHONE_VOLUME_EUROPE -6 /* allow louder output for headphones */
+#define HEADPHONE_VOLUME_TTY -2
#define EARPIECE_VOLUME_TORO 2
#define EARPIECE_VOLUME_MAGURO 6
@@ -716,22 +717,28 @@ static void set_input_volumes(struct tuna_audio_device *adev, int main_mic_on,
mixer_ctl_set_value(adev->mixer_ctls.amic_ul_volume, channel, volume);
}
-static void set_output_volumes(struct tuna_audio_device *adev)
+static void set_output_volumes(struct tuna_audio_device *adev, bool tty_volume)
{
unsigned int channel;
int speaker_volume;
int headset_volume;
int earpiece_volume;
+ if (tty_volume)
+ headset_volume = HEADPHONE_VOLUME_TTY;
+ else if (adev->devices & AUDIO_DEVICE_OUT_WIRED_HEADSET) {
+ if (adev->headphone_volume_europe)
+ headset_volume = HEADSET_VOLUME_EUROPE;
+ else
+ headset_volume = HEADSET_VOLUME_DEFAULT;
+ } else {
+ if (adev->headphone_volume_europe)
+ headset_volume = HEADPHONE_VOLUME_EUROPE;
+ else
+ headset_volume = HEADPHONE_VOLUME_DEFAULT;
+ }
speaker_volume = adev->mode == AUDIO_MODE_IN_CALL ? VOICE_CALL_SPEAKER_VOLUME :
NORMAL_SPEAKER_VOLUME;
- headset_volume = adev->devices & AUDIO_DEVICE_OUT_WIRED_HEADSET ?
- (adev->headphone_volume_europe ?
- HEADSET_VOLUME_EUROPE :
- HEADSET_VOLUME_DEFAULT) :
- (adev->headphone_volume_europe ?
- HEADPHONE_VOLUME_EUROPE :
- HEADPHONE_VOLUME_DEFAULT);
earpiece_volume = adev->earpiece_volume_toro ? EARPIECE_VOLUME_TORO :
EARPIECE_VOLUME_MAGURO;
@@ -814,6 +821,7 @@ static void select_output_device(struct tuna_audio_device *adev)
int bt_on;
int dl1_on;
int sidetone_capture_on = 0;
+ bool tty_volume = false;
headset_on = adev->devices & AUDIO_DEVICE_OUT_WIRED_HEADSET;
headphone_on = adev->devices & AUDIO_DEVICE_OUT_WIRED_HEADPHONE;
@@ -831,6 +839,7 @@ static void select_output_device(struct tuna_audio_device *adev)
headset_on = 0;
speaker_on = 0;
earpiece_on = 0;
+ tty_volume = true;
break;
case TTY_MODE_HCO:
/* rx path to device speaker */
@@ -868,7 +877,7 @@ static void select_output_device(struct tuna_audio_device *adev)
set_route_by_array(adev->mixer, hs_output, headset_on | headphone_on);
set_route_by_array(adev->mixer, hf_output, speaker_on);
- set_output_volumes(adev);
+ set_output_volumes(adev, tty_volume);
/* Special case: select input path if in a call, otherwise
in_set_parameters is used to update the input route