summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-09-29 18:24:54 +0200
committerRobin Gareus <robin@gareus.org>2019-09-29 18:25:14 +0200
commit0daee87803b39adb9e9fab7d81281c4dd6a6a43d (patch)
tree7eaf420ac18c4ca419ccf3cfd3c44dd29880659b /libs/ardour/ardour
parentc5b6b232a6ed251e256b13f4c0c3deed0792ab5b (diff)
Ardour::IO is not latent by itself
Diffstat (limited to 'libs/ardour/ardour')
-rw-r--r--libs/ardour/ardour/io.h4
-rw-r--r--libs/ardour/ardour/route.h1
2 files changed, 1 insertions, 4 deletions
diff --git a/libs/ardour/ardour/io.h b/libs/ardour/ardour/io.h
index 784b6ce398..c4fabba5e7 100644
--- a/libs/ardour/ardour/io.h
+++ b/libs/ardour/ardour/io.h
@@ -68,7 +68,7 @@ class UserBundle;
* An IO can contain ports of varying types, making routes/inserts/etc with
* varied combinations of types (eg MIDI and audio) possible.
*/
-class LIBARDOUR_API IO : public SessionObject, public Latent
+class LIBARDOUR_API IO : public SessionObject
{
public:
static const std::string state_node_name;
@@ -119,8 +119,6 @@ public:
bool connected () const;
bool physically_connected () const;
- samplecnt_t signal_latency () const { return 0; }
-
samplecnt_t latency () const;
samplecnt_t public_latency () const;
samplecnt_t connected_latency (bool for_playback) const;
diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h
index 72011a68d6..e11ddf8eca 100644
--- a/libs/ardour/ardour/route.h
+++ b/libs/ardour/ardour/route.h
@@ -353,7 +353,6 @@ public:
samplecnt_t set_private_port_latencies (bool playback) const;
void set_public_port_latencies (samplecnt_t, bool playback) const;
- void set_user_latency (samplecnt_t);
samplecnt_t signal_latency() const { return _signal_latency; }
samplecnt_t playback_latency (bool incl_downstream = false) const;