bt: Update A2DP version to v1.4

This commit is contained in:
xiongweichao 2022-10-12 17:24:21 +08:00
parent 9bd1484386
commit e5794669de
2 changed files with 3 additions and 2 deletions

View File

@ -653,7 +653,7 @@ static void bta_av_api_register(tBTA_AV_DATA *p_data)
if (bta_av_cb.features & BTA_AV_FEAT_DELAY_RPT) { if (bta_av_cb.features & BTA_AV_FEAT_DELAY_RPT) {
cs.cfg.psc_mask |= AVDT_PSC_DELAY_RPT; cs.cfg.psc_mask |= AVDT_PSC_DELAY_RPT;
a2d_set_avdt_sdp_ver(AVDT_VERSION_SYNC); a2d_set_avdt_sdp_ver(AVDT_VERSION_SYNC);
a2d_set_a2dp_sdp_ver(A2D_VERSION_SYC); a2d_set_a2dp_sdp_ver(A2D_VERSION_1_4);
} }
/* keep the configuration in the stream control block */ /* keep the configuration in the stream control block */

View File

@ -30,7 +30,8 @@
** constants ** constants
*****************************************************************************/ *****************************************************************************/
#define A2D_VERSION 0x0102 #define A2D_VERSION 0x0102
#define A2D_VERSION_SYC 0x0103 #define A2D_VERSION_1_3 0x0103
#define A2D_VERSION_1_4 0x0104
/* Profile supported features */ /* Profile supported features */
#define A2D_SUPF_PLAYER 0x0001 #define A2D_SUPF_PLAYER 0x0001