void CCECProcessor::HandlePhysicalAddressChanged(uint16_t iNewAddress) { m_libcec->AddLog(CEC_LOG_NOTICE, "physical address changed to %04x", iNewAddress); CECClientPtr client = GetPrimaryClient(); if (client) client->SetPhysicalAddress(iNewAddress); }
void CCECProcessor::HandlePhysicalAddressChanged(uint16_t iNewAddress) { if (!m_bStallCommunication) { CECClientPtr client = GetPrimaryClient(); if (!!client) client->SetPhysicalAddress(iNewAddress); } }