-
Notifications
You must be signed in to change notification settings - Fork 13
/
ladspa_utils.h
62 lines (52 loc) · 2.07 KB
/
ladspa_utils.h
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
/* utils.h
Free software by Richard W.E. Furse. Do with as you will. No
warranty. */
#ifndef LADSPA_SDK_LOAD_PLUGIN_LIB
#define LADSPA_SDK_LOAD_PLUGIN_LIB
#include "ladspa.h"
#include <stdint.h>
/* This function call takes a plugin library filename, searches for
the library along the LADSPA_PATH, loads it with dlopen() and
returns a plugin handle for use with findPluginDescriptor() or
unloadLADSPAPluginLibrary(). Errors are handled by writing a
message to stderr and calling exit(1). It is alright (although
inefficient) to call this more than once for the same file. */
void * LADSPAload(const char * pcPluginFilename);
/* This function unloads a LADSPA plugin library. */
void LADSPAunload(void * pvLADSPAPluginLibrary);
/* This function locates a LADSPA plugin within a plugin library
loaded with loadLADSPAPluginLibrary(). Errors are handled by
writing a message to stderr and calling exit(1). Note that the
plugin library filename is only included to help provide
informative error messages. */
const LADSPA_Descriptor *
LADSPAfind(void * pvLADSPAPluginLibrary,
const char * pcPluginLibraryFilename,
const char * pcPluginLabel);
/* Find the default value for a port. Return 0 if a default is found
and -1 if not. */
int LADSPADefault(const LADSPA_PortRangeHint * psPortRangeHint,
const unsigned long lSampleRate,
LADSPA_Data * pfResult);
/* MMAP to a controls file */
#define LADSPA_CNTRL_INPUT 0
#define LADSPA_CNTRL_OUTPUT 1
typedef struct LADSPA_Control_Data_ {
int32_t index;
LADSPA_Data data[16]; /* Max number of channels, would be nicer if
this wasn't a fixed number */
int32_t type;
} LADSPA_Control_Data;
typedef struct LADSPA_Control_ {
uint32_t length;
uint32_t id;
uint32_t channels;
uint32_t num_controls;
int32_t input_index;
int32_t output_index;
LADSPA_Control_Data control[];
} LADSPA_Control;
LADSPA_Control * LADSPAcontrolMMAP(const LADSPA_Descriptor *psDescriptor,
const char *controls_filename, unsigned int channels);
void LADSPAcontrolUnMMAP(LADSPA_Control *control);
#endif