bHandled = false;
break;
}
+
+ m_busDevice->GetProcessor()->AddCommand(command);
}
else if (command.destination == CECDEVICE_BROADCAST)
{
bHandled = false;
break;
}
+
+ m_busDevice->GetProcessor()->AddCommand(command);
}
else
{
void CCECCommandHandler::UnhandledCommand(const cec_command &command)
{
- m_busDevice->GetProcessor()->AddCommand(command);
+ CStdString strLog;
+ strLog.Format("unhandled command with opcode %02x from address %d", command.opcode, command.initiator);
+ m_busDevice->AddLog(CEC_LOG_DEBUG, strLog);
}
CCECBusDevice *CCECCommandHandler::GetDevice(cec_logical_address iLogicalAddress) const