| 651 | } |
| 652 | |
| 653 | bool CCECClient::SendSetInactiveView(void) |
| 654 | { |
| 655 | CECDEVICEVEC devices; |
| 656 | |
| 657 | // mark all devices that are controlled by us as inactive source |
| 658 | m_processor->GetDevices()->GetByLogicalAddresses(devices, m_configuration.logicalAddresses); |
| 659 | for (CECDEVICEVEC::iterator it = devices.begin(); it != devices.end(); it++) |
| 660 | { |
| 661 | if ((*it)->IsActiveSource()) |
| 662 | { |
| 663 | (*it)->MarkAsInactiveSource(); |
| 664 | return (*it)->TransmitInactiveSource(); |
| 665 | } |
| 666 | } |
| 667 | |
| 668 | return true; |
| 669 | } |
| 670 | |
| 671 | bool CCECClient::SendSetOSDString(const cec_logical_address iLogicalAddress, const cec_display_control duration, const char *strMessage) |
| 672 | { |
no test coverage detected