summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2014-06-30 21:35:34 +0200
committerPaul Kocialkowski <contact@paulk.fr>2014-06-30 21:36:23 +0200
commitba0d3b0faad6a1a7153a91399df774f2ab63dfde (patch)
treef7a26ffcd962bf6487d2d0a2aad254da0f14c472
parent5d8a08856bf242cce519dce060a7f44be5f5cc90 (diff)
downloaddevice_samsung_p3100-ba0d3b0faad6a1a7153a91399df774f2ab63dfde.zip
device_samsung_p3100-ba0d3b0faad6a1a7153a91399df774f2ab63dfde.tar.gz
device_samsung_p3100-ba0d3b0faad6a1a7153a91399df774f2ab63dfde.tar.bz2
audio: Properly handle masks and input devices distinction
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
-rwxr-xr-xaudio/audio_hw.c67
1 files changed, 39 insertions, 28 deletions
diff --git a/audio/audio_hw.c b/audio/audio_hw.c
index 3890f42..73ba949 100755
--- a/audio/audio_hw.c
+++ b/audio/audio_hw.c
@@ -321,30 +321,41 @@ void select_devices(struct espresso_audio_device *adev)
ALOGV("Changing input device %x => %x\n", adev->active_in_device, adev->in_device);
/* Turn on new devices first so we don't glitch due to powerdown... */
- for (i = 0; i < adev->num_dev_cfgs; i++)
- if ((adev->out_device & adev->dev_cfgs[i].mask) &&
- !(adev->active_out_device & adev->dev_cfgs[i].mask))
- set_route_by_array(adev->mixer, adev->dev_cfgs[i].on,
- adev->dev_cfgs[i].on_len);
-
- for (i = 0; i < adev->num_dev_cfgs; i++)
- if ((adev->in_device & adev->dev_cfgs[i].mask) &&
- !(adev->active_in_device & adev->dev_cfgs[i].mask))
- set_route_by_array(adev->mixer, adev->dev_cfgs[i].on,
- adev->dev_cfgs[i].on_len);
-
- /* ...then disable old ones. */
- for (i = 0; i < adev->num_dev_cfgs; i++)
- if (!(adev->out_device & adev->dev_cfgs[i].mask) &&
- (adev->active_out_device & adev->dev_cfgs[i].mask))
- set_route_by_array(adev->mixer, adev->dev_cfgs[i].off,
- adev->dev_cfgs[i].off_len);
-
- for (i = 0; i < adev->num_dev_cfgs; i++)
- if (!(adev->in_device & adev->dev_cfgs[i].mask) &&
- (adev->active_in_device & adev->dev_cfgs[i].mask))
- set_route_by_array(adev->mixer, adev->dev_cfgs[i].off,
- adev->dev_cfgs[i].off_len);
+ if (adev->out_device != adev->active_out_device && adev->out_device != 0) {
+ for (i = 0; i < adev->num_dev_cfgs; i++)
+ if (!(adev->dev_cfgs[i].mask & AUDIO_DEVICE_BIT_IN) &&
+ (adev->dev_cfgs[i].mask & adev->out_device) == adev->out_device) {
+ ALOGD("Turning on out 0x%x", adev->dev_cfgs[i].mask);
+ set_route_by_array(adev->mixer, adev->dev_cfgs[i].on, adev->dev_cfgs[i].on_len);
+ }
+ }
+
+ if (adev->in_device != adev->active_in_device && adev->in_device != 0) {
+ for (i = 0; i < adev->num_dev_cfgs; i++)
+ if ((adev->dev_cfgs[i].mask & AUDIO_DEVICE_BIT_IN) &&
+ (adev->dev_cfgs[i].mask & adev->in_device) == adev->in_device) {
+ ALOGD("Turning on in 0x%x", adev->dev_cfgs[i].mask);
+ set_route_by_array(adev->mixer, adev->dev_cfgs[i].on, adev->dev_cfgs[i].on_len);
+ }
+ }
+
+ if (adev->out_device != adev->active_out_device && adev->active_out_device != 0) {
+ for (i = 0; i < adev->num_dev_cfgs; i++)
+ if (!(adev->dev_cfgs[i].mask & AUDIO_DEVICE_BIT_IN) &&
+ (adev->dev_cfgs[i].mask & adev->active_out_device) == adev->active_out_device) {
+ ALOGD("Turning off out 0x%x", adev->dev_cfgs[i].mask);
+ set_route_by_array(adev->mixer, adev->dev_cfgs[i].off, adev->dev_cfgs[i].off_len);
+ }
+ }
+
+ if (adev->in_device != adev->active_in_device && adev->active_in_device != 0) {
+ for (i = 0; i < adev->num_dev_cfgs; i++)
+ if ((adev->dev_cfgs[i].mask & AUDIO_DEVICE_BIT_IN) &&
+ (adev->dev_cfgs[i].mask & adev->active_in_device) == adev->active_in_device) {
+ ALOGD("Turning off in 0x%x", adev->dev_cfgs[i].mask);
+ set_route_by_array(adev->mixer, adev->dev_cfgs[i].off, adev->dev_cfgs[i].off_len);
+ }
+ }
adev->active_out_device = adev->out_device;
adev->active_in_device = adev->in_device;
@@ -572,7 +583,7 @@ static void select_mode(struct espresso_audio_device *adev)
change, even if the device selection did not change. */
if (adev->out_device == AUDIO_DEVICE_OUT_SPEAKER) {
adev->out_device = AUDIO_DEVICE_OUT_EARPIECE;
- adev->in_device = AUDIO_DEVICE_IN_BUILTIN_MIC & ~AUDIO_DEVICE_BIT_IN;
+ adev->in_device = AUDIO_DEVICE_IN_BUILTIN_MIC;
} else
adev->out_device &= ~AUDIO_DEVICE_OUT_SPEAKER;
select_output_device(adev);
@@ -1590,7 +1601,7 @@ static int in_set_parameters(struct audio_stream *stream, const char *kvpairs)
ret = str_parms_get_str(parms, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value));
if (ret >= 0) {
- val = atoi(value) & ~AUDIO_DEVICE_BIT_IN;
+ val = atoi(value);
if ((in->device != val) && (val != 0)) {
in->device = val;
do_standby = true;
@@ -2750,7 +2761,7 @@ static int adev_open_input_stream(struct audio_hw_device *dev,
in->dev = ladev;
in->standby = 1;
- in->device = devices & ~AUDIO_DEVICE_BIT_IN;
+ in->device = devices;
*stream_in = &in->stream;
return 0;
@@ -3079,7 +3090,7 @@ static int adev_open(const hw_module_t* module, const char* name,
pthread_mutex_init(&adev->lock, NULL);
adev->mode = AUDIO_MODE_NORMAL;
adev->out_device = AUDIO_DEVICE_OUT_SPEAKER;
- adev->in_device = AUDIO_DEVICE_IN_BUILTIN_MIC & ~AUDIO_DEVICE_BIT_IN;
+ adev->in_device = AUDIO_DEVICE_IN_BUILTIN_MIC;
select_devices(adev);
for (i = 0; i < OUTPUT_TOTAL; i++) {