This repository was archived by the owner on Oct 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathc.convolve_tilde.cpp
171 lines (139 loc) · 4.33 KB
/
c.convolve_tilde.cpp
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
* Cream Library
* Copyright (C) 2013 Pierre Guillot, CICM - Université Paris 8
* All rights reserved.
* Website : https://github.com/CICM/CreamLibrary
* Contacts : cicm.mshparisnord@gmail.com
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution.
*/
#include "../c.library.hpp"
#include <algorithm>
#include <cstring>
#include <numeric>
#include <vector>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include "FFTConvolver.h"
#include "Utilities.h"
using namespace fftconvolver;
typedef struct _convolve
{
t_edspobj j_box;
FFTConvolver* f_convolver;
char f_normalize;
t_symbol* f_buffer_name;
} t_convolve;
static t_eclass *convolve_class;
static void *convolve_new(t_symbol *s, int argc, t_atom *argv)
{
t_convolve *x = NULL;
x = (t_convolve *)eobj_new(convolve_class);
eobj_dspsetup((t_ebox *)x, 1, 1);
x->f_buffer_name = NULL;
x->f_convolver = new FFTConvolver();
if(argc && argv && atom_gettype(argv) == A_SYMBOL)
x->f_buffer_name = atom_getsymbol(argv);
if(argc > 1 && argv && atom_gettype(argv+1) == A_SYMBOL && atom_getsymbol(argv+1) == gensym("normalize"))
x->f_normalize = 1;
else if(argc > 1 && argv && atom_gettype(argv+1) == A_FLOAT && atom_getlong(argv+1) > 0)
x->f_normalize = 1;
else
x->f_normalize = 0;
return (x);
}
static void convolve_set_do(t_convolve *x, t_symbol *s, char dsp)
{
t_garray *a = NULL;
x->f_buffer_name = s;
int buffer_size;
t_word* buffer;
float* temp;
if(!s)
return;
if (!(a = (t_garray *)pd_findbyclass(x->f_buffer_name, garray_class)))
{
pd_error(x, "c.convolve~: %s no such array.", x->f_buffer_name->s_name);
return;
}
else if (!garray_getfloatwords(a, &buffer_size, &buffer))
{
pd_error(x, "c.convolve~: %s array is empty.", x->f_buffer_name->s_name);
return;
}
else
{
int dsp_state;
if(!dsp)
{
dsp_state = canvas_suspend_dsp();
}
temp = (float *)malloc((size_t)buffer_size * sizeof(float));
for(int i = 0; i < buffer_size; i++)
{
temp[i] = buffer[i].w_float;
}
if(x->f_normalize)
{
float max = 0;
for(int i = 0; i < buffer_size; i++)
{
if(fabsf(temp[i]) > max)
max = fabsf(temp[i]);
}
if(max != 0)
{
max = 1.f / max;
for(int i = 0; i < buffer_size; i++)
{
temp[i] *= max;
}
}
}
x->f_convolver->reset();
x->f_convolver->init(1024, temp, (size_t)buffer_size);
free(temp);
if(!dsp)
canvas_resume_dsp(dsp_state);
}
}
static void convolve_set(t_convolve *x, t_symbol *s)
{
convolve_set_do(x, s, 0);
}
static void convolve_free(t_convolve *x)
{
delete x->f_convolver;
eobj_dspfree((t_ebox *)x);
}
static void convolve_normalize(t_convolve *x, float f)
{
x->f_normalize = (char)f;
if(x->f_normalize < 1)
x->f_normalize = 0;
else
x->f_normalize = 1;
convolve_set_do(x, x->f_buffer_name, 0);
}
static void convolve_perform(t_convolve *x, t_object *d, t_sample **ins, long ni, t_sample **outs, long no, long sampleframes, long f,void *up)
{
x->f_convolver->process(ins[0], outs[0], (size_t)sampleframes);
}
static void convolve_dsp(t_convolve *x, t_object *dsp, short *count, double samplerate, long maxvectorsize, long flags)
{
convolve_set_do(x, x->f_buffer_name, 1);
if(x->f_buffer_name)
object_method(dsp, gensym("dsp_add"), x, (method)convolve_perform, 0, NULL);
}
extern "C" void setup_c0x2econvolve_tilde(void)
{
t_eclass *c;
c = eclass_new("c.convolve~", (method)convolve_new, (method)convolve_free, (short)sizeof(t_convolve), 0L, A_GIMME, 0);
eclass_dspinit(c);
eclass_addmethod(c, (method) convolve_dsp, "dsp", A_NULL, 0);
eclass_addmethod(c, (method) convolve_set, "set", A_SYMBOL, 0);
eclass_addmethod(c, (method) convolve_normalize, "normalize", A_FLOAT, 0);
eclass_register(CLASS_OBJ, c);
convolve_class = c;
}