| 297 | } |
| 298 | |
| 299 | int CCECCommandHandler::HandleFeatureAbort(const cec_command &command) |
| 300 | { |
| 301 | if (command.parameters.size == 2 && |
| 302 | (command.parameters[1] == CEC_ABORT_REASON_UNRECOGNIZED_OPCODE || |
| 303 | command.parameters[1] == CEC_ABORT_REASON_REFUSED)) |
| 304 | m_processor->GetDevice(command.initiator)->SetUnsupportedFeature((cec_opcode)command.parameters[0]); |
| 305 | return COMMAND_HANDLED; |
| 306 | } |
| 307 | |
| 308 | int CCECCommandHandler::HandleGetCecVersion(const cec_command &command) |
| 309 | { |
nothing calls this directly
no test coverage detected