blob: 4f916af5aecda270c40cc04723c3031bbad9c672 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
//===========================================================================
//
// doublechorusmodel
//
// Version 0.0.1
//
//
//
//
// Copyright (c) 2006 Nil Geisweiller
//
//
//
// 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 the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
// 02111-1301, USA or point your web browser to http://www.gnu.org.
//===========================================================================
#ifndef __DOUBLECHORUSMODEL_H
#define __DOUBLECHORUSMODEL_H
#include "simplechorusmodel.h"
#include <ladspa.h>
#define NBRPARAM 7
class SimpleChorusModel;
class DoubleChorusModel {
SimpleChorusModel* _simpleChorus1;
SimpleChorusModel* _simpleChorus2;
float _dryWet; //0.0 : dry, 1.0 : wet
public:
LADSPA_Data* port[NBRPARAM + 4];
float param[NBRPARAM];
DoubleChorusModel(unsigned long samplerate);
~DoubleChorusModel();
void processMix(long numsamples);
void processReplace(long numsamples);
void setPan1(float value);
void setLFOFreq1(float value);
void setDepth1(float value);
void setPan2(float value);
void setLFOFreq2(float value);
void setDepth2(float value);
void setDryWet(float value);
float getPan1();
float getLFOFreq1();
float getDepth1();
float getPan2();
float getLFOFreq2();
float getDepth2();
float getDryWet();
void activate();
};
#endif
|