audio: fix control flow
1. Audio HAL should notified STHAL before sending
audio calibration of audio usecase to kernel.
2. Fix the condition logic of pcm_capture, the
stream.out and stream.in are union, so we can't
check if it's NULL.
Bug: 129111371
Test: manual
Change-Id: I39676410555f7f528c0705059c312a1250d489f0
Signed-off-by: Carter Hsu <carterhsu@google.com>
diff --git a/hal/audio_hw.c b/hal/audio_hw.c
index b15bde7..417d7cd 100644
--- a/hal/audio_hw.c
+++ b/hal/audio_hw.c
@@ -650,6 +650,8 @@
ALOGV("%s: enter: usecase(%d)", __func__, usecase->id);
+ audio_extn_sound_trigger_update_stream_status(usecase, ST_EVENT_STREAM_BUSY);
+
if (usecase->type == PCM_CAPTURE)
snd_device = usecase->in_snd_device;
else
@@ -664,7 +666,6 @@
// this also appends to mixer_path
platform_add_backend_name(adev->platform, mixer_path, snd_device);
- audio_extn_sound_trigger_update_stream_status(usecase, ST_EVENT_STREAM_BUSY);
ALOGD("%s: usecase(%d) apply and update mixer path: %s", __func__, usecase->id, mixer_path);
audio_route_apply_and_update_path(adev->audio_route, mixer_path);
@@ -1442,8 +1443,7 @@
static bool force_device_switch(struct audio_usecase *usecase)
{
- if (usecase->stream.out == NULL) {
- ALOGE("%s: stream.out is NULL", __func__);
+ if (usecase->type == PCM_CAPTURE || usecase->stream.out == NULL) {
return false;
}