| 96 | } |
| 97 | |
| 98 | int CParameterPlayer::SetAudioInputMuted(bool bMuted) |
| 99 | { |
| 100 | if(m_bAudioInputMuted == bMuted) |
| 101 | return 0; |
| 102 | m_bAudioInputMuted = bMuted; |
| 103 | SetModified(true); |
| 104 | emit sigAudioInputMuted(m_bAudioInputMuted); |
| 105 | return 0; |
| 106 | } |
| 107 | |
| 108 | const float CParameterPlayer::GetAudioInputVolume() const |
| 109 | { |