| 283 | } |
| 284 | |
| 285 | int CCECCommandHandler::HandleDeviceVendorId(const cec_command &command) |
| 286 | { |
| 287 | SetVendorId(command); |
| 288 | |
| 289 | if (command.initiator == CECDEVICE_TV) |
| 290 | { |
| 291 | CCECBusDevice* primary = m_processor->GetPrimaryDevice(); |
| 292 | if (primary) |
| 293 | primary->TransmitVendorID(CECDEVICE_BROADCAST, false, false); |
| 294 | } |
| 295 | |
| 296 | return COMMAND_HANDLED; |
| 297 | } |
| 298 | |
| 299 | int CCECCommandHandler::HandleFeatureAbort(const cec_command &command) |
| 300 | { |
nothing calls this directly
no test coverage detected