-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdlmeter.c
223 lines (195 loc) · 7.37 KB
/
sdlmeter.c
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
214
215
216
217
218
219
220
221
222
223
/*
Copyright 2006-2016 David Robillard <[email protected]>
Copyright 2006 Steve Harris <[email protected]>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/** Include standard C headers */
#include <math.h>
#include <stdlib.h>
//#include "ui.c"
/**
LV2 headers are based on the URI of the specification they come from, so a
consistent convention can be used even for unofficial extensions. The URI
of the core LV2 specification is <http://lv2plug.in/ns/lv2core>, by
replacing `http:/` with `lv2` any header in the specification bundle can be
included, in this case `lv2.h`.
*/
#include "lv2/lv2plug.in/ns/ext/log/log.h"
#include "lv2/lv2plug.in/ns/ext/log/logger.h"
#include "lv2/lv2plug.in/ns/ext/state/state.h"
#include "lv2/lv2plug.in/ns/lv2core/lv2.h"
/**
The URI is the identifier for a plugin, and how the host associates this
implementation in code with its description in data. In this plugin it is
only used once in the code, but defining the plugin URI at the top of the
file is a good convention to follow. If this URI does not match that used
in the data files, the host will fail to load the plugin.
*/
#define METER_URI "http://m4l3z.abod.co/plugin/sdlmeter"
/**
In code, ports are referred to by index. An enumeration of port indices
should be defined for readability.
*/
typedef enum {
METER_INPUT = 0, // Audio input 0
METER_OUTPUT = 1 // Audio input 2 (stereo variant)
} PortIndex;
/**
Every plugin defines a private structure for the plugin instance. All data
associated with a plugin instance is stored here, and is available to
every instance method. In this simple plugin, only port buffers need to be
stored, since there is no additional instance data.
*/
typedef struct {
// Port buffers
const float* input;
float* output;
} Meter;
/**
The `instantiate()` function is called by the host to create a new plugin
instance. The host passes the plugin descriptor, sample rate, and bundle
path for plugins that need to load additional resources (e.g. waveforms).
The features parameter contains host-provided features defined in LV2
extensions, but this simple plugin does not use any.
This function is in the ``instantiation'' threading class, so no other
methods on this instance will be called concurrently with it.
*/
static LV2_Handle
instantiate(const LV2_Descriptor* descriptor,
double rate,
const char* bundle_path,
const LV2_Feature* const* features)
{
Meter* meter = (Meter*)calloc(1, sizeof(Meter));
return (LV2_Handle)meter;
}
/**
The `connect_port()` method is called by the host to connect a particular
port to a buffer. The plugin must store the data location, but data may not
be accessed except in run().
This method is in the ``audio'' threading class, and is called in the same
context as run().
*/
static void
connect_port(LV2_Handle instance,
uint32_t port,
void* data)
{
Meter* meter = (Meter*)instance;
switch ((PortIndex)port) {
case METER_INPUT:
meter->input = (const float*)data;
break;
case METER_OUTPUT:
meter->output = (float*)data;
break;
}
}
/**
The `activate()` method is called by the host to initialise and prepare the
plugin instance for running. The plugin must reset all internal state
except for buffer locations set by `connect_port()`. Since this plugin has
no other internal state, this method does nothing.
This method is in the ``instantiation'' threading class, so no other
methods on this instance will be called concurrently with it.
*/
static void
activate(LV2_Handle instance)
{
}
/**
The `run()` method is the main process function of the plugin. It processes
a block of audio in the audio context. Since this plugin is
`lv2:hardRTCapable`, `run()` must be real-time safe, so blocking (e.g. with
a mutex) or memory allocation are not allowed.
*/
static void
run(LV2_Handle instance, uint32_t n_samples)
{
const Meter* meter = (const Meter*)instance;
const float* const input = meter->input;
float* const output = meter->output;
for (uint32_t pos = 0; pos < n_samples; pos++) {
output[pos] = input[pos];
}
}
/**
The `deactivate()` method is the counterpart to `activate()`, and is called by
the host after running the plugin. It indicates that the host will not call
`run()` again until another call to `activate()` and is mainly useful for more
advanced plugins with ``live'' characteristics such as those with auxiliary
processing threads. As with `activate()`, this plugin has no use for this
information so this method does nothing.
This method is in the ``instantiation'' threading class, so no other
methods on this instance will be called concurrently with it.
*/
static void
deactivate(LV2_Handle instance)
{
}
/**
Destroy a plugin instance (counterpart to `instantiate()`).
This method is in the ``instantiation'' threading class, so no other
methods on this instance will be called concurrently with it.
*/
static void
cleanup(LV2_Handle instance)
{
free(instance);
}
/**
The `extension_data()` function returns any extension data supported by the
plugin. Note that this is not an instance method, but a function on the
plugin descriptor. It is usually used by plugins to implement additional
interfaces. This plugin does not have any extension data, so this function
returns NULL.
This method is in the ``discovery'' threading class, so no other functions
or methods in this plugin library will be called concurrently with it.
*/
static const void*
extension_data(const char* uri)
{
return NULL;
}
/**
Every plugin must define an `LV2_Descriptor`. It is best to define
descriptors statically to avoid leaking memory and non-portable shared
library constructors and destructors to clean up properly.
*/
static const LV2_Descriptor descriptor = {
METER_URI,
instantiate,
connect_port,
activate,
run,
deactivate,
cleanup,
extension_data
};
/**
The `lv2_descriptor()` function is the entry point to the plugin library. The
host will load the library and call this function repeatedly with increasing
indices to find all the plugins defined in the library. The index is not an
indentifier, the URI of the returned descriptor is used to determine the
identify of the plugin.
This method is in the ``discovery'' threading class, so no other functions
or methods in this plugin library will be called concurrently with it.
*/
LV2_SYMBOL_EXPORT
const LV2_Descriptor*
lv2_descriptor(uint32_t index)
{
switch (index) {
case 0: return &descriptor;
default: return NULL;
}
}