Don't silence input ports.

Fix for input buffers being erroneously silenced when the transport
is not rolling.
pull/3/head
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 )
{
for ( int i = input.size(); i--; )
input[ i ].silence( nframes );
/* There is no work to do when we're not rolling. */
return 0;
}