commit | 991405a016ffedb37c00cccb66060cdaf2351189 | [log] [tgz] |
---|---|---|
author | Andy Hung <hunga@google.com> | Fri Nov 18 19:40:00 2022 -0800 |
committer | Andy Hung <hunga@google.com> | Tue Dec 27 19:41:41 2022 -0800 |
tree | dd84aedee95fc32b2e3728059cba87c145458be4 | |
parent | 5d8618db1211d8f59376a59d53d4f07c599bfa01 [diff] [blame] |
Spatializer: Log latency mode change from callback Test: compiles - not seeing this called during playback or connection Bug: 259477444 Merged-In: I521894ef874560b936ef79735431109055aa85c5 Change-Id: I521894ef874560b936ef79735431109055aa85c5
diff --git a/services/audioflinger/Threads.cpp b/services/audioflinger/Threads.cpp index 96d3229..914251b 100644 --- a/services/audioflinger/Threads.cpp +++ b/services/audioflinger/Threads.cpp
@@ -7479,6 +7479,8 @@ std::vector<audio_latency_mode_t> modes) { Mutex::Autolock _l(mLock); if (modes != mSupportedLatencyModes) { + ALOGD("%s: thread(%d) supported latency modes: %s", + __func__, mId, toString(modes).c_str()); mSupportedLatencyModes.swap(modes); sendHalLatencyModesChangedEvent_l(); }