| 925 | } |
| 926 | |
| 927 | bool CCECCommandHandler::TransmitImageViewOn(const cec_logical_address iInitiator, const cec_logical_address iDestination) |
| 928 | { |
| 929 | cec_command command; |
| 930 | cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_IMAGE_VIEW_ON); |
| 931 | |
| 932 | if (Transmit(command, false, false)) |
| 933 | { |
| 934 | CCECBusDevice* dest = m_processor->GetDevice(iDestination); |
| 935 | if (dest && dest->GetCurrentPowerStatus() != CEC_POWER_STATUS_ON) |
| 936 | dest->SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON); |
| 937 | return true; |
| 938 | } |
| 939 | return false; |
| 940 | } |
| 941 | |
| 942 | bool CCECCommandHandler::TransmitStandby(const cec_logical_address iInitiator, const cec_logical_address iDestination) |
| 943 | { |
no test coverage detected