made mixToChannel() take a sampleFrame-pointer

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@871 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-04-03 20:19:00 +00:00
parent 6c1cc640d8
commit 6c27622a17
2 changed files with 20 additions and 14 deletions

View File

@@ -53,7 +53,7 @@ public:
fxMixer();
virtual ~fxMixer();
void mixToChannel( const surroundSampleFrame * _buf, fx_ch_t _ch );
void mixToChannel( const sampleFrame * _buf, fx_ch_t _ch );
void processChannel( fx_ch_t _ch );
void prepareMasterMix( void );
@@ -73,6 +73,7 @@ public:
private:
fxChannel * m_fxChannels[NumFxChannels+1]; // +1 = master
surroundSampleFrame * m_out;
friend class mixerWorkerThread;