summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Hung <hunga@google.com>2023-03-27 16:39:31 -0700
committerAndy Hung <hunga@google.com>2023-04-20 20:15:04 -0700
commit4e7ab5d87798889a0db6b0f0b5084648fc468b7c (patch)
tree904f0e7d4527ad1769c2c852928a9bfaea5fcfc9
parentfe7158eceed56e0f9e5e5da6286f213380c9e32d (diff)
downloadlibhardware-4e7ab5d87798889a0db6b0f0b5084648fc468b7c.tar.gz
AudioParameter: Use for RemoteSubmix exiting
Test: compiles Bug: 279106598 Change-Id: I50263a48584bac120c65123cd5bed09f60582089
-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);