Browse Source

Show approximate output duration in info label

tags/1.0.2
xenakios 7 years ago
parent
commit
0f1742fbbf
2 changed files with 6 additions and 2 deletions
  1. +4
    -2
      Source/PluginEditor.cpp
  2. +2
    -0
      readme.txt

+ 4
- 2
Source/PluginEditor.cpp View File

@@ -260,8 +260,10 @@ void PaulstretchpluginAudioProcessorEditor::timerCallback(int id)
infotext += String(processor.getStretchSource()->m_param_change_count);
infotext += " param changes ";
}
infotext += m_last_err + " FFT size " +
String(processor.getStretchSource()->getFFTSize());
infotext += m_last_err + " [FFT size " +
String(processor.getStretchSource()->getFFTSize())+"]";
double outlen = processor.getStretchSource()->getOutputDurationSecondsForRange(processor.getStretchSource()->getPlayRange(), processor.getStretchSource()->getFFTSize());
infotext += " [Output length " + secondsToString2(outlen)+"]";
if (processor.m_abnormal_output_samples > 0)
infotext += " " + String(processor.m_abnormal_output_samples) + " invalid sample values";
if (processor.isNonRealtime())


+ 2
- 0
readme.txt View File

@@ -8,6 +8,8 @@ Released under GNU General Public License v.2 license.

History :

02-19-2018 1.0.2
-Show approximate stretched output duration in info label (only valid if the stretch amount is not automated in the host)
02-16-2018 1.0.1
-Increased maximum number of input channels to 8
-Added zoom/scroll bar for waveform


Loading…
Cancel
Save