Calculate disk sample read count. Increase disk read cache 4x.

This commit is contained in:
xenakios
2018-05-19 15:03:30 +03:00
parent 021944dc37
commit eabcd891b3
5 changed files with 15 additions and 4 deletions

View File

@ -427,7 +427,8 @@ void PaulstretchpluginAudioProcessorEditor::timerCallback(int id)
String infotext;
if (processor.m_show_technical_info)
{
infotext += String(processor.m_prepare_count)+" ";
infotext += String(processor.getStretchSource()->getDiskReadSampleCount()) + " ";
infotext += String(processor.m_prepare_count)+" ";
infotext += String(processor.getStretchSource()->m_param_change_count);
infotext += " param changes ";
}