X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fdevices%2FCECBusDevice.cpp;h=0678ce393ef8dfe3a1825e8904940af6a9de6b12;hb=d4052f0befbe5b7f1867611c66a5fa5ee4ea7fbf;hp=05a8cdb4e5dd13b680288930d044ef9f1b97dac0;hpb=0500da96dfbf6f09aabb944b4127b5d2ea1b076f;p=deb_libcec.git diff --git a/src/lib/devices/CECBusDevice.cpp b/src/lib/devices/CECBusDevice.cpp index 05a8cdb..0678ce3 100644 --- a/src/lib/devices/CECBusDevice.cpp +++ b/src/lib/devices/CECBusDevice.cpp @@ -117,10 +117,13 @@ void CCECBusDevice::SetCecVersion(const cec_version newVersion) void CCECBusDevice::SetPowerStatus(const cec_power_status powerStatus) { - CStdString strLog; - strLog.Format("device %d power status changed from %2x to %2x", m_iLogicalAddress, m_powerStatus, powerStatus); - m_processor->AddLog(CEC_LOG_DEBUG, strLog); - m_powerStatus = powerStatus; + if (m_powerStatus != powerStatus) + { + CStdString strLog; + strLog.Format("device %d power status changed from %2x to %2x", m_iLogicalAddress, m_powerStatus, powerStatus); + m_processor->AddLog(CEC_LOG_DEBUG, strLog); + m_powerStatus = powerStatus; + } } void CCECBusDevice::SetVendorId(const cec_datapacket &data) @@ -209,8 +212,8 @@ void CCECBusDevice::PollVendorId(void) cec_command command; cec_command::format(command, GetMyLogicalAddress(), GetLogicalAddress(), CEC_OPCODE_GIVE_DEVICE_VENDOR_ID); - command.ack_timeout = 0; - m_processor->Transmit(command); + if (m_processor->Transmit(command)) + m_condition.Wait(&m_mutex, 1000); } } @@ -386,9 +389,9 @@ bool CCECBusDevice::BroadcastActiveSource(void) return m_processor->Transmit(command); } -cec_version CCECBusDevice::GetCecVersion(void) +cec_version CCECBusDevice::GetCecVersion(bool bRefresh /* = true */) { - if (m_cecVersion == CEC_VERSION_UNKNOWN) + if (bRefresh || m_cecVersion == CEC_VERSION_UNKNOWN) { AddLog(CEC_LOG_NOTICE, "<< requesting CEC version"); cec_command command; @@ -401,9 +404,9 @@ cec_version CCECBusDevice::GetCecVersion(void) return m_cecVersion; } -cec_menu_language &CCECBusDevice::GetMenuLanguage(void) +cec_menu_language &CCECBusDevice::GetMenuLanguage(bool bRefresh /* = true */) { - if (!strcmp(m_menuLanguage.language, "???")) + if (bRefresh || !strcmp(m_menuLanguage.language, "???")) { AddLog(CEC_LOG_NOTICE, "<< requesting menu language"); cec_command command; @@ -416,9 +419,9 @@ cec_menu_language &CCECBusDevice::GetMenuLanguage(void) return m_menuLanguage; } -cec_power_status CCECBusDevice::GetPowerStatus(void) +cec_power_status CCECBusDevice::GetPowerStatus(bool bRefresh /* = true */) { - if (m_powerStatus == CEC_POWER_STATUS_UNKNOWN) + if (bRefresh || m_powerStatus == CEC_POWER_STATUS_UNKNOWN) { AddLog(CEC_LOG_NOTICE, "<< requesting power status"); cec_command command;