| 554 | } |
| 555 | |
| 556 | void CCECProcessor::ProcessCommand(const cec_command &command) |
| 557 | { |
| 558 | // log the command |
| 559 | m_libcec->AddLog(CEC_LOG_TRAFFIC, ToString(command).c_str()); |
| 560 | |
| 561 | // find the initiator |
| 562 | CCECBusDevice *device = m_busDevices->At(command.initiator); |
| 563 | |
| 564 | if (device) |
| 565 | device->HandleCommand(command); |
| 566 | } |
| 567 | |
| 568 | bool CCECProcessor::IsPresentDevice(cec_logical_address address) |
| 569 | { |
nothing calls this directly
no test coverage detected