summaryrefslogtreecommitdiffstats
path: root/src/server/PortAudioDriver.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-25 13:59:47 -0500
committerDavid Robillard <d@drobilla.net>2017-12-25 16:26:13 -0500
commitd6a9571641bcb34acb3521feb08eea33195fd9ca (patch)
tree5c28e2800d829b7b1896e2fcbe3f8870b88e039d /src/server/PortAudioDriver.cpp
parent25177612b20f7d3ebd4138fed9cd9acffec7e756 (diff)
downloadingen-d6a9571641bcb34acb3521feb08eea33195fd9ca.tar.gz
ingen-d6a9571641bcb34acb3521feb08eea33195fd9ca.tar.bz2
ingen-d6a9571641bcb34acb3521feb08eea33195fd9ca.zip
Use nullptr
Diffstat (limited to 'src/server/PortAudioDriver.cpp')
-rw-r--r--src/server/PortAudioDriver.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/PortAudioDriver.cpp b/src/server/PortAudioDriver.cpp
index 1c0a1b0b..a97f5105 100644
--- a/src/server/PortAudioDriver.cpp
+++ b/src/server/PortAudioDriver.cpp
@@ -125,17 +125,17 @@ PortAudioDriver::activate()
// Configure audio format
_inputParameters.sampleFormat = paFloat32|paNonInterleaved;
_inputParameters.suggestedLatency = in_dev->defaultLowInputLatency;
- _inputParameters.hostApiSpecificStreamInfo = NULL;
+ _inputParameters.hostApiSpecificStreamInfo = nullptr;
_outputParameters.sampleFormat = paFloat32|paNonInterleaved;
_outputParameters.suggestedLatency = out_dev->defaultLowOutputLatency;
- _outputParameters.hostApiSpecificStreamInfo = NULL;
+ _outputParameters.hostApiSpecificStreamInfo = nullptr;
// Open stream
PaError st = paNoError;
if ((st = Pa_OpenStream(
&_stream,
- _inputParameters.channelCount ? &_inputParameters : NULL,
- _outputParameters.channelCount ? &_outputParameters : NULL,
+ _inputParameters.channelCount ? &_inputParameters : nullptr,
+ _outputParameters.channelCount ? &_outputParameters : nullptr,
in_dev->defaultSampleRate,
_block_length, // paFramesPerBufferUnspecified, // FIXME: ?
0,
@@ -173,7 +173,7 @@ PortAudioDriver::get_port(const Raul::Path& path)
}
}
- return NULL;
+ return nullptr;
}
void
@@ -214,7 +214,7 @@ PortAudioDriver::port_property(const Raul::Path& path,
EnginePort*
PortAudioDriver::create_port(DuplexPort* graph_port)
{
- EnginePort* eport = NULL;
+ EnginePort* eport = nullptr;
if (graph_port->is_a(PortType::AUDIO) || graph_port->is_a(PortType::CV)) {
// Audio buffer port, use Jack buffer directly
eport = new EnginePort(graph_port);