From 3a1ec3f60d95db9e9c020fa092771c995efaf43a Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Wed, 29 Oct 2008 21:03:57 +0000 Subject: [PATCH] limit processing of TAP Reflector to 192 KHz as it otherwise crashes git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1815 0778d3d1-df1d-0410-868b-ea421aaaa00d --- ChangeLog | 3 +++ plugins/ladspa_effect/ladspa_effect.cpp | 1 + 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index c6bdfca3d..1f503e928 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-10-29 Tobias Doerffel + * plugins/ladspa_effect/ladspa_effect.cpp: + limit processing of TAP Reflector to 192 KHz as it otherwise crashes + * include/timeline.h: * src/gui/piano_roll.cpp: fixed autoscroll feature in piano-roll (closes #2204508) diff --git a/plugins/ladspa_effect/ladspa_effect.cpp b/plugins/ladspa_effect/ladspa_effect.cpp index 576d4938c..79b3b6644 100644 --- a/plugins/ladspa_effect/ladspa_effect.cpp +++ b/plugins/ladspa_effect/ladspa_effect.cpp @@ -552,6 +552,7 @@ sample_rate_t ladspaEffect::maxSamplerate( const QString & _name ) __buggy_plugins["Chorus2"] = 44100; __buggy_plugins["Notch Filter"] = 96000; __buggy_plugins["Freeverb"] = 44100; + __buggy_plugins["TAP Reflector"] = 192000; } if( __buggy_plugins.contains( _name ) ) {