NO-OP, whitespace

This commit is contained in:
Robin Gareus 2016-04-13 20:58:35 +02:00
parent 9b8faf1679
commit 1b097d57bd

View file

@ -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;
}