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
|
#include "flsndobj.h"
//namespace flext {
flext_sndobj::flext_sndobj():
inobjs(0),outobjs(0),
inobj(NULL),tmpobj(NULL),outobj(NULL),
smprt(0),blsz(0)
{}
flext_sndobj::~flext_sndobj()
{
ClearObjs();
}
void flext_sndobj::ClearObjs()
{
FreeObjs();
if(inobj) {
for(int i = 0; i < inobjs; ++i) { delete inobj[i]; delete tmpobj[i]; }
delete[] inobj; inobj = NULL;
delete[] tmpobj; tmpobj = NULL;
inobjs = 0;
}
if(outobj) {
for(int i = 0; i < outobjs; ++i) delete outobj[i];
delete[] outobj; outobj = NULL; outobjs = 0;
}
}
void flext_sndobj::m_dsp(int n,t_sample *const *in,t_sample *const *out)
{
// called on every rebuild of the dsp chain
int i;
if(Blocksize() != blsz || Samplerate() != smprt) {
// block size or sample rate has changed... rebuild all objects
ClearObjs();
blsz = Blocksize();
smprt = Samplerate();
// set up sndobjs for inlets and outlets
inobj = new Inlet *[inobjs = CntInSig()];
tmpobj = new SndObj *[inobjs];
for(i = 0; i < inobjs; ++i) {
inobj[i] = new Inlet(in[i],blsz,smprt);
tmpobj[i] = new SndObj(NULL,blsz,smprt);
}
outobj = new Outlet *[outobjs = CntInSig()];
for(i = 0; i < outobjs; ++i) outobj[i] = new Outlet(out[i],blsz,smprt);
NewObjs();
}
else {
// assign changed input/output vectors
for(i = 0; i < inobjs; ++i) inobj[i]->SetBuf(in[i]);
for(i = 0; i < outobjs; ++i) outobj[i]->SetBuf(out[i]);
}
}
void flext_sndobj::m_signal(int n,t_sample *const *in,t_sample *const *out)
{
for(int i = 0; i < inobjs; ++i) *tmpobj[i] << *inobj[i];
ProcessObjs();
}
flext_sndobj::Inlet::Inlet(const t_sample *b,int vecsz,float sr):
SndIO(1,sizeof(t_sample)*8,NULL,vecsz,sr),buf(b)
{}
short flext_sndobj::Inlet::Read()
{
if(!m_error) {
for(m_vecpos = 0; m_vecpos < m_samples; m_vecpos++)
m_output[m_vecpos] = buf[m_vecpos];
return 1;
}
else return 0;
}
short flext_sndobj::Inlet::Write() { return 0; }
flext_sndobj::Outlet::Outlet(t_sample *b,int vecsz,float sr):
SndIO(1,sizeof(t_sample)*8,NULL,vecsz,sr),buf(b)
{}
short flext_sndobj::Outlet::Read() { return 0; }
short flext_sndobj::Outlet::Write()
{
if(!m_error) {
if(m_IOobjs[0])
for(m_vecpos = 0; m_vecpos < m_samples; m_vecpos++)
buf[m_vecpos] = m_IOobjs[0]->Output(m_vecpos);
return 1;
}
else return 0;
}
//} // namespace flext
|