summaryrefslogtreecommitdiffstats
path: root/src/engine/channels/engineaux.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/channels/engineaux.cpp')
-rw-r--r--src/engine/channels/engineaux.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/channels/engineaux.cpp b/src/engine/channels/engineaux.cpp
index 098d7eff2f..c4e74db339 100644
--- a/src/engine/channels/engineaux.cpp
+++ b/src/engine/channels/engineaux.cpp
@@ -49,7 +49,7 @@ void EngineAux::onInputConfigured(const AudioInput& input) {
qDebug() << "WARNING: EngineAux connected to AudioInput for a non-auxiliary type!";
return;
}
- m_sampleBuffer = NULL;
+ m_sampleBuffer = nullptr;
m_pInputConfigured->forceSet(1.0);
}
@@ -59,7 +59,7 @@ void EngineAux::onInputUnconfigured(const AudioInput& input) {
qDebug() << "WARNING: EngineAux connected to AudioInput for a non-auxiliary type!";
return;
}
- m_sampleBuffer = NULL;
+ m_sampleBuffer = nullptr;
m_pInputConfigured->forceSet(0.0);
}
@@ -82,7 +82,7 @@ void EngineAux::process(CSAMPLE* pOut, const int iBufferSize) {
// TODO(jholthuis): Use mixxx::audio::SampleRate instead
static_cast<unsigned int>(m_pSampleRate->get()));
}
- m_sampleBuffer = NULL;
+ m_sampleBuffer = nullptr;
} else {
SampleUtil::clear(pOut, iBufferSize);
}