feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since cd9b142 was
b60dd4ae,
checked in by Paul Brossier <piem@altern.org>, 20 years ago
|
moved midi functions to ext/
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | /* |
---|
2 | * |
---|
3 | * This library is free software; you can redistribute it and/or |
---|
4 | * modify it under the terms of the GNU Library General Public License |
---|
5 | * as published by the Free Software Foundation; either version 2 of |
---|
6 | * the License, or (at your option) any later version. |
---|
7 | * |
---|
8 | * This library is distributed in the hope that it will be useful, but |
---|
9 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
11 | * Library General Public License for more details. |
---|
12 | * |
---|
13 | * You should have received a copy of the GNU Library General Public |
---|
14 | * License along with this library; if not, write to the Free |
---|
15 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
---|
16 | * 02111-1307, USA |
---|
17 | */ |
---|
18 | |
---|
19 | /* this file originally taken from FluidSynth - A Software Synthesizer |
---|
20 | * Copyright (C) 2003 Peter Hanappe and others. |
---|
21 | */ |
---|
22 | |
---|
23 | |
---|
24 | /** \file |
---|
25 | * midi parser |
---|
26 | */ |
---|
27 | |
---|
28 | #ifndef _AUBIO_MIDI_PARSER_H |
---|
29 | #define _AUBIO_MIDI_PARSER_H |
---|
30 | |
---|
31 | |
---|
32 | #ifdef __cplusplus |
---|
33 | extern "C" { |
---|
34 | #endif |
---|
35 | |
---|
36 | /* How many parameters may a MIDI event have? */ |
---|
37 | #define AUBIO_MIDI_PARSER_MAX_PAR 3 |
---|
38 | |
---|
39 | typedef struct _aubio_midi_parser_t aubio_midi_parser_t; |
---|
40 | |
---|
41 | aubio_midi_parser_t* new_aubio_midi_parser(void); |
---|
42 | int del_aubio_midi_parser(aubio_midi_parser_t* parser); |
---|
43 | aubio_midi_event_t* aubio_midi_parser_parse(aubio_midi_parser_t* parser, unsigned char c); |
---|
44 | |
---|
45 | #ifdef __cplusplus |
---|
46 | } |
---|
47 | #endif |
---|
48 | |
---|
49 | #endif /*_AUBIO_MIDI_PARSER_H*/ |
---|
Note: See
TracBrowser
for help on using the repository browser.