From: Marten Richter Date: Sun, 24 Nov 2013 11:29:22 +0000 (+0100) Subject: Deactivate set power state, it seems to cause trouble X-Git-Url: https://git.vomp.tv/gitweb/?a=commitdiff_plain;h=45643d8ac49441930cb8fb94c59306dbbb1659c1;p=vompclient-marten.git Deactivate set power state, it seems to cause trouble --- diff --git a/remotelinux.cc b/remotelinux.cc index c0af036..dd54fa4 100644 --- a/remotelinux.cc +++ b/remotelinux.cc @@ -893,11 +893,11 @@ char* RemoteLinux::HCWDesc(unsigned long long hcw) void RemoteLinux::changePowerState(bool poweron){ if (cec_adap) { if (poweron) { - Log::getInstance()->log("Remote", Log::DEBUG, "CEC set active source" ); - cec_adap->SetActiveSource(); + //Log::getInstance()->log("Remote", Log::DEBUG, "CEC set active source" ); + //cec_adap->SetActiveSource(); } else { - Log::getInstance()->log("Remote", Log::DEBUG, "CEC set inactive view" ); - cec_adap->SetInactiveView(); + //Log::getInstance()->log("Remote", Log::DEBUG, "CEC set inactive view" ); + //cec_adap->SetInactiveView(); } } }