File: convolution.h

package info (click to toggle)
x42-plugins 20140524-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,836 kB
  • ctags: 5,054
  • sloc: ansic: 56,233; cpp: 3,787; makefile: 1,264; objc: 689; sh: 3
file content (54 lines) | stat: -rw-r--r-- 1,956 bytes parent folder | download
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
/* convoLV2 -- LV2 convolution plugin
 *
 * Copyright (C) 2012 Robin Gareus <robin@gareus.org>
 *
 * 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, 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, see <http://www.gnu.org/licenses/>.
 */

#ifndef CONVOLUTION_H
#define CONVOLUTION_H

#define DEBUG_printf(FMT, ...) fprintf(stderr, FMT, ##__VA_ARGS__)
#define VERBOSE_printf(FMT, ...) fprintf(stderr, FMT, ##__VA_ARGS__)


#define MAX_CHANNEL_MAPS (4)

/* zita-convolver lib is C++ so we need extern "C" in order to link
 * functions using it. */
#ifdef __cplusplus
extern "C" {
#endif

typedef struct LV2convolv LV2convolv;

extern LV2convolv *clv_alloc();
extern void clv_free (LV2convolv *clv);

int clv_configure (LV2convolv *clv, const char *key, const char *value);
extern int clv_initialize (LV2convolv *clv, const unsigned int sample_rate, const unsigned int in_channel_cnt, const unsigned int out_channel_cnt, const unsigned int buffersize);
extern void clv_release (LV2convolv *clv);
void clv_clone_settings(LV2convolv *clv_new, LV2convolv *clv);

extern int clv_convolve (LV2convolv *clv, const float * const * inbuf, float * const* outbuf, const unsigned int in_channel_cnt, const unsigned int out_channel_cnt, const unsigned int n_samples);

int clv_query_setting (LV2convolv *clv, const char *key, char *value, size_t val_max_len);
char *clv_dump_settings (LV2convolv *clv);
int clv_is_active (LV2convolv *clv);

#ifdef __cplusplus
}
#endif

#endif