summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorSimon Wilson <simonwilson@google.com>2011-09-18 12:56:43 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-09-18 12:56:43 -0700
commit855a3e41227e3df712d942d172895d51efe0e7bb (patch)
treeb84640785f068ccc1bbb11746256405aaaf36292 /audio
parent3f733810860a89b310ef881a05f10b724af70293 (diff)
parente1ba1b93ebcc5a6b499ad519d4dfd5bdf7bd7465 (diff)
downloaddevice_samsung_tuna-855a3e41227e3df712d942d172895d51efe0e7bb.zip
device_samsung_tuna-855a3e41227e3df712d942d172895d51efe0e7bb.tar.gz
device_samsung_tuna-855a3e41227e3df712d942d172895d51efe0e7bb.tar.bz2
Merge "audio: defer ril acoustic call until after modem PCM is open" into ics-factoryrom
Diffstat (limited to 'audio')
-rw-r--r--audio/audio_hw.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/audio/audio_hw.c b/audio/audio_hw.c
index a605387..fe0a187 100644
--- a/audio/audio_hw.c
+++ b/audio/audio_hw.c
@@ -478,6 +478,7 @@ static void select_input_device(struct tuna_audio_device *adev);
static int adev_set_voice_volume(struct audio_hw_device *dev, float volume);
static int do_input_standby(struct tuna_stream_in *in);
static int do_output_standby(struct tuna_stream_out *out);
+static void set_incall_device(struct tuna_audio_device *adev);
/* Returns true on devices that must use sidetone capture,
* false otherwise. */
@@ -551,6 +552,8 @@ static int start_call(struct tuna_audio_device *adev)
pcm_start(adev->pcm_modem_dl);
pcm_start(adev->pcm_modem_ul);
+ set_incall_device(adev);
+
return 0;
err_open_dl:
@@ -807,8 +810,6 @@ static void select_output_device(struct tuna_audio_device *adev)
/* enable sidetone mixer capture if needed */
sidetone_capture_on = earpiece_on && adev->sidetone_capture;
}
-
- set_incall_device(adev);
}
mixer_ctl_set_value(adev->mixer_ctls.sidetone_capture, 0, sidetone_capture_on);