Add parameters. Use plain old member variables for main volume and loop xfade length. GUI layout tweak.

This commit is contained in:
xenakios 2017-11-25 21:25:46 +02:00
parent 4a89c2f1c4
commit eece70d89b
5 changed files with 40 additions and 15 deletions

View File

@ -129,6 +129,20 @@ void StretchAudioSource::setAudioBufferAsInputSource(AudioBuffer<float>* buf, in
setPlayRange({ 0.0,1.0 }, true); setPlayRange({ 0.0,1.0 }, true);
} }
void StretchAudioSource::setMainVolume(double decibels)
{
std::lock_guard <decltype(m_mutex)> locker(m_mutex);
m_main_volume = jlimit(-144.0, 12.0, decibels);
++m_param_change_count;
}
void StretchAudioSource::setLoopXFadeLength(double lenseconds)
{
std::lock_guard <decltype(m_mutex)> locker(m_mutex);
m_loopxfadelen = jlimit(0.0, 1.0, lenseconds);
++m_param_change_count;
}
void StretchAudioSource::getNextAudioBlock(const AudioSourceChannelInfo & bufferToFill) void StretchAudioSource::getNextAudioBlock(const AudioSourceChannelInfo & bufferToFill)
{ {
// for realtime play, this is assumed to be used with BufferingAudioSource, so mutex locking should not be too bad... // for realtime play, this is assumed to be used with BufferingAudioSource, so mutex locking should not be too bad...
@ -145,7 +159,7 @@ void StretchAudioSource::getNextAudioBlock(const AudioSourceChannelInfo & buffer
e->set_freezing(m_freezing); e->set_freezing(m_freezing);
} }
double maingain = Decibels::decibelsToGain((double)val_MainVolume.getValue()); double maingain = Decibels::decibelsToGain(m_main_volume);
if (m_vol_smoother.getTargetValue() != maingain) if (m_vol_smoother.getTargetValue() != maingain)
m_vol_smoother.setValue(maingain); m_vol_smoother.setValue(maingain);
FloatVectorOperations::disableDenormalisedNumberSupport(); FloatVectorOperations::disableDenormalisedNumberSupport();
@ -158,7 +172,7 @@ void StretchAudioSource::getNextAudioBlock(const AudioSourceChannelInfo & buffer
return; return;
if (m_inputfile->info.nsamples == 0) if (m_inputfile->info.nsamples == 0)
return; return;
m_inputfile->setXFadeLenSeconds(val_XFadeLen.getValue()); m_inputfile->setXFadeLenSeconds(m_loopxfadelen);
double silencethreshold = Decibels::decibelsToGain(-70.0); double silencethreshold = Decibels::decibelsToGain(-70.0);
bool tempfirst = true; bool tempfirst = true;
@ -633,8 +647,8 @@ void MultiStretchAudioSource::getNextAudioBlock(const AudioSourceChannelInfo & b
m_blocksize = bufferToFill.numSamples; m_blocksize = bufferToFill.numSamples;
if (m_is_in_switch == false) if (m_is_in_switch == false)
{ {
getActiveStretchSource()->val_MainVolume.setValue(val_MainVolume.getValue()); getActiveStretchSource()->setMainVolume(val_MainVolume.getValue());
getActiveStretchSource()->val_XFadeLen.setValue(val_XFadeLen.getValue()); getActiveStretchSource()->setLoopXFadeLength(val_XFadeLen.getValue());
getActiveStretchSource()->setFreezing(m_freezing); getActiveStretchSource()->setFreezing(m_freezing);
getActiveStretchSource()->getNextAudioBlock(bufferToFill); getActiveStretchSource()->getNextAudioBlock(bufferToFill);
@ -648,10 +662,10 @@ void MultiStretchAudioSource::getNextAudioBlock(const AudioSourceChannelInfo & b
} }
AudioSourceChannelInfo ascinfo1(m_processbuffers[0]); AudioSourceChannelInfo ascinfo1(m_processbuffers[0]);
AudioSourceChannelInfo ascinfo2(m_processbuffers[1]); AudioSourceChannelInfo ascinfo2(m_processbuffers[1]);
m_stretchsources[0]->val_MainVolume.setValue(val_MainVolume.getValue()); m_stretchsources[0]->setMainVolume(val_MainVolume.getValue());
m_stretchsources[1]->val_MainVolume.setValue(val_MainVolume.getValue()); m_stretchsources[1]->setMainVolume(val_MainVolume.getValue());
m_stretchsources[0]->val_XFadeLen.setValue(val_XFadeLen.getValue()); m_stretchsources[0]->setLoopXFadeLength(val_XFadeLen.getValue());
m_stretchsources[1]->val_XFadeLen.setValue(val_XFadeLen.getValue()); m_stretchsources[1]->setLoopXFadeLength(val_XFadeLen.getValue());
m_stretchsources[0]->setFreezing(m_freezing); m_stretchsources[0]->setFreezing(m_freezing);
m_stretchsources[1]->setFreezing(m_freezing); m_stretchsources[1]->setFreezing(m_freezing);
m_stretchsources[1]->setFFTWindowingType(m_stretchsources[0]->getFFTWindowingType()); m_stretchsources[1]->setFFTWindowingType(m_stretchsources[0]->getFFTWindowingType());

View File

@ -82,8 +82,7 @@ public:
void setFFTWindowingType(int windowtype); void setFFTWindowingType(int windowtype);
int getFFTWindowingType() { return m_fft_window_type; } int getFFTWindowingType() { return m_fft_window_type; }
std::pair<Range<double>,Range<double>> getFileCachedRangesNormalized(); std::pair<Range<double>,Range<double>> getFileCachedRangesNormalized();
Value val_MainVolume;
Value val_XFadeLen;
ValueTree getStateTree(); ValueTree getStateTree();
void setStateTree(ValueTree state); void setStateTree(ValueTree state);
void setClippingEnabled(bool b) { m_clip_output = b; } void setClippingEnabled(bool b) { m_clip_output = b; }
@ -91,6 +90,10 @@ public:
void setLoopingEnabled(bool b); void setLoopingEnabled(bool b);
void setMaxLoops(int64_t numloops) { m_maxloops = numloops; } void setMaxLoops(int64_t numloops) { m_maxloops = numloops; }
void setAudioBufferAsInputSource(AudioBuffer<float>* buf, int sr, int len); void setAudioBufferAsInputSource(AudioBuffer<float>* buf, int sr, int len);
void setMainVolume(double decibels);
double getMainVolume() const { return m_main_volume; }
void setLoopXFadeLength(double lenseconds);
double getLoopXFadeLengtj() const { return m_loopxfadelen; }
int m_param_change_count = 0; int m_param_change_count = 0;
private: private:
CircularBuffer<float> m_stretchoutringbuf{ 1024 * 1024 }; CircularBuffer<float> m_stretchoutringbuf{ 1024 * 1024 };
@ -107,6 +110,8 @@ private:
double m_outsr = 44100.0; double m_outsr = 44100.0;
int m_process_fftsize = 0; int m_process_fftsize = 0;
int m_fft_window_type = -1; int m_fft_window_type = -1;
double m_main_volume = 0.0;
double m_loopxfadelen = 0.0;
ProcessParameters m_ppar; ProcessParameters m_ppar;
BinauralBeatsParameters m_bbpar; BinauralBeatsParameters m_bbpar;
double m_playrate = 1.0; double m_playrate = 1.0;

View File

@ -79,7 +79,7 @@ void PaulstretchpluginAudioProcessorEditor::resized()
for (int i = 0; i < m_parcomps.size(); ++i) for (int i = 0; i < m_parcomps.size(); ++i)
{ {
m_parcomps[i]->setBounds(1, 30 + i * 25, 598, 24); m_parcomps[i]->setBounds(1, 30 + i * 25, getWidth()-2, 24);
} }
int yoffs = m_parcomps.back()->getBottom() + 1; int yoffs = m_parcomps.back()->getBottom() + 1;
m_wavecomponent.setBounds(1, yoffs, getWidth()-2, getHeight()-1-yoffs); m_wavecomponent.setBounds(1, yoffs, getWidth()-2, getHeight()-1-yoffs);

View File

@ -12,8 +12,10 @@
#include "PluginEditor.h" #include "PluginEditor.h"
#include <set> #include <set>
#ifdef WIN32
#undef min #undef min
#undef max #undef max
#endif
std::set<PaulstretchpluginAudioProcessor*> g_activeprocessors; std::set<PaulstretchpluginAudioProcessor*> g_activeprocessors;
@ -92,6 +94,8 @@ PaulstretchpluginAudioProcessor::PaulstretchpluginAudioProcessor()
addParameter(new AudioParameterFloat("playrange_end0", "Sound end", 0.0f, 1.0f, 1.0f)); // 6 addParameter(new AudioParameterFloat("playrange_end0", "Sound end", 0.0f, 1.0f, 1.0f)); // 6
addParameter(new AudioParameterBool("freeze0", "Freeze", false)); // 7 addParameter(new AudioParameterBool("freeze0", "Freeze", false)); // 7
addParameter(new AudioParameterFloat("spread0", "Frequency spread", 0.0f, 1.0f, 0.0f)); // 8 addParameter(new AudioParameterFloat("spread0", "Frequency spread", 0.0f, 1.0f, 0.0f)); // 8
addParameter(new AudioParameterFloat("compress0", "Compress", 0.0f, 1.0f, 0.0f)); // 9
addParameter(new AudioParameterFloat("loopxfadelen0", "Loop xfade length", 0.0f, 1.0f, 0.0f)); // 10
} }
PaulstretchpluginAudioProcessor::~PaulstretchpluginAudioProcessor() PaulstretchpluginAudioProcessor::~PaulstretchpluginAudioProcessor()
@ -145,7 +149,7 @@ bool PaulstretchpluginAudioProcessor::isMidiEffect() const
double PaulstretchpluginAudioProcessor::getTailLengthSeconds() const double PaulstretchpluginAudioProcessor::getTailLengthSeconds() const
{ {
return 0.0; return (double)m_bufamounts[m_prebuffer_amount]/getSampleRate();
} }
int PaulstretchpluginAudioProcessor::getNumPrograms() int PaulstretchpluginAudioProcessor::getNumPrograms()
@ -306,14 +310,16 @@ void PaulstretchpluginAudioProcessor::processBlock (AudioSampleBuffer& buffer, M
} }
jassert(m_buffering_source != nullptr); jassert(m_buffering_source != nullptr);
jassert(m_bufferingthread.isThreadRunning()); jassert(m_bufferingthread.isThreadRunning());
m_stretch_source->val_MainVolume = (float)*getFloatParameter(0); m_stretch_source->setMainVolume(*getFloatParameter(0));
m_stretch_source->setRate(*getFloatParameter(1)); m_stretch_source->setRate(*getFloatParameter(1));
m_stretch_source->val_XFadeLen = 0.1;
setFFTSize(*getFloatParameter(2)); setFFTSize(*getFloatParameter(2));
m_ppar.pitch_shift.cents = *getFloatParameter(3) * 100.0; m_ppar.pitch_shift.cents = *getFloatParameter(3) * 100.0;
m_ppar.freq_shift.Hz = *getFloatParameter(4); m_ppar.freq_shift.Hz = *getFloatParameter(4);
m_ppar.spread.enabled = *getFloatParameter(8) > 0.0f; m_ppar.spread.enabled = *getFloatParameter(8) > 0.0f;
m_ppar.spread.bandwidth = *getFloatParameter(8); m_ppar.spread.bandwidth = *getFloatParameter(8);
m_ppar.compressor.power = *getFloatParameter(9);
m_stretch_source->setLoopXFadeLength(*getFloatParameter(10));
double t0 = *getFloatParameter(5); double t0 = *getFloatParameter(5);
double t1 = *getFloatParameter(6); double t1 = *getFloatParameter(6);
if (t0 > t1) if (t0 > t1)

View File

@ -73,7 +73,7 @@ private:
bool m_ready_to_play = false; bool m_ready_to_play = false;
AudioBuffer<float> m_recbuffer; AudioBuffer<float> m_recbuffer;
double m_max_reclen = 5; double m_max_reclen = 10.0;
bool m_is_recording = false; bool m_is_recording = false;
int m_rec_pos = 0; int m_rec_pos = 0;
void finishRecording(int lenrecorded); void finishRecording(int lenrecorded);