| 1589 | } |
| 1590 | |
| 1591 | bool CCECClient::IsLibCECActiveSource(void) |
| 1592 | { |
| 1593 | bool bReturn(false); |
| 1594 | if (m_processor) |
| 1595 | { |
| 1596 | cec_logical_address activeSource = m_processor->GetActiveSource(); |
| 1597 | CCECBusDevice *device = m_processor->GetDevice(activeSource); |
| 1598 | if (device) |
| 1599 | bReturn = device->IsHandledByLibCEC() && !device->GetHandler()->ActiveSourcePending(); |
| 1600 | } |
| 1601 | return bReturn; |
| 1602 | } |
| 1603 | |
| 1604 | void CCECClient::SourceActivated(const cec_logical_address logicalAddress) |
| 1605 | { |
nothing calls this directly
no test coverage detected