File: ambisonic2.h

package info (click to toggle)
amb-plugins 0.3.0-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 192 kB
  • ctags: 412
  • sloc: cpp: 1,664; makefile: 25
file content (70 lines) | stat: -rw-r--r-- 1,925 bytes parent folder | download
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
/*
    Copyright (C) 2004-2006 Fons Adriaensen
    
    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 (void);

    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 (void);

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



#endif