| 826 | } |
| 827 | |
| 828 | uint8_t CCECClient::SystemAudioModeStatus(void) |
| 829 | { |
| 830 | CCECBusDevice *device = GetPrimaryDevice(); |
| 831 | CCECAudioSystem *audio = m_processor->GetAudioSystem(); |
| 832 | return device && audio && audio->IsPresent() ? audio->GetSystemAudioModeStatus(device->GetLogicalAddress()) : (uint8_t)CEC_SYSTEM_AUDIO_STATUS_UNKNOWN; |
| 833 | } |
| 834 | |
| 835 | bool CCECClient::SendKeypress(const cec_logical_address iDestination, const cec_user_control_code key, bool bWait /* = true */) |
| 836 | { |
nothing calls this directly
no test coverage detected