Skip to content

Latest commit

 

History

History
113 lines (93 loc) · 2.78 KB

music_timidity.c

File metadata and controls

113 lines (93 loc) · 2.78 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
SDL_mixer: An audio mixer library based on the SDL library
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
/* This file supports playing MIDI files with timidity */
#ifdef MUSIC_MID_TIMIDITY
#include "music_timidity.h"
#include "timidity/timidity.h"
static int TIMIDITY_Open(const SDL_AudioSpec *spec)
{
Oct 18, 2017
Oct 18, 2017
33
return Timidity_Init();
34
35
36
37
}
static void TIMIDITY_Close(void)
{
Oct 18, 2017
Oct 18, 2017
38
Timidity_Exit();
39
40
41
42
}
void *TIMIDITY_CreateFromRW(SDL_RWops *src, int freesrc)
{
Oct 18, 2017
Oct 18, 2017
43
44
45
MidiSong *music = Timidity_LoadSong(src, &music_spec);
if (music && freesrc) {
SDL_RWclose(src);
46
47
48
49
50
51
}
return music;
}
static void TIMIDITY_SetVolume(void *context, int volume)
{
Oct 18, 2017
Oct 18, 2017
52
53
MidiSong *music = (MidiSong *)context;
Timidity_SetVolume(music, volume);
54
55
56
57
58
59
60
61
62
63
64
}
static int TIMIDITY_Play(void *context)
{
MidiSong *music = (MidiSong *)context;
Timidity_Start(music);
return 0;
}
static int TIMIDITY_GetAudio(void *context, void *data, int bytes)
{
Oct 18, 2017
Oct 18, 2017
65
66
67
68
69
MidiSong *music = (MidiSong *)context;
if (!Timidity_PlaySome(music, data, bytes)) {
/* Nothing consumed, everything left */
return bytes;
}
Oct 18, 2017
Oct 18, 2017
73
static int TIMIDITY_Seek(void *context, double position)
Oct 18, 2017
Oct 18, 2017
75
76
77
MidiSong *music = (MidiSong *)context;
Timidity_Seek(music, (Uint32)(position * 1000));
return 0;
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
}
static void TIMIDITY_Delete(void *context)
{
MidiSong *music = (MidiSong *)context;
Timidity_FreeSong(music);
}
Mix_MusicInterface Mix_MusicInterface_TIMIDITY =
{
"TIMIDITY",
MIX_MUSIC_TIMIDITY,
MUS_MID,
SDL_FALSE,
SDL_FALSE,
NULL, /* Load */
TIMIDITY_Open,
TIMIDITY_CreateFromRW,
NULL, /* CreateFromFile */
TIMIDITY_SetVolume,
TIMIDITY_Play,
Oct 18, 2017
Oct 18, 2017
100
NULL, /* IsPlaying */
Oct 18, 2017
Oct 18, 2017
102
TIMIDITY_Seek,
103
104
105
106
107
108
109
110
111
112
113
NULL, /* Pause */
NULL, /* Resume */
NULL, /* Stop */
TIMIDITY_Delete,
TIMIDITY_Close,
NULL, /* Unload */
};
#endif /* MUSIC_MID_TIMIDITY */
/* vi: set ts=4 sw=4 expandtab: */