diff options
author | 2022-07-12 21:48:32 +0000 | |
---|---|---|
committer | 2022-07-12 21:48:32 +0000 | |
commit | d74ff39014517a76ee35b4237efc863bc697a776 (patch) | |
tree | 463ca3e9223bb250a0071e833326e1df4415bc2f | |
parent | fd6c49b7fce9631c2422426a73c162176ff88843 (diff) | |
parent | d49c8dcd3a02a6ac7e18c7fa33320fe7daa2a967 (diff) |
Merge "HCI: Use _count_ for supported codecs" am: d49c8dcd3a
Original change: https://android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/2148634
Change-Id: I8523998d2af67fbdc94d9347ff8a19a033822176
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r-- | system/gd/hci/hci_packets.pdl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/gd/hci/hci_packets.pdl b/system/gd/hci/hci_packets.pdl index a9e8b95d76..56d1f16a23 100644 --- a/system/gd/hci/hci_packets.pdl +++ b/system/gd/hci/hci_packets.pdl @@ -2746,9 +2746,9 @@ packet ReadLocalSupportedCodecsV1 : Command (op_code = READ_LOCAL_SUPPORTED_CODE packet ReadLocalSupportedCodecsV1Complete : CommandComplete (command_op_code = READ_LOCAL_SUPPORTED_CODECS_V1) { status : ErrorCode, - _size_(supported_codecs) : 8, + _count_(supported_codecs) : 8, supported_codecs : 8[], - _size_(vendor_specific_codecs) : 8, + _count_(vendor_specific_codecs) : 8, vendor_specific_codecs : 32[], } @@ -2776,9 +2776,9 @@ struct VendorCodecConfiguration { packet ReadLocalSupportedCodecsV2Complete : CommandComplete (command_op_code = READ_LOCAL_SUPPORTED_CODECS_V2) { status : ErrorCode, - _size_(supported_codecs) : 8, + _count_(supported_codecs) : 8, supported_codecs : CodecConfiguration[], - _size_(vendor_specific_codecs) : 8, + _count_(vendor_specific_codecs) : 8, vendor_specific_codecs : VendorCodecConfiguration[], } |