btmon: Fix not decoding LC3 id
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Tue, 26 Apr 2022 23:02:54 +0000 (16:02 -0700)
committerAyush Garg <ayush.garg@samsung.com>
Mon, 15 May 2023 09:25:54 +0000 (14:55 +0530)
This enablind decoding LC3 codec id (0x06).

Signed-off-by: Manika Shrivastava <manika.sh@samsung.com>
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
monitor/packet.c

index 61a5df3..3b23642 100755 (executable)
@@ -1336,6 +1336,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;