Browse Source

Try smaller render buffer size, didn't help

master
xenakios 7 years ago
parent
commit
0dd0fb962e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Source/PluginProcessor.cpp

+ 1
- 1
Source/PluginProcessor.cpp View File

@@ -537,7 +537,7 @@ String PaulstretchpluginAudioProcessor::offlineRender(OfflineRenderParams render
if (outsr < 10.0)
outsr = processor->getStretchSource()->getInfileSamplerate();
Logger::writeToLog(outputfiletouse.getFullPathName() + " " + String(outsr) + " " + String(renderpars.outputformat));
int blocksize{ 2048 };
int blocksize{ 1024 };
int numoutchans = *processor->getIntParameter(cpi_num_outchans);
processor->setPlayConfigDetails(0, numoutchans, outsr, blocksize);
processor->prepareToPlay(renderpars.outsr, blocksize);


Loading…
Cancel
Save