| 209 | } |
| 210 | |
| 211 | bool CCECAudioSystem::AudioEnable(CCECBusDevice* device, bool bEnable /* = true */) |
| 212 | { |
| 213 | cec_logical_address iLogicalAddress = device->GetLogicalAddress() ? |
| 214 | device->GetLogicalAddress() : CECDEVICE_UNKNOWN; |
| 215 | uint16_t physicalAddress = bEnable ? device->GetCurrentPhysicalAddress() : |
| 216 | CEC_INVALID_PHYSICAL_ADDRESS; |
| 217 | |
| 218 | return m_handler->TransmitSystemAudioModeRequest(iLogicalAddress, physicalAddress); |
| 219 | } |
nothing calls this directly
no test coverage detected