Don't silence input ports.

Fix for input buffers being erroneously silenced when the transport
is not rolling.
This commit is contained in:
Peter Nelson 2010-01-23 21:05:34 +00:00 committed by Jonathan Moore Liles
parent 66daa1e23f
commit 1d826848a4
1 changed files with 1 additions and 2 deletions

View File

@ -157,8 +157,7 @@ Track::process_input ( nframes_t nframes )
if ( ! transport->rolling ) if ( ! transport->rolling )
{ {
for ( int i = input.size(); i--; ) /* There is no work to do when we're not rolling. */
input[ i ].silence( nframes );
return 0; return 0;
} }