| 138 | } |
| 139 | |
| 140 | bool CCECAudioSystem::RequestAudioStatus(const cec_logical_address initiator, bool bWaitForResponse /* = true */) |
| 141 | { |
| 142 | bool bReturn(false); |
| 143 | |
| 144 | if (!IsHandledByLibCEC() && |
| 145 | !IsUnsupportedFeature(CEC_OPCODE_GIVE_AUDIO_STATUS)) |
| 146 | { |
| 147 | MarkBusy(); |
| 148 | LIB_CEC->AddLog(CEC_LOG_DEBUG, "<< requesting audio status of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress); |
| 149 | bReturn = m_handler->TransmitRequestAudioStatus(initiator, m_iLogicalAddress, bWaitForResponse); |
| 150 | MarkReady(); |
| 151 | } |
| 152 | return bReturn; |
| 153 | } |
| 154 | |
| 155 | bool CCECAudioSystem::RequestSystemAudioModeStatus(const cec_logical_address initiator, bool bWaitForResponse /* = true */) |
| 156 | { |
nothing calls this directly
no test coverage detected