Merge pull request #819 from diizy/mixeriph2

Ensure that NotePlayHandles get processed before the InstrumentPlayHandl...
This commit is contained in:
Tobias Doerffel
2014-06-09 13:43:51 +02:00
3 changed files with 25 additions and 5 deletions

View File

@@ -119,13 +119,13 @@ public:
virtual bool isFromTrack( const track * _track ) const;
protected:
inline InstrumentTrack * instrumentTrack() const
{
return m_instrumentTrack;
}
protected:
// instruments may use this to apply a soft fade out at the end of
// notes - method does this only if really less or equal
// desiredReleaseFrames() frames are left

View File

@@ -22,11 +22,12 @@
*
*/
#ifndef _INSTRUMENT_PLAY_HANDLE_H
#define _INSTRUMENT_PLAY_HANDLE_H
#ifndef INSTRUMENT_PLAY_HANDLE_H
#define INSTRUMENT_PLAY_HANDLE_H
#include "PlayHandle.h"
#include "Instrument.h"
#include "NotePlayHandle.h"
class InstrumentPlayHandle : public PlayHandle
@@ -45,6 +46,25 @@ public:
virtual void play( sampleFrame * _working_buffer )
{
// if the instrument is midi-based, we can safely render right away
if( m_instrument->flags() & Instrument::IsMidiBased )
{
m_instrument->play( _working_buffer );
return;
}
// if not, we need to ensure that all our nph's have been processed first
ConstNotePlayHandleList nphv = NotePlayHandle::nphsOfInstrumentTrack( m_instrument->instrumentTrack(), true );
foreach( const NotePlayHandle * cnph, nphv )
{
NotePlayHandle * nph = const_cast<NotePlayHandle *>( cnph );
while( nph->state() != ThreadableJob::Done )
{
nph->process();
}
}
m_instrument->play( _working_buffer );
}

View File

@@ -79,7 +79,7 @@ public:
virtual Flags flags() const
{
return IsSingleStreamed | IsMidiBased;
return IsSingleStreamed;
}
virtual PluginView * instantiateView( QWidget * _parent );