From b5dc393952c84dbd53c60afb8d367ad99bbd16ca Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sun, 27 Dec 2015 11:09:46 +0000 Subject: ported all effect plugins git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5899 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Effect/ladspa/ladspahost.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/plugins/Effect/ladspa/ladspahost.h') diff --git a/src/plugins/Effect/ladspa/ladspahost.h b/src/plugins/Effect/ladspa/ladspahost.h index b296fce38..df83c8083 100644 --- a/src/plugins/Effect/ladspa/ladspahost.h +++ b/src/plugins/Effect/ladspa/ladspahost.h @@ -1,7 +1,7 @@ /*************************************************************************** * Copyright (C) 2002,2003 Nick Lamb * * Copyright (C) 2005 Giacomo Lozito * - * Copyright (C) 2009 by Ilya Kotov * + * Copyright (C) 2009-2015 by Ilya Kotov * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -24,6 +24,7 @@ #include #include #include +#include #include #include "ladspa.h" @@ -84,8 +85,8 @@ public: virtual ~LADSPAHost(); - int applyEffect(qint16 *d, int length); - void configure(quint32 freq, int chan, Qmmp::AudioFormat format); + int applyEffect(float *data, size_t samples); + void configure(quint32 freq, int chan); QList plugins(); QList effects(); LADSPAEffect *addPlugin(LADSPAPlugin * plugin); @@ -106,7 +107,7 @@ private: LADSPA_Data m_left[MAX_SAMPLES], m_right[MAX_SAMPLES], m_trash[MAX_SAMPLES]; static LADSPAHost *m_instance; - int m_chan, m_prec; + int m_chan; quint32 m_freq; }; -- cgit v1.2.3-13-gbd6f