Merge "Add field isStreamActive in LeAudioConfiguration to indicate the stream status" am: f2d9196a6c

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2385795

Change-Id: I22da7ce36752c4f370f342bc542bcc8a3b16c35a
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot 2023-02-14 03:45:22 +00:00 committed by Automerger Merge Worker
commit 5824791ef3
2 changed files with 5 additions and 0 deletions

View file

@ -42,5 +42,6 @@ parcelable LeAudioConfiguration {
parcelable StreamMap {
char streamHandle;
int audioChannelAllocation;
boolean isStreamActive;
}
}

View file

@ -35,6 +35,10 @@ parcelable LeAudioConfiguration {
* Audio Location assigned number.
*/
int audioChannelAllocation;
/*
* The stream handle status
*/
boolean isStreamActive;
}
CodecType codecType;
StreamMap[] streamMap;