Fix tsan reports. This does mean updating to C++11

This commit is contained in:
Chris Cannam
2021-05-12 11:12:02 +01:00
parent b7770c8832
commit 94d4467bfe
3 changed files with 17 additions and 19 deletions

View File

@@ -674,7 +674,7 @@ RubberBandStretcher::Impl::configure()
Resampler::Parameters params;
params.quality = Resampler::FastestTolerable;
params.dynamism = Resampler::RatioOftenChanging;
params.dynamism = Resampler::RatioMostlyFixed;
params.ratioChange = Resampler::SmoothRatioChange;
params.maxBufferSize = 4096 * 16;
params.debugLevel = m_debugLevel;
@@ -820,7 +820,7 @@ RubberBandStretcher::Impl::reconfigure()
Resampler::Parameters params;
params.quality = Resampler::FastestTolerable;
params.dynamism = Resampler::RatioOftenChanging;
params.dynamism = Resampler::RatioMostlyFixed;
params.ratioChange = Resampler::SmoothRatioChange;
params.maxBufferSize = m_sWindowSize;
params.debugLevel = m_debugLevel;