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 player |
---|
25 | */ |
---|
26 | |
---|
27 | |
---|
28 | #ifndef _AUBIO_MIDI_PLAYER_H |
---|
29 | #define _AUBIO_MIDI_PLAYER_H |
---|
30 | |
---|
31 | #define AUBIO_MIDI_PLAYER_MAX_TRACKS 128 |
---|
32 | |
---|
33 | #ifdef __cplusplus |
---|
34 | extern "C" { |
---|
35 | #endif |
---|
36 | |
---|
37 | typedef struct _aubio_midi_player_t aubio_midi_player_t; |
---|
38 | |
---|
39 | |
---|
40 | aubio_midi_player_t* new_aubio_midi_player(void); |
---|
41 | sint_t del_aubio_midi_player(aubio_midi_player_t* player); |
---|
42 | sint_t aubio_midi_player_reset(aubio_midi_player_t* player); |
---|
43 | sint_t aubio_midi_player_add_track(aubio_midi_player_t* player, aubio_track_t* track); |
---|
44 | sint_t aubio_midi_player_count_tracks(aubio_midi_player_t* player); |
---|
45 | aubio_track_t* aubio_midi_player_get_track(aubio_midi_player_t* player, sint_t i); |
---|
46 | sint_t aubio_midi_player_add(aubio_midi_player_t* player, char* midifile); |
---|
47 | sint_t aubio_midi_player_load(aubio_midi_player_t* player, char *filename); |
---|
48 | sint_t aubio_midi_player_callback(void* data, uint_t msec); |
---|
49 | sint_t aubio_midi_player_play(aubio_midi_player_t* player); |
---|
50 | sint_t aubio_midi_player_play_offline(aubio_midi_player_t* player); |
---|
51 | sint_t aubio_midi_player_stop(aubio_midi_player_t* player); |
---|
52 | sint_t aubio_midi_player_set_loop(aubio_midi_player_t* player, sint_t loop); |
---|
53 | sint_t aubio_midi_player_set_midi_tempo(aubio_midi_player_t* player, sint_t tempo); |
---|
54 | sint_t aubio_midi_player_set_bpm(aubio_midi_player_t* player, sint_t bpm); |
---|
55 | sint_t aubio_midi_player_join(aubio_midi_player_t* player); |
---|
56 | |
---|
57 | sint_t aubio_track_send_events(aubio_track_t* track, |
---|
58 | /* aubio_synth_t* synth, */ |
---|
59 | aubio_midi_player_t* player, |
---|
60 | uint_t ticks); |
---|
61 | |
---|
62 | sint_t aubio_midi_send_event(aubio_midi_player_t* player, aubio_midi_event_t* event); |
---|
63 | sint_t aubio_midi_receive_event(aubio_midi_player_t* player, aubio_midi_event_t* event); |
---|
64 | |
---|
65 | #ifdef __cplusplus |
---|
66 | } |
---|
67 | #endif |
---|
68 | |
---|
69 | #endif /* _AUBIO_MIDI_PLAYER_H*/ |
---|