commit | 0412eca50460e317d9e3ba073a028f274cf08c0c | [log] [tgz] |
---|---|---|
author | Patty Huang <plhuang@google.com> | Thu Jan 12 16:31:20 2023 +0800 |
committer | Patty Huang <plhuang@google.com> | Thu Jan 12 21:54:49 2023 +0800 |
tree | 8d6f93f84995f517dc305eea4e5ef3be74d145c1 | |
parent | ef0ed10e8f4872a341d07e6082cf51bdb211d3e6 [diff] |
Add field `isStreamActive` in LeAudioConfiguration to indicate the stream status Tag: #feature Bug: 249614160 Test: m android.hardware.bluetooth.audio-update-api Change-Id: I7930d30a1bc2f2862489f9e70e45926589996ce7
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;