Browse Source

Use the input channel count parameter when initing capture. Readme change.

tags/1.0.1
xenakios 7 years ago
parent
commit
103a085304
2 changed files with 3 additions and 2 deletions
  1. +2
    -1
      Source/PluginProcessor.cpp
  2. +1
    -1
      readme.txt

+ 2
- 1
Source/PluginProcessor.cpp View File

@@ -625,7 +625,8 @@ void PaulstretchpluginAudioProcessor::setRecordingEnabled(bool b)
{
m_using_memory_buffer = true;
m_current_file = File();
m_recbuffer.setSize(getMainBusNumInputChannels(), m_max_reclen*getSampleRateChecked()+4096,false,false,true);
int numchans = *m_inchansparam;
m_recbuffer.setSize(numchans, m_max_reclen*getSampleRateChecked()+4096,false,false,true);
m_recbuffer.clear();
m_rec_pos = 0;
m_thumb->reset(m_recbuffer.getNumChannels(), getSampleRateChecked(), lenbufframes);


+ 1
- 1
readme.txt View File

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

History :

02-12-2018 1.0.1
02-13-2018 1.0.1
-Increased maximum number of input channels to 8
-GUI performance improvement/bug fix during capture mode
02-09-2018 1.0.0


Loading…
Cancel
Save