Still trying...
This commit is contained in:
@ -83,7 +83,8 @@ void BinauralBeats::process(REALTYPE *smpsl,REALTYPE *smpsr,int nsmps,REALTYPE p
|
||||
REALTYPE outl2=m1-m2;
|
||||
|
||||
|
||||
h1=0,h2=0;
|
||||
h1=0;
|
||||
h2=0;
|
||||
hr.process(smpsr[i],h1,h2);
|
||||
|
||||
m1=h1*cos(x);
|
||||
|
@ -161,7 +161,8 @@ void StretchAudioSource::getNextAudioBlock(const AudioSourceChannelInfo & buffer
|
||||
int wanted = m_resampler->ResamplePrepare(bufferToFill.numSamples, m_num_outchans, &rsinbuf);
|
||||
double silencethreshold = Decibels::decibelsToGain(-70.0);
|
||||
bool tempfirst = true;
|
||||
//if (m_output_counter<=m_process_fftsize*2) // && m_inputfile->hasEnded() == false)
|
||||
auto foofilepos0 = m_inputfile->getCurrentPosition();
|
||||
//if (m_output_counter<=m_process_fftsize*2) // && m_inputfile->hasEnded() == false)
|
||||
{
|
||||
while (m_stretchoutringbuf.available() < wanted*m_num_outchans)
|
||||
{
|
||||
@ -231,6 +232,8 @@ void StretchAudioSource::getNextAudioBlock(const AudioSourceChannelInfo & buffer
|
||||
|
||||
}
|
||||
}
|
||||
auto foofilepos1 = m_inputfile->getCurrentPosition();
|
||||
//jassert(abs(foofilepos1-foofilepos0)>0);
|
||||
for (int i = 0; i < wanted*m_num_outchans; ++i)
|
||||
{
|
||||
double sample = m_stretchoutringbuf.get();
|
||||
|
@ -14,7 +14,10 @@
|
||||
|
||||
//==============================================================================
|
||||
PaulstretchpluginAudioProcessorEditor::PaulstretchpluginAudioProcessorEditor (PaulstretchpluginAudioProcessor& p)
|
||||
: AudioProcessorEditor (&p), processor (p), m_wavecomponent(p.m_afm.get())
|
||||
: AudioProcessorEditor (&p),
|
||||
m_wavecomponent(p.m_afm.get()),
|
||||
processor (p)
|
||||
|
||||
{
|
||||
addAndMakeVisible(&m_import_button);
|
||||
m_import_button.setButtonText("Import file...");
|
||||
|
@ -140,7 +140,7 @@ void PaulstretchpluginAudioProcessor::prepareToPlay(double sampleRate, int sampl
|
||||
}
|
||||
if (m_ready_to_play == false)
|
||||
{
|
||||
m_control->setFFTSize(0.7);
|
||||
m_control->setFFTSize(0.5);
|
||||
m_control->update_player_stretch();
|
||||
m_control->update_process_parameters();
|
||||
|
||||
|
Reference in New Issue
Block a user