13
0

Re-add erroneously-removed configure_io method.

git-svn-id: svn://localhost/ardour2/branches/3.0@10944 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-12-09 14:10:33 +00:00
parent 86ac8536d2
commit bbf028880f
2 changed files with 8 additions and 0 deletions

View File

@ -38,6 +38,7 @@ class InternalReturn : public Return
XMLNode& get_state ();
void run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, pframes_t nframes, bool);
bool configure_io (ChanCount, ChanCount);
bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const;
void add_send (InternalSend *);

View File

@ -89,3 +89,10 @@ InternalReturn::can_support_io_configuration (const ChanCount& in, ChanCount& ou
out = in;
return true;
}
bool
InternalReturn::configure_io (ChanCount in, ChanCount out)
{
IOProcessor::configure_io (in, out);
return true;
}