summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-13 20:58:35 +0200
committerRobin Gareus <robin@gareus.org>2016-04-13 20:58:35 +0200
commit1b097d57bd1d9b0ff5166a14d548e209b0ea3980 (patch)
tree5d17fd0603ba6a67d4d5e8a218af9e03b9c44b51
parent9b8faf16799f4f54ecaee803697222625b0d6af9 (diff)
NO-OP, whitespace
-rw-r--r--libs/ardour/delivery.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/libs/ardour/delivery.cc b/libs/ardour/delivery.cc
index 326ef68ccc..b31802e894 100644
--- a/libs/ardour/delivery.cc
+++ b/libs/ardour/delivery.cc
@@ -242,8 +242,8 @@ Delivery::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pf
}
/* this setup is not just for our purposes, but for anything that comes after us in the
- processing pathway that wants to use this->output_buffers() for some reason.
- */
+ * processing pathway that wants to use this->output_buffers() for some reason.
+ */
// TODO delayline -- latency-compensation
output_buffers().get_backend_port_addresses (ports, nframes);
@@ -263,8 +263,8 @@ Delivery::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pf
} else if (tgain < GAIN_COEFF_SMALL) {
/* we were quiet last time, and we're still supposed to be quiet.
- Silence the outputs, and make sure the buffers are quiet too,
- */
+ Silence the outputs, and make sure the buffers are quiet too,
+ */
_output->silence (nframes);
if (result_required) {
@@ -279,7 +279,7 @@ Delivery::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pf
Amp::apply_simple_gain (bufs, nframes, tgain);
}
- // Speed quietning
+ // Speed quietning
if (fabs (_session.transport_speed()) > 1.5 && Config->get_quieten_at_speed ()) {
Amp::apply_simple_gain (bufs, nframes, speed_quietning, false);
@@ -305,18 +305,18 @@ Delivery::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pf
if (bufs.count().n_audio() > 0 && ports.count().n_audio () > 0) {
_output->copy_to_outputs (bufs, DataType::AUDIO, nframes, 0);
- }
+ }
if (bufs.count().n_midi() > 0 && ports.count().n_midi () > 0) {
_output->copy_to_outputs (bufs, DataType::MIDI, nframes, ports.port(0)->port_offset());
}
}
- if (result_required) {
- bufs.read_from (output_buffers (), nframes);
- }
+ if (result_required) {
+ bufs.read_from (output_buffers (), nframes);
+ }
- out:
+out:
_active = _pending_active;
}