summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/port.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-11 02:55:52 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-11 02:55:52 +0000
commitd155f32039570e9e0cde11b42e395ca2bcc89ffd (patch)
tree160ca7969013b713d70f31f15f328e7a11a723dd /libs/ardour/ardour/port.h
parente8060844021cdf5b4c6f3e284a892e70109787c3 (diff)
sorta-kinda working latency compensation, latency reporting and capture alignment ... working except that we report the wrong information to JACK and i've noticed a couple of odd circumstances where turning on a latent plugin caused punch recording to fail
git-svn-id: svn://localhost/ardour2/branches/3.0@9121 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/port.h')
-rw-r--r--libs/ardour/ardour/port.h62
1 files changed, 35 insertions, 27 deletions
diff --git a/libs/ardour/ardour/port.h b/libs/ardour/ardour/port.h
index 300ecc24af..45595be422 100644
--- a/libs/ardour/ardour/port.h
+++ b/libs/ardour/ardour/port.h
@@ -20,6 +20,8 @@
#ifndef __ardour_port_h__
#define __ardour_port_h__
+#include "libardour-config.h"
+
#include <set>
#include <string>
#include <vector>
@@ -45,9 +47,6 @@ public:
virtual ~Port ();
- static void set_buffer_size (pframes_t sz) {
- _buffer_size = sz;
- }
static void set_connecting_blocked( bool yn ) {
_connecting_blocked = yn;
}
@@ -93,16 +92,22 @@ public:
void ensure_monitor_input (bool);
bool monitoring_input () const;
- framecnt_t total_latency () const;
int reestablish ();
int reconnect ();
void request_monitor_input (bool);
- void set_latency (framecnt_t);
-#ifdef HAVE_JACK_NEW_LATENCY
+ bool last_monitor() const { return _last_monitor; }
+ void set_last_monitor (bool yn) { _last_monitor = yn; }
+
+ jack_port_t* jack_port() const { return _jack_port; }
+
void get_connected_latency_range (jack_latency_range_t& range, bool playback) const;
- void set_latency_range (jack_latency_range_t& range, bool playback) const;
-#endif
+
+ void set_private_latency_range (jack_latency_range_t& range, bool playback);
+ const jack_latency_range_t& private_latency_range (bool playback) const;
+
+ void set_public_latency_range (jack_latency_range_t& range, bool playback) const;
+ jack_latency_range_t public_latency_range (bool playback) const;
virtual void reset ();
@@ -110,10 +115,10 @@ public:
virtual size_t raw_buffer_size (pframes_t nframes) const = 0;
virtual DataType type () const = 0;
- virtual void cycle_start (pframes_t) = 0;
+ virtual void cycle_start (pframes_t);
virtual void cycle_end (pframes_t) = 0;
virtual void cycle_split () = 0;
- virtual Buffer& get_buffer (framecnt_t nframes) = 0;
+ virtual Buffer& get_buffer (pframes_t nframes) = 0;
virtual void flush_buffers (pframes_t nframes, framepos_t /*time*/) {}
virtual void transport_stopped () {}
@@ -124,41 +129,44 @@ public:
PBD::Signal1<void,bool> MonitorInputChanged;
- static framecnt_t port_offset() { return _port_offset; }
-
- static void set_port_offset (framecnt_t off) {
- _port_offset = off;
+ static void set_cycle_framecnt (pframes_t n) {
+ _cycle_nframes = n;
+ }
+ static framecnt_t port_offset() { return _global_port_buffer_offset; }
+ static void set_global_port_buffer_offset (pframes_t off) {
+ _global_port_buffer_offset = off;
}
-
- static void increment_port_offset (framecnt_t n) {
- _port_offset += n;
+ static void increment_global_port_buffer_offset (pframes_t n) {
+ _global_port_buffer_offset += n;
}
+ virtual void increment_port_buffer_offset (pframes_t n);
+
protected:
Port (std::string const &, DataType, Flags);
jack_port_t* _jack_port; ///< JACK port
- static pframes_t _buffer_size;
static bool _connecting_blocked;
- static framecnt_t _port_offset;
+ static pframes_t _global_port_buffer_offset; /* access only from process() tree */
+ static pframes_t _cycle_nframes; /* access only from process() tree */
+
+ framecnt_t _port_buffer_offset; /* access only from process() tree */
+
+ jack_latency_range_t _private_playback_latency;
+ jack_latency_range_t _private_capture_latency;
static AudioEngine* _engine; ///< the AudioEngine
private:
- friend class AudioEngine;
-
- void recompute_total_latency () const;
-
- /* XXX */
- bool _last_monitor;
-
std::string _name; ///< port short name
Flags _flags; ///< flags
+ bool _last_monitor;
/** ports that we are connected to, kept so that we can
- reconnect to JACK when required */
+ reconnect to JACK when required
+ */
std::set<std::string> _connections;
};