| 94 | } |
| 95 | |
| 96 | bool CCECAudioSystem::TransmitSetSystemAudioMode(cec_logical_address dest, bool bIsReply) |
| 97 | { |
| 98 | cec_system_audio_status state; |
| 99 | { |
| 100 | CLockObject lock(m_mutex); |
| 101 | LIB_CEC->AddLog(CEC_LOG_DEBUG, "<< %x -> %x: set system audio mode '%d'", m_iLogicalAddress, dest, m_systemAudioModeStatus); |
| 102 | state = (cec_system_audio_status)m_systemAudioModeStatus; |
| 103 | } |
| 104 | |
| 105 | return m_handler->TransmitSetSystemAudioMode(m_iLogicalAddress, dest, state, bIsReply); |
| 106 | } |
| 107 | |
| 108 | bool CCECAudioSystem::TransmitSystemAudioModeStatus(cec_logical_address dest, bool bIsReply) |
| 109 | { |