summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/internal_return.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-12-08 14:14:21 +0000
committerCarl Hetherington <carl@carlh.net>2011-12-08 14:14:21 +0000
commit26366a40629693b387331c81ed255116fa8f7f7c (patch)
treeb3ae41bd4270fcc23e8167a3a8c029bf67368082 /libs/ardour/ardour/internal_return.h
parent32c1c8a1c76d68dfb2edb08742a308d24766b96e (diff)
Remove unused buffers and associated support code from
InternalReturn. git-svn-id: svn://localhost/ardour2/branches/3.0@10942 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/internal_return.h')
-rw-r--r--libs/ardour/ardour/internal_return.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/libs/ardour/ardour/internal_return.h b/libs/ardour/ardour/internal_return.h
index b6a3e26253..56fa3cf3ba 100644
--- a/libs/ardour/ardour/internal_return.h
+++ b/libs/ardour/ardour/internal_return.h
@@ -34,27 +34,18 @@ class InternalReturn : public Return
public:
InternalReturn (Session&);
- XMLNode& state(bool full);
- XMLNode& get_state(void);
- int set_state(const XMLNode&, int version);
+ XMLNode& state (bool full);
+ XMLNode& get_state ();
void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool);
- bool configure_io (ChanCount in, ChanCount out);
bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const;
- int set_block_size (pframes_t);
void add_send (InternalSend *);
void remove_send (InternalSend *);
- static PBD::Signal1<void, pframes_t> CycleStart;
-
private:
- BufferSet buffers;
/** sends that we are receiving data from */
std::list<InternalSend*> _sends;
-
- void allocate_buffers (pframes_t);
- void cycle_start (pframes_t);
};
} // namespace ARDOUR