Propagate host provided maximum block size to buffering audio source

This commit is contained in:
xenakios
2017-12-14 19:06:26 +02:00
parent a3c2a07e5b
commit 40096fc87d
2 changed files with 8 additions and 5 deletions

View File

@ -125,9 +125,10 @@ private:
ProcessParameters m_ppar;
void setPreBufferAmount(int x);
void setFFTSize(double size);
void startplay(Range<double> playrange, int numoutchans, String& err);
void startplay(Range<double> playrange, int numoutchans, int maxBlockSize, String& err);
SharedResourcePointer<MyThumbCache> m_thumbcache;
AudioParameterInt* m_outchansparam = nullptr;
int m_curmaxblocksize = 0;
//==============================================================================
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (PaulstretchpluginAudioProcessor)
};