13
0

remove unintentional addition of PortInsert::silence()

git-svn-id: svn://localhost/trunk/ardour2@474 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-04-25 20:21:15 +00:00
parent 81c7452615
commit bc46c6e5d4
2 changed files with 0 additions and 15 deletions

View File

@ -75,7 +75,6 @@ class PortInsert : public Insert
void init ();
void run (vector<Sample *>& bufs, uint32_t nbufs, jack_nframes_t nframes, jack_nframes_t offset);
void silence (jack_nframes_t nframes, jack_nframes_t offset);
jack_nframes_t latency();

View File

@ -876,20 +876,6 @@ PortInsert::~PortInsert ()
GoingAway (this);
}
void
PortInsert::silence (jack_nframes_t nframes, jack_nframes_t offset)
{
/* io_lock, not taken: function must be called from Session::process() calltree */
/* this silences our outputs, but we need to silence our inputs as well */
for (vector<Port *>::iterator i = _outputs.begin(); i != _outputs.end(); ++i) {
(*i)->silence (nframes, offset);
}
// IO::silence (nframes, offset);
}
void
PortInsert::run (vector<Sample *>& bufs, uint32_t nbufs, jack_nframes_t nframes, jack_nframes_t offset)
{