From dc213fefb59f5fa62baf8d7a7dc7e2c78a1d42d1 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Fri, 18 Jul 2008 23:45:34 +0000 Subject: [PATCH] also allow LADSPA-plugins which are not realtime capable - not all of them work properly but most do and it's better to provide more of them git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1348 0778d3d1-df1d-0410-868b-ea421aaaa00d --- src/core/ladspa_2_lmms.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/ladspa_2_lmms.cpp b/src/core/ladspa_2_lmms.cpp index edb691849..eb832cf89 100644 --- a/src/core/ladspa_2_lmms.cpp +++ b/src/core/ladspa_2_lmms.cpp @@ -2,7 +2,7 @@ * ladspa_2_lmms.cpp - class that identifies and instantiates LADSPA effects * for use with LMMS * - * Copyright (c) 2005-2007 Danny McRae + * Copyright (c) 2005-2008 Danny McRae * * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net * @@ -46,8 +46,8 @@ ladspa2LMMS::ladspa2LMMS( void ) ( desc->inputChannels == desc->outputChannels && ( desc->inputChannels == 1 || desc->inputChannels == 2 || - desc->inputChannels == 4 ) && - isRealTimeCapable( key ) ) ) + desc->inputChannels == 4 )/* && + isRealTimeCapable( key )*/ ) ) { m_validEffects.append( qMakePair( getName( key ), key ) );