summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Hung <hunga@google.com>2023-04-25 16:36:42 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-04-25 16:36:42 +0000
commitb84735843d1681b165d8a71a95945d293128f7ef (patch)
tree904f0e7d4527ad1769c2c852928a9bfaea5fcfc9
parent90c5765579f3e5cecea419417216b77399c97ced (diff)
parent4e7ab5d87798889a0db6b0f0b5084648fc468b7c (diff)
downloadlibhardware-b84735843d1681b165d8a71a95945d293128f7ef.tar.gz
AudioParameter: Use for RemoteSubmix exiting am: 4e7ab5d877
Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/libhardware/+/22780136 Change-Id: I6545a36db6e83fb63467613a6c8fa6db9c89edee Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--modules/audio_remote_submix/audio_hw.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/audio_remote_submix/audio_hw.cpp b/modules/audio_remote_submix/audio_hw.cpp
index f96854b5..5019ae5b 100644
--- a/modules/audio_remote_submix/audio_hw.cpp
+++ b/modules/audio_remote_submix/audio_hw.cpp
@@ -679,7 +679,8 @@ static int out_set_parameters(struct audio_stream *stream, const char *kvpairs)
// FIXME this is using hard-coded strings but in the future, this functionality will be
// converted to use audio HAL extensions required to support tunneling
- if ((parms.getInt(String8("exiting"), exiting) == NO_ERROR) && (exiting > 0)) {
+ if ((parms.getInt(String8(AUDIO_PARAMETER_KEY_EXITING), exiting) == NO_ERROR)
+ && (exiting > 0)) {
struct submix_audio_device * const rsxadev =
audio_stream_get_submix_stream_out(stream)->dev;
pthread_mutex_lock(&rsxadev->lock);