| 1204 | } |
| 1205 | |
| 1206 | bool CCECCommandHandler::TransmitKeyRelease(const cec_logical_address iInitiator, const cec_logical_address iDestination, bool bWait /* = true */) |
| 1207 | { |
| 1208 | cec_command command; |
| 1209 | cec_command::Format(command, iInitiator, iDestination, CEC_OPCODE_USER_CONTROL_RELEASE); |
| 1210 | |
| 1211 | return Transmit(command, !bWait, false); |
| 1212 | } |
| 1213 | |
| 1214 | bool CCECCommandHandler::TransmitSystemAudioModeRequest(const cec_logical_address iInitiator, uint16_t iPhysicalAddress) |
| 1215 | { |
nothing calls this directly
no outgoing calls
no test coverage detected