Browse Source

Show FFT size in samples in the info label.

tags/v100_p5
xenakios 7 years ago
parent
commit
f3d769504d
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      Source/PluginEditor.cpp

+ 3
- 1
Source/PluginEditor.cpp View File

@@ -113,7 +113,9 @@ void PaulstretchpluginAudioProcessorEditor::timerCallback(int id)
m_wavecomponent.setRecordingPosition(processor.getRecordingPositionPercent());
} else
m_wavecomponent.setRecordingPosition(-1.0);
String infotext = String(processor.getPreBufferingPercent(), 1) + " " + String(processor.getStretchSource()->m_param_change_count)+" "+m_last_err;
String infotext = String(processor.getPreBufferingPercent(), 1) + "% buffered "
+ String(processor.getStretchSource()->m_param_change_count)+" param changes "+m_last_err+" FFT size "+
String(processor.getStretchSource()->getFFTSize());
m_info_label.setText(infotext, dontSendNotification);
}
if (id == 2)


Loading…
Cancel
Save