summaryrefslogtreecommitdiff
path: root/monitor/packet.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2022-04-26 16:02:54 -0700
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2022-04-26 16:02:54 -0700
commitf65a9c9d21f69942024ea5b9f581533d2788eb2e (patch)
tree6c3538042230ebd3ee1fb38fc594d460a2ba0131 /monitor/packet.c
parent80cd36cd2a0c6eb7cc3134a00817439898e4bb7c (diff)
downloadbluez-f65a9c9d21f69942024ea5b9f581533d2788eb2e.tar.gz
btmon: Fix not decoding LC3 id
This enablind decoding LC3 codec id (0x06).
Diffstat (limited to 'monitor/packet.c')
-rw-r--r--monitor/packet.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/monitor/packet.c b/monitor/packet.c
index 9d7677bb1..d409e4e63 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
@@ -1337,6 +1337,9 @@ static void print_codec_id(const char *label, uint8_t codec)
case 0x05:
str = "mSBC";
break;
+ case 0x06:
+ str = "LC3";
+ break;
case 0xff:
str = "Vendor specific";
break;