fixed - LG didn't switch sources after the TV powered up
authorLars Op den Kamp <lars@opdenkamp.eu>
Thu, 7 Mar 2013 13:04:26 +0000 (14:04 +0100)
committerLars Op den Kamp <lars@opdenkamp.eu>
Thu, 7 Mar 2013 13:04:26 +0000 (14:04 +0100)
src/lib/implementations/SLCommandHandler.cpp

index e3062bf704cbc4564a59df2c58589fa983cb192a..ec12b0226f7279191c1d92c6c7472ce1e166dc35 100644 (file)
@@ -194,6 +194,10 @@ void CSLCommandHandler::HandleVendorCommand01(const cec_command &command)
 {
   m_processor->GetPrimaryDevice()->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON);
   TransmitVendorCommand0205(command.destination, command.initiator);
+
+  CCECBusDevice* dev = m_processor->GetDevice(command.destination);
+  if (dev && dev->IsHandledByLibCEC() && dev->IsActiveSource())
+    dev->TransmitActiveSource(false);
 }
 
 void CSLCommandHandler::TransmitVendorCommand0205(const cec_logical_address iSource, const cec_logical_address iDestination)
@@ -204,6 +208,7 @@ void CSLCommandHandler::TransmitVendorCommand0205(const cec_logical_address iSou
   response.PushBack(SL_COMMAND_TYPE_HDDRECORDER);
 
   Transmit(response, false, true);
+  SetSLInitialised();
 }
 
 void CSLCommandHandler::HandleVendorCommandPowerOn(const cec_command &command)