source: ext/midi/midi_player.h @ b60dd4ae

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since b60dd4ae was b60dd4ae, checked in by Paul Brossier <piem@altern.org>, 19 years ago

moved midi functions to ext/

  • Property mode set to 100644
File size: 2.5 KB
RevLine 
[96fb8ad]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
34extern "C" {
35#endif
36
37typedef struct _aubio_midi_player_t aubio_midi_player_t;
38
39
40aubio_midi_player_t* new_aubio_midi_player(void);
41sint_t del_aubio_midi_player(aubio_midi_player_t* player);
42sint_t aubio_midi_player_reset(aubio_midi_player_t* player);
43sint_t aubio_midi_player_add_track(aubio_midi_player_t* player, aubio_track_t* track);
44sint_t aubio_midi_player_count_tracks(aubio_midi_player_t* player);
45aubio_track_t* aubio_midi_player_get_track(aubio_midi_player_t* player, sint_t i);
46sint_t aubio_midi_player_add(aubio_midi_player_t* player, char* midifile);
47sint_t aubio_midi_player_load(aubio_midi_player_t* player, char *filename);
48sint_t aubio_midi_player_callback(void* data, uint_t msec);
49sint_t aubio_midi_player_play(aubio_midi_player_t* player);
50sint_t aubio_midi_player_play_offline(aubio_midi_player_t* player);
51sint_t aubio_midi_player_stop(aubio_midi_player_t* player);
52sint_t aubio_midi_player_set_loop(aubio_midi_player_t* player, sint_t loop);
53sint_t aubio_midi_player_set_midi_tempo(aubio_midi_player_t* player, sint_t tempo);
54sint_t aubio_midi_player_set_bpm(aubio_midi_player_t* player, sint_t bpm);
55sint_t aubio_midi_player_join(aubio_midi_player_t* player);
56
57sint_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
62sint_t aubio_midi_send_event(aubio_midi_player_t* player, aubio_midi_event_t* event);
63sint_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*/
Note: See TracBrowser for help on using the repository browser.