| 751 | |
| 752 | //*********************************************************************************************** |
| 753 | void COMXAudio::SetDynamicRangeCompression(long drc) |
| 754 | { |
| 755 | CSingleLock lock (m_critSection); |
| 756 | m_amplification = powf(10.0f, (float)drc / 2000.0f); |
| 757 | if (m_settings_changed) |
| 758 | UpdateAttenuation(); |
| 759 | } |
| 760 | |
| 761 | //*********************************************************************************************** |
| 762 | void COMXAudio::SetMute(bool bMute) |
no outgoing calls
no test coverage detected