| 1489 | } |
| 1490 | |
| 1491 | bool CCECBusDevice::SystemAudioModeRequest(void) |
| 1492 | { |
| 1493 | uint16_t iPhysicalAddress(GetCurrentPhysicalAddress()); |
| 1494 | return iPhysicalAddress != CEC_INVALID_PHYSICAL_ADDRESS && !!m_handler ? |
| 1495 | m_handler->TransmitSystemAudioModeRequest(m_iLogicalAddress, iPhysicalAddress) : |
| 1496 | false; |
| 1497 | } |
| 1498 | |
| 1499 | bool CCECBusDevice::TransmitVolumeUp(const cec_logical_address source, bool bSendRelease /* = true */) |
| 1500 | { |
nothing calls this directly
no test coverage detected