Loading system/bta/dm/bta_dm_api.cc +6 −2 Original line number Diff line number Diff line Loading @@ -544,8 +544,12 @@ bool BTA_DmCheckLeAudioCapable(const RawAddress& address) { inq_ent = get_btm_client_interface().db.BTM_InqDbNext(inq_ent)) { if (inq_ent->results.remote_bd_addr != address) continue; if (inq_ent->results.ble_ad_is_le_audio_capable) { LOG_INFO("Device is LE Audio capable based on AD content"); return inq_ent->results.ble_ad_is_le_audio_capable; return true; } return false; } return false; } Loading
system/bta/dm/bta_dm_api.cc +6 −2 Original line number Diff line number Diff line Loading @@ -544,8 +544,12 @@ bool BTA_DmCheckLeAudioCapable(const RawAddress& address) { inq_ent = get_btm_client_interface().db.BTM_InqDbNext(inq_ent)) { if (inq_ent->results.remote_bd_addr != address) continue; if (inq_ent->results.ble_ad_is_le_audio_capable) { LOG_INFO("Device is LE Audio capable based on AD content"); return inq_ent->results.ble_ad_is_le_audio_capable; return true; } return false; } return false; }