commit | 9ab895d45ce62ffbff22360993734abd56013e2b | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Tue Feb 14 04:32:05 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Feb 14 04:32:05 2023 +0000 |
tree | bc1820b6669c21a24abb2446fbbf00d0d9108671 | |
parent | e257e8f389bf6251ec8689afe6e1b2dd0af1eb18 [diff] | |
parent | 5824791ef3a30f015ea1adbea56b7d006ee17307 [diff] |
Merge "Add field `isStreamActive` in LeAudioConfiguration to indicate the stream status" am: f2d9196a6c am: 5824791ef3 Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2385795 Change-Id: I4794465fe3974d1c5e54141234903e29ff278898 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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;