File: blo.h

package info (click to toggle)
swh-plugins 0.4.17-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,264 kB
  • sloc: ansic: 23,551; xml: 12,633; perl: 1,114; sh: 964; makefile: 218
file content (213 lines) | stat: -rw-r--r-- 5,959 bytes parent folder | download | duplicates (13)
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
    Copyright (C) 2002 Steve Harris <steve@plugin.org.uk>

    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.
*/

#include <math.h>
#include <stdio.h>
#include <unistd.h>

#include "ladspa-util.h"

#define BLO_N_WAVES 4
#define BLO_SINE    0
#define BLO_TRI     1
#define BLO_SQUARE  2
#define BLO_SAW     3

#define BLO_MMAP    0
#define BLO_MALLOC  1

#ifndef BLO_N_HARMONICS
#define BLO_N_HARMONICS 64
#endif

/* The wraparaound off the end of the basic wavetable, used by the
 * interpolators. */
#define BLO_TABLE_WR 4

#define BLO_SIN_GEN(phase) sin((phase) * 2.0f * (float)M_PI / table_size_f)
#define BLO_NEXT_TABLE     (all_tables + (table_count++ * (table_size + BLO_TABLE_WR)))

typedef struct {
	float *h_tables[BLO_N_WAVES][BLO_N_HARMONICS];
	float *alloc_space;
	size_t alloc_size;
	int table_size;
	int table_mask;
	int store_type;
} blo_h_tables;

typedef union {
	int all;
	struct {
		unsigned short fr;
		short in;
	} part;
} blo_fixp;

typedef struct {
	blo_h_tables *tables;
	float sample_rate;
	float nyquist;
	unsigned int wave;
	blo_fixp ph;
	blo_fixp om;
	float ph_coef;
	int ph_mask;
	int table_mask;
	int table_size;
	int topbit;
	float *table;
	float *table_b;
	float xfade;
} blo_h_osc;

blo_h_tables *blo_h_tables_new(int table_size);

void blo_h_tables_free(blo_h_tables *tables);

blo_h_osc *blo_h_new(blo_h_tables *tables, unsigned int wave,
	       	float sample_rate);

void blo_h_free(blo_h_osc *osc);

/* Set frequency for static oscilator, less cycles, but won't modulate as well
 * You can't use blo_osc_hd_run_* until you've called the _hd version of this
 * function.
 */

static inline void blo_hs_set_freq(blo_h_osc *this, const float f)
{
	unsigned int tab_num;
	const float ff = fabs(f) + 0.00001f; // Prevent div by zero

	// This needs to be a cast, no idea why
	this->om.all = (int)(f * this->ph_coef);
	tab_num = f_round(this->nyquist / ff - 0.5f);
	if (tab_num >= BLO_N_HARMONICS) {
		tab_num = BLO_N_HARMONICS - 1;
	}
	this->table_b = this->tables->h_tables[this->wave][tab_num];
}

/* Set frequency for dynamic oscilator, can only used with _hd run calls.
 */

static inline void blo_hd_set_freq(blo_h_osc *this, const float f)
{
	int tab_num;
	const float ff = fabs(f) + 0.00001f; // Prevent div by zero

	this->om.all = f_round(f * this->ph_coef);
	tab_num = abs(f_round(this->nyquist / ff - 0.5f));
	if (tab_num >= BLO_N_HARMONICS) {
		tab_num = BLO_N_HARMONICS - 1;
	} else if (tab_num < 0) {
		tab_num = 0;
	}
	this->table = this->tables->h_tables[this->wave][tab_num];
	this->xfade = this->nyquist / ff - tab_num;
	if (this->xfade > 1.0f) {
		this->xfade = 1.0f;
	}
	if (--tab_num < 0) {
		tab_num = 0;
	}
	this->table_b = this->tables->h_tables[this->wave][tab_num];
}

/* Run static oscilator, returns amplitude for current phase and advances the
 * phase. Uses linear interpoation */

static inline float blo_hs_run_lin(blo_h_osc *this)
{
	const float frac = (float)(this->ph.part.fr) * 0.00001525878f;
	const int idx = this->ph.part.in;

	this->ph.all += this->om.all;
	this->ph.all &= this->ph_mask;
	if (this->topbit != (this->ph.all & this->table_size)) {
		this->topbit = this->ph.all & this->table_size;
		this->table = this->table_b;
	}

	return this->table[idx] * (1.0f - frac) + this->table[idx+1] * frac;
}

/* Run static oscilator, returns amplitude for current phase and advances the
 * phase. Uses cubic interpoation */

static inline float blo_hs_run_cub(blo_h_osc *this)
{
	const float frac = (float)(this->ph.part.fr) * 0.00001525878f;
	const int idx = this->ph.part.in;
	float *t = this->table;

	this->ph.all += this->om.all;
	this->ph.all &= this->ph_mask;

	if (this->topbit != (this->ph.all & this->table_size)) {
		this->topbit = this->ph.all & this->table_size;
		this->table = this->table_b;
		t = this->table_b;
	}

	return cube_interp(frac, t[idx], t[idx+1], t[idx+2], t[idx+3]);
}

/* Run dynamic oscilator, returns amplitude for current phase and advances the
 * phase, ensures harmonics won't suddently pop into existence, takes more
 * cycles and has slightly less high frequency partials than the static
 * version */

static inline float blo_hd_run_lin(blo_h_osc * const this)
{
	float low, high;
	const float frac = (float)(this->ph.part.fr) * 0.00001525878f;
	const int idx = this->ph.part.in;

	this->ph.all += this->om.all;
	this->ph.all &= this->ph_mask;

	low = LIN_INTERP(frac, this->table_b[idx], this->table_b[idx+1]);
	high = LIN_INTERP(frac, this->table[idx], this->table[idx+1]);

	return LIN_INTERP(this->xfade, low, high);
}

/* Run dynamic oscilator, returns amplitude for current phase and advances the
 * phase, ensures harmonics won't suddently pop into existence, takes more
 * cycles and has slightly less high frequency partials than the static
 * version. This one uses cubic interpolation. */

static inline float blo_hd_run_cub(blo_h_osc * const this)
{
	float low, high;
	const float frac = (float)(this->ph.part.fr) * 0.00001525878f;
	const int idx = this->ph.part.in;
	const float *tl = this->table_b;
	const float *th = this->table;


	this->ph.all += this->om.all;
	this->ph.all &= this->ph_mask;

	low = cube_interp(frac, tl[idx], tl[idx+1], tl[idx+2], tl[idx+3]);
	high = cube_interp(frac, th[idx], th[idx+1], th[idx+2], th[idx+3]);

	return LIN_INTERP(this->xfade, low, high);
}