import 0.1.7.1
[aubio.git] / src / midi_parser.h
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*/