File: ambisonic3.h

package info (click to toggle)
amb-plugins 0.8.1-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 288 kB
  • ctags: 838
  • sloc: cpp: 3,628; makefile: 58
file content (143 lines) | stat: -rw-r--r-- 3,790 bytes parent folder | download | duplicates (5)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
    Copyright (C) 2009 Fons Adriaensen <fons@kokkinizita.net>
    and Jörn Nettingsmeier <nettings@stackingdwarves.net>
        
    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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/


#ifndef __AMBISONIC3_H
#define __AMBISONIC3_H


#include "ladspaplugin.h"


class Ladspa_Monopan31 : public LadspaPlugin
{
public:

    enum { INP,
           OUT_W,
           OUT_X, OUT_Y, 
           OUT_U, OUT_V, 
           OUT_P, OUT_Q, 
           OUT_Z,
           CTL_ELEV, CTL_AZIM, NPORT  };

    Ladspa_Monopan31 (unsigned long fsam) : LadspaPlugin (fsam) {}
    virtual void setport (unsigned long port, LADSPA_Data *data);  
    virtual void active  (bool act);  
    virtual void runproc (unsigned long len, bool add);
    virtual ~Ladspa_Monopan31 (void) {}  

private:

    void calcpar (float az, float el);

    float     *_port [NPORT];
    float      _xx, _yy, _uu, _vv, _pp, _qq, _zz;
};


class Ladspa_Rotator31 : public LadspaPlugin
{
public:

    enum { INP_W,
           INP_X, INP_Y, 
           INP_U, INP_V, 
           INP_P, INP_Q, 
           INP_Z,
           OUT_W, 
           OUT_X, OUT_Y, 
           OUT_U, OUT_V, 
           OUT_P, OUT_Q, 
           OUT_Z,
           CTL_AZIM, NPORT  };

    Ladspa_Rotator31 (unsigned long fsam) : LadspaPlugin (fsam) {}
    virtual void setport (unsigned long port, LADSPA_Data *data);  
    virtual void active  (bool act);  
    virtual void runproc (unsigned long len, bool add);
    virtual ~Ladspa_Rotator31 (void) {}  

private:

    void calcpar (float az);

    float *_port [NPORT];
    float   _c1, _s1, _c2, _s2, _c3, _s3;
};


class Ladspa_Monopan33 : public LadspaPlugin
{
public:

    enum { INP,
           OUT_W, 
           OUT_X, OUT_Y, OUT_Z, 
           OUT_R, OUT_S, OUT_T, OUT_U, OUT_V, 
           OUT_K, OUT_L, OUT_M, OUT_N, OUT_O, OUT_P, OUT_Q,
           CTL_ELEV, CTL_AZIM, NPORT  };

    Ladspa_Monopan33 (unsigned long fsam) : LadspaPlugin (fsam) {}
    virtual void setport (unsigned long port, LADSPA_Data *data);  
    virtual void active  (bool act);  
    virtual void runproc (unsigned long len, bool add);
    virtual ~Ladspa_Monopan33 (void) {}  

private:

    void calcpar (float az, float el);

    float *_port [NPORT];
    float  _xx, _yy, _zz, 
           _rr, _ss, _tt, _uu, _vv,
           _kk, _ll, _mm, _nn, _oo, _pp, _qq;
};


class Ladspa_Rotator33 : public LadspaPlugin
{
public:

    enum { INP_W, 
           INP_X, INP_Y, INP_Z, 
           INP_R, INP_S, INP_T, INP_U, INP_V,
           INP_K, INP_L, INP_M, INP_N, INP_O, INP_P, INP_Q,
           OUT_W, 
           OUT_X, OUT_Y, OUT_Z,
           OUT_R, OUT_S, OUT_T, OUT_U, OUT_V,
           OUT_K, OUT_L, OUT_M, OUT_N, OUT_O, OUT_P, OUT_Q,
           CTL_AZIM, NPORT  };

    Ladspa_Rotator33 (unsigned long fsam) : LadspaPlugin (fsam) {}
    virtual void setport (unsigned long port, LADSPA_Data *data);  
    virtual void active  (bool act);  
    virtual void runproc (unsigned long len, bool add);
    virtual ~Ladspa_Rotator33 (void) {}  

private:

    void calcpar (float az);

    float  *_port [NPORT];
    float   _c1, _s1, _c2, _s2, _c3, _s3;
};


#endif