summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/port.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-10-14 17:35:33 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-10-14 17:35:33 +0000
commit07be98b3410ac70b3c4451592fb88def678611ef (patch)
treea4fafdad0a4e67f9f49d4b5b21193bf37d8b2504 /libs/ardour/ardour/port.h
parentbb9cc45cd22af67ac275a5e73accbe14fee664d8 (diff)
(1) silence non-process FIFO message (2) move MIDI state tracking down to the MidiPort level (3) forward port the PRIVATE_JACK pointer "fix" from 2.X
git-svn-id: svn://localhost/ardour2/branches/3.0@5774 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/port.h')
-rw-r--r--libs/ardour/ardour/port.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/ardour/port.h b/libs/ardour/ardour/port.h
index 75215e148d..5567b2170e 100644
--- a/libs/ardour/ardour/port.h
+++ b/libs/ardour/ardour/port.h
@@ -110,9 +110,10 @@ public:
virtual void cycle_end (nframes_t) = 0;
virtual void cycle_split () = 0;
virtual Buffer& get_buffer (nframes_t nframes, nframes_t offset = 0) = 0;
- virtual void flush_buffers (nframes_t, nframes_t offset = 0) {
+ virtual void flush_buffers (nframes_t nframes, nframes64_t /*time*/, nframes_t offset = 0) {
(void) offset;
}
+ virtual void transport_stopped () {}
static void set_engine (AudioEngine *);