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

This commit is contained in:
Treehugger Robot
2023-02-14 02:58:34 +00:00
committed by Gerrit Code Review
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;