feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since c3f4173 was
bccac6b,
checked in by Paul Brossier <piem@piem.org>, 15 years ago
|
ext/jackio.{c,h}: add support for jack midi
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | /* |
---|
2 | Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org> |
---|
3 | |
---|
4 | This file is part of aubio. |
---|
5 | |
---|
6 | aubio is free software: you can redistribute it and/or modify |
---|
7 | it under the terms of the GNU General Public License as published by |
---|
8 | the Free Software Foundation, either version 3 of the License, or |
---|
9 | (at your option) any later version. |
---|
10 | |
---|
11 | aubio is distributed in the hope that it will be useful, |
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | GNU General Public License for more details. |
---|
15 | |
---|
16 | You should have received a copy of the GNU General Public License |
---|
17 | along with aubio. If not, see <http://www.gnu.org/licenses/>. |
---|
18 | |
---|
19 | */ |
---|
20 | |
---|
21 | #ifndef JACKIO_H |
---|
22 | #define JACKIO_H |
---|
23 | |
---|
24 | /** |
---|
25 | * @file |
---|
26 | * |
---|
27 | * Jack driver for aubio |
---|
28 | * |
---|
29 | */ |
---|
30 | |
---|
31 | #ifdef __cplusplus |
---|
32 | extern "C" |
---|
33 | { |
---|
34 | #endif |
---|
35 | |
---|
36 | /** jack object */ |
---|
37 | typedef struct _aubio_jack_t aubio_jack_t; |
---|
38 | /** jack process function */ |
---|
39 | typedef int (*aubio_process_func_t) (smpl_t ** input, |
---|
40 | smpl_t ** output, int nframes); |
---|
41 | |
---|
42 | /** jack device creation function */ |
---|
43 | aubio_jack_t *new_aubio_jack (uint_t inchannels, uint_t outchannels, |
---|
44 | uint_t imidichan, uint_t omidichan, |
---|
45 | aubio_process_func_t callback); |
---|
46 | /** activate jack client (run jackprocess function) */ |
---|
47 | uint_t aubio_jack_activate (aubio_jack_t * jack_setup); |
---|
48 | /** close and delete jack client */ |
---|
49 | void aubio_jack_close (aubio_jack_t * jack_setup); |
---|
50 | |
---|
51 | #ifdef __cplusplus |
---|
52 | } |
---|
53 | #endif |
---|
54 | |
---|
55 | #endif /* JACKIO_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.