| 153 | } |
| 154 | |
| 155 | bool CCECAudioSystem::RequestSystemAudioModeStatus(const cec_logical_address initiator, bool bWaitForResponse /* = true */) |
| 156 | { |
| 157 | bool bReturn(false); |
| 158 | |
| 159 | if (!IsHandledByLibCEC() && |
| 160 | !IsUnsupportedFeature(CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS)) |
| 161 | { |
| 162 | MarkBusy(); |
| 163 | LIB_CEC->AddLog(CEC_LOG_DEBUG, "<< requesting system audio mode status of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress); |
| 164 | bReturn = m_handler->TransmitRequestSystemAudioModeStatus(initiator, m_iLogicalAddress, bWaitForResponse); |
| 165 | MarkReady(); |
| 166 | } |
| 167 | return bReturn; |
| 168 | } |
| 169 | |
| 170 | uint8_t CCECAudioSystem::GetAudioStatus(const cec_logical_address initiator, bool bUpdate /* = false */) |
| 171 | { |
nothing calls this directly
no test coverage detected