AudioStretcher: split StretchAudio into ProcessSamples / GetStretchedSamples

This commit is contained in:
Michael Maltese
2017-04-23 19:11:43 -07:00
parent 87a467fe42
commit 14c3d4716f
4 changed files with 20 additions and 12 deletions

View File

@ -81,7 +81,7 @@ private:
bool m_is_stretching = false;
AudioCommon::AudioStretcher m_stretcher;
std::array<short, MAX_SAMPLES * 2> m_stretch_buffer;
std::array<short, MAX_SAMPLES * 2> m_scratch_buffer;
std::array<float, MAX_SAMPLES * 2> m_float_conversion_buffer;
WaveFileWriter m_wave_writer_dtk;