summaryrefslogtreecommitdiff
path: root/libs/ardour/port.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-10-29 18:36:32 +0100
committerRobin Gareus <robin@gareus.org>2017-10-29 20:04:09 +0100
commit4f03b7c1012359c33161f62f3cddf860374be547 (patch)
tree80f4f5fcc3bce78c70aced79e004637022e98296 /libs/ardour/port.cc
parentbc18c54c737fee6c19ea69b45faaae6f75e3ec24 (diff)
NO-OP: whitespace
Diffstat (limited to 'libs/ardour/port.cc')
-rw-r--r--libs/ardour/port.cc82
1 files changed, 41 insertions, 41 deletions
diff --git a/libs/ardour/port.cc b/libs/ardour/port.cc
index b469194ea5..3ae3063b29 100644
--- a/libs/ardour/port.cc
+++ b/libs/ardour/port.cc
@@ -342,13 +342,13 @@ Port::reset ()
void
Port::cycle_start (pframes_t)
{
- _port_buffer_offset = 0;
+ _port_buffer_offset = 0;
}
void
Port::increment_port_buffer_offset (pframes_t nframes)
{
- _port_buffer_offset += nframes;
+ _port_buffer_offset += nframes;
}
void
@@ -463,57 +463,57 @@ Port::get_connected_latency_range (LatencyRange& range, bool playback) const
DEBUG_TRACE (DEBUG::Latency, string_compose ("%1: %2 connections to check for latency range\n", name(), connections.size()));
for (vector<string>::const_iterator c = connections.begin();
- c != connections.end(); ++c) {
+ c != connections.end(); ++c) {
- LatencyRange lr;
+ LatencyRange lr;
- if (!AudioEngine::instance()->port_is_mine (*c)) {
+ if (!AudioEngine::instance()->port_is_mine (*c)) {
- /* port belongs to some other port-system client, use
- * the port engine to lookup its latency information.
- */
+ /* port belongs to some other port-system client, use
+ * the port engine to lookup its latency information.
+ */
PortEngine::PortHandle remote_port = port_engine.get_port_by_name (*c);
- if (remote_port) {
- lr = port_engine.get_latency_range (remote_port, playback);
- if (externally_connected ()) {
+ if (remote_port) {
+ lr = port_engine.get_latency_range (remote_port, playback);
+ if (externally_connected ()) {
#if 0
- lr.min /= _speed_ratio;
- lr.max /= _speed_ratio;
+ lr.min /= _speed_ratio;
+ lr.max /= _speed_ratio;
#endif
- lr.min += (_resampler_quality - 1);
- lr.max += (_resampler_quality - 1);
- }
+ lr.min += (_resampler_quality - 1);
+ lr.max += (_resampler_quality - 1);
+ }
- DEBUG_TRACE (DEBUG::Latency, string_compose (
- "\t%1 <-> %2 : latter has latency range %3 .. %4\n",
- name(), *c, lr.min, lr.max));
+ DEBUG_TRACE (DEBUG::Latency, string_compose (
+ "\t%1 <-> %2 : latter has latency range %3 .. %4\n",
+ name(), *c, lr.min, lr.max));
- range.min = min (range.min, lr.min);
- range.max = max (range.max, lr.max);
- }
+ range.min = min (range.min, lr.min);
+ range.max = max (range.max, lr.max);
+ }
} else {
- /* port belongs to this instance of ardour,
- so look up its latency information
- internally, because our published/public
- values already contain our plugin
- latency compensation.
- */
-
- boost::shared_ptr<Port> remote_port = AudioEngine::instance()->get_port_by_name (*c);
- if (remote_port) {
- lr = remote_port->private_latency_range ((playback ? true : false));
- DEBUG_TRACE (DEBUG::Latency, string_compose (
- "\t%1 <-LOCAL-> %2 : latter has latency range %3 .. %4\n",
- name(), *c, lr.min, lr.max));
-
- range.min = min (range.min, lr.min);
- range.max = max (range.max, lr.max);
- }
- }
+ /* port belongs to this instance of ardour,
+ so look up its latency information
+ internally, because our published/public
+ values already contain our plugin
+ latency compensation.
+ */
+
+ boost::shared_ptr<Port> remote_port = AudioEngine::instance()->get_port_by_name (*c);
+ if (remote_port) {
+ lr = remote_port->private_latency_range ((playback ? true : false));
+ DEBUG_TRACE (DEBUG::Latency, string_compose (
+ "\t%1 <-LOCAL-> %2 : latter has latency range %3 .. %4\n",
+ name(), *c, lr.min, lr.max));
+
+ range.min = min (range.min, lr.min);
+ range.max = max (range.max, lr.max);
+ }
+ }
}
} else {
@@ -522,7 +522,7 @@ Port::get_connected_latency_range (LatencyRange& range, bool playback) const
range.max = 0;
}
- DEBUG_TRACE (DEBUG::Latency, string_compose ("%1: final connected latency range [ %2 .. %3 ] \n", name(), range.min, range.max));
+ DEBUG_TRACE (DEBUG::Latency, string_compose ("%1: final connected latency range [ %2 .. %3 ] \n", name(), range.min, range.max));
}
int