Remove unused code

math: Already replaced with C++17 double std::hypot
This commit is contained in:
Lars Toenning
2021-09-10 20:18:03 +02:00
parent 25491c0478
commit 7a02f2c2a6
6 changed files with 0 additions and 30 deletions

View File

@@ -338,7 +338,6 @@ namespace BlackCore
m_output->start(useOutputDevice, m_outputSampleProvider);
m_input->start(useInputDevice);
m_startDateTimeUtc = QDateTime::currentDateTimeUtc();
// runs in correct thread
m_voiceServerTimer->start(PositionUpdatesMs); // start for preset values

View File

@@ -113,9 +113,6 @@ namespace BlackCore
//! Client started?
bool isStarted() const { return m_isStarted; }
//! When started
const QDateTime &getStartDateTimeUtc() const { return m_startDateTimeUtc; }
//! Muted
//! \threadsafe
//! @{
@@ -411,8 +408,6 @@ namespace BlackCore
std::atomic_bool m_winCoInitialized { false }; //!< Windows only CoInitializeEx
std::atomic_bool m_integratedComUnit { false }; //!< is COM unit sychronized, integrated?
QDateTime m_startDateTimeUtc;
double m_inputVolumeDb = 0.0;
int m_outputMasterVolumeNormalized = 0;
int m_outputVolumeCom1Normalized = 0;