Merge "AudioService: fix capture policy restoration" into sc-dev am: 0dee554595

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15178916

Change-Id: I52a4fc5da6094c2897ec87489b4cc69bc9e9585a
This commit is contained in:
TreeHugger Robot
2021-07-02 16:26:14 +00:00
committed by Automerger Merge Worker

View File

@@ -380,10 +380,12 @@ public final class PlaybackActivityMonitor
}
/**
* Return all cached capture policies.
* Return a copy of all cached capture policies.
*/
public HashMap<Integer, Integer> getAllAllowedCapturePolicies() {
return mAllowedCapturePolicies;
synchronized (mAllowedCapturePolicies) {
return (HashMap<Integer, Integer>) mAllowedCapturePolicies.clone();
}
}
private void updateAllowedCapturePolicy(AudioPlaybackConfiguration apc, int capturePolicy) {