| 161 | } |
| 162 | |
| 163 | void CFrmPlayer::slotAduioVolume(int volume) |
| 164 | { |
| 165 | qDebug(log) << "Volume:" << volume; |
| 166 | if(!m_pParameter) |
| 167 | return; |
| 168 | m_pParameter->SetAudioOutputVolume(volume); |
| 169 | } |
| 170 | |
| 171 | void CFrmPlayer::slotPositionChanged(qint64 pos, qint64 duration) |
| 172 | { |
nothing calls this directly
no test coverage detected