diff options
author | 2022-07-12 21:25:35 +0000 | |
---|---|---|
committer | 2022-07-12 21:25:35 +0000 | |
commit | d49c8dcd3a02a6ac7e18c7fa33320fe7daa2a967 (patch) | |
tree | 4095bbd98e926c13bc871a2e971ca2ad964c477e | |
parent | 67ef427262df59c3fb579377259caba828be417f (diff) | |
parent | 670540e7ce162623289522aec6bbba876a393626 (diff) |
Merge "HCI: Use _count_ for supported codecs"
-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[], } |