| 3 | #include "ParameterPlayer.h" |
| 4 | |
| 5 | CParameterPlayer::CParameterPlayer(QObject *parent) |
| 6 | : CParameterBase{parent} |
| 7 | , m_Type(TYPE::Url) |
| 8 | , m_nCamera(-1) |
| 9 | , m_nAudioInput(-1) |
| 10 | , m_bEnableAudioInput(true) |
| 11 | , m_bAudioInputMuted(false) |
| 12 | , m_fAudioInputVolume(100) |
| 13 | , m_nAudioOutput(-1) |
| 14 | , m_bEnableAudioOutput(true) |
| 15 | , m_bAudioOutputMuted(false) |
| 16 | , m_fAudioOutputVolume(100) |
| 17 | , m_nScreen(-1) |
| 18 | , m_bSubtitle(false) |
| 19 | {} |
| 20 | |
| 21 | const CParameterPlayer::TYPE CParameterPlayer::GetType() const |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected