File: ambisonic2.h

package info (click to toggle)
amb-plugins 0.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 272 kB
  • ctags: 760
  • sloc: cpp: 3,261; makefile: 61
file content (122 lines) | stat: -rw-r--r-- 3,232 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
/*
    Copyright (C) 2004-2009 Fons Adriaensen <fons@kokkinizita.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 __AMBISONIC2_H
#define __AMBISONIC2_H


#include "ladspaplugin.h"


class Ladspa_Monopan21 : public LadspaPlugin
{
public:

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

    Ladspa_Monopan21 (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_Monopan21 (void) {}  

private:

    void calcpar (float az, float el);

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



class Ladspa_Rotator21 : public LadspaPlugin
{
public:

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

    Ladspa_Rotator21 (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_Rotator21 (void) {}  

private:

    void calcpar (float az);

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



class Ladspa_Monopan22 : public LadspaPlugin
{
public:

    enum { INP,
           OUT_W, OUT_X, OUT_Y, OUT_Z, OUT_R, OUT_S, OUT_T, OUT_U, OUT_V,
           CTL_ELEV, CTL_AZIM, NPORT  };

    Ladspa_Monopan22 (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_Monopan22 (void) {}  

private:

    void calcpar (float az, float el);

    float     *_port [NPORT];
    float      _xx, _yy, _zz, _rr, _ss, _tt, _uu, _vv;
};



class Ladspa_Rotator22 : public LadspaPlugin
{
public:

    enum { INP_W, INP_X, INP_Y, INP_Z, INP_R, INP_S, INP_T, INP_U, INP_V,
           OUT_W, OUT_X, OUT_Y, OUT_Z, OUT_R, OUT_S, OUT_T, OUT_U, OUT_V,
           CTL_AZIM, NPORT  };

    Ladspa_Rotator22 (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_Rotator22 (void) {}  

private:

    void calcpar (float az);

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


#endif