import 0.1.7.1
[aubio.git] / src / midi_file.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 /** \file
24  * midi file reader
25  */
26
27 #ifndef _AUBIO_MIDI_FILE_H
28 #define _AUBIO_MIDI_FILE_H
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 typedef struct _aubio_midi_file_t aubio_midi_file_t;
35
36
37 aubio_midi_file_t* new_aubio_midi_file(char* filename);
38 void del_aubio_midi_file(aubio_midi_file_t* mf);
39 int aubio_midi_file_read_mthd(aubio_midi_file_t* midifile);
40 int aubio_midi_file_load_tracks(aubio_midi_file_t* midifile, aubio_midi_player_t* player);
41 int aubio_midi_file_read_track(aubio_midi_file_t* mf, aubio_midi_player_t* player, int num);
42 int aubio_midi_file_read_event(aubio_midi_file_t* mf, aubio_track_t* track);
43 int aubio_midi_file_read_varlen(aubio_midi_file_t* mf);
44 int aubio_midi_file_getc(aubio_midi_file_t* mf);
45 int aubio_midi_file_push(aubio_midi_file_t* mf, int c);
46 int aubio_midi_file_read(aubio_midi_file_t* mf, void* buf, int len);
47 int aubio_midi_file_skip(aubio_midi_file_t* mf, int len);
48 int aubio_midi_file_read_tracklen(aubio_midi_file_t* mf);
49 int aubio_midi_file_eot(aubio_midi_file_t* mf);
50 int aubio_midi_file_get_division(aubio_midi_file_t* midifile);
51
52
53 /* From ctype.h */
54 #define aubio_isascii(c)    (((c) & ~0x7f) == 0)  
55 int aubio_isasciistring(char* s);
56 long aubio_getlength(unsigned char *s);
57
58 #ifdef __cplusplus
59 }
60 #endif
61
62 #endif /*_AUBIO_MIDI_FILE_H*/