From cb34136d1595a329cb3a9549c9848a5fff8e555d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pali=20Roh=C3=A1r?= Date: Sun, 23 Dec 2018 11:40:15 +0100 Subject: [PATCH] a2dp-codecs: Fix codec id for ATRAC According to Bluetooth Assigned Numbers for Audio/Video ATRAC has codec id 0x04. See: https://www.bluetooth.com/specifications/assigned-numbers/audio-video Change-Id: Ia45a0ec8a415f73f6180d3b684ee39c0c70a5e57 Signed-off-by: himanshu --- profiles/audio/a2dp-codecs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/audio/a2dp-codecs.h b/profiles/audio/a2dp-codecs.h index 2054919..2595990 100755 --- a/profiles/audio/a2dp-codecs.h +++ b/profiles/audio/a2dp-codecs.h @@ -25,7 +25,7 @@ #define A2DP_CODEC_SBC 0x00 #define A2DP_CODEC_MPEG12 0x01 #define A2DP_CODEC_MPEG24 0x02 -#define A2DP_CODEC_ATRAC 0x03 +#define A2DP_CODEC_ATRAC 0x04 #define A2DP_CODEC_VENDOR 0xFF #define SBC_SAMPLING_FREQ_16000 (1 << 3) -- 2.7.4