mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
remove unintentional addition of PortInsert::silence()
git-svn-id: svn://localhost/trunk/ardour2@474 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
81c7452615
commit
bc46c6e5d4
2 changed files with 0 additions and 15 deletions
|
|
@ -75,7 +75,6 @@ class PortInsert : public Insert
|
||||||
|
|
||||||
void init ();
|
void init ();
|
||||||
void run (vector<Sample *>& bufs, uint32_t nbufs, jack_nframes_t nframes, jack_nframes_t offset);
|
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();
|
jack_nframes_t latency();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -876,20 +876,6 @@ PortInsert::~PortInsert ()
|
||||||
GoingAway (this);
|
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
|
void
|
||||||
PortInsert::run (vector<Sample *>& bufs, uint32_t nbufs, jack_nframes_t nframes, jack_nframes_t offset)
|
PortInsert::run (vector<Sample *>& bufs, uint32_t nbufs, jack_nframes_t nframes, jack_nframes_t offset)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue