commit | f2d9196a6c6e4b02932679dced442b5152bdf5c4 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Tue Feb 14 02:58:34 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Feb 14 02:58:34 2023 +0000 |
tree | 7fc6652c8b4f8c399113ed4eca532c03abdcaf45 | |
parent | 80514eeee54afc72c85550b2a2cc578edae7a68f [diff] | |
parent | 0412eca50460e317d9e3ba073a028f274cf08c0c [diff] |
Merge "Add field `isStreamActive` in LeAudioConfiguration to indicate the stream status"
diff --git a/bluetooth/audio/aidl/aidl_api/android.hardware.bluetooth.audio/current/android/hardware/bluetooth/audio/LeAudioConfiguration.aidl b/bluetooth/audio/aidl/aidl_api/android.hardware.bluetooth.audio/current/android/hardware/bluetooth/audio/LeAudioConfiguration.aidl index edb6795..679655c 100644 --- a/bluetooth/audio/aidl/aidl_api/android.hardware.bluetooth.audio/current/android/hardware/bluetooth/audio/LeAudioConfiguration.aidl +++ b/bluetooth/audio/aidl/aidl_api/android.hardware.bluetooth.audio/current/android/hardware/bluetooth/audio/LeAudioConfiguration.aidl
@@ -42,5 +42,6 @@ parcelable StreamMap { char streamHandle; int audioChannelAllocation; + boolean isStreamActive; } }
diff --git a/bluetooth/audio/aidl/android/hardware/bluetooth/audio/LeAudioConfiguration.aidl b/bluetooth/audio/aidl/android/hardware/bluetooth/audio/LeAudioConfiguration.aidl index 0d1e3de..f22f309 100644 --- a/bluetooth/audio/aidl/android/hardware/bluetooth/audio/LeAudioConfiguration.aidl +++ b/bluetooth/audio/aidl/android/hardware/bluetooth/audio/LeAudioConfiguration.aidl
@@ -35,6 +35,10 @@ * Audio Location assigned number. */ int audioChannelAllocation; + /* + * The stream handle status + */ + boolean isStreamActive; } CodecType codecType; StreamMap[] streamMap;