Skip to content

Latest commit

 

History

History
234 lines (203 loc) · 5.49 KB

music_ogg.c

File metadata and controls

234 lines (203 loc) · 5.49 KB
 
Dec 31, 2011
Dec 31, 2011
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SDL_mixer: An audio mixer library based on the SDL library
Copyright (C) 1997-2012 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.
20
21
*/
Dec 14, 2001
Dec 14, 2001
22
/* $Id$ */
Dec 14, 2001
Dec 14, 2001
23
24
25
26
27
28
#ifdef OGG_MUSIC
/* This file supports Ogg Vorbis music streams */
#include <stdio.h>
Dec 18, 2001
Dec 18, 2001
29
#include <stdlib.h>
30
31
32
#include <string.h>
#include "SDL_mixer.h"
May 12, 2006
May 12, 2006
33
#include "dynamic_ogg.h"
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include "music_ogg.h"
/* This is the format of the audio mixer data */
static SDL_AudioSpec mixer;
/* Initialize the Ogg Vorbis player, with the given mixer settings
This function returns 0, or -1 if there was an error.
*/
int OGG_init(SDL_AudioSpec *mixerfmt)
{
mixer = *mixerfmt;
return(0);
}
/* Set the volume for an OGG stream */
void OGG_setvolume(OGG_music *music, int volume)
{
music->volume = volume;
}
Aug 22, 2004
Aug 22, 2004
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
static size_t sdl_read_func(void *ptr, size_t size, size_t nmemb, void *datasource)
{
return SDL_RWread((SDL_RWops*)datasource, ptr, size, nmemb);
}
static int sdl_seek_func(void *datasource, ogg_int64_t offset, int whence)
{
return SDL_RWseek((SDL_RWops*)datasource, (int)offset, whence);
}
static long sdl_tell_func(void *datasource)
{
return SDL_RWtell((SDL_RWops*)datasource);
}
/* Load an OGG stream from an SDL_RWops object */
Dec 31, 2011
Dec 31, 2011
70
OGG_music *OGG_new_RW(SDL_RWops *rw, int freerw)
Aug 22, 2004
Aug 22, 2004
71
72
73
74
{
OGG_music *music;
ov_callbacks callbacks;
Jan 4, 2012
Jan 4, 2012
75
76
77
78
79
80
81
if ( !Mix_Init(MIX_INIT_OGG) ) {
if ( freerw ) {
SDL_RWclose(rw);
}
return(NULL);
}
Dec 31, 2011
Dec 31, 2011
82
SDL_memset(&callbacks, 0, sizeof(callbacks));
Aug 22, 2004
Aug 22, 2004
83
84
85
86
87
88
89
90
callbacks.read_func = sdl_read_func;
callbacks.seek_func = sdl_seek_func;
callbacks.tell_func = sdl_tell_func;
music = (OGG_music *)malloc(sizeof *music);
if ( music ) {
/* Initialize the music structure */
memset(music, 0, (sizeof *music));
Dec 31, 2011
Dec 31, 2011
91
92
music->rw = rw;
music->freerw = freerw;
Aug 22, 2004
Aug 22, 2004
93
94
95
96
OGG_stop(music);
OGG_setvolume(music, MIX_MAX_VOLUME);
music->section = -1;
May 12, 2006
May 12, 2006
97
if ( vorbis.ov_open_callbacks(rw, &music->vf, NULL, 0, callbacks) < 0 ) {
Aug 22, 2004
Aug 22, 2004
98
free(music);
Dec 31, 2011
Dec 31, 2011
99
100
101
if ( freerw ) {
SDL_RWclose(rw);
}
May 12, 2006
May 12, 2006
102
SDL_SetError("Not an Ogg Vorbis audio stream");
Aug 22, 2004
Aug 22, 2004
103
104
105
return(NULL);
}
} else {
Dec 31, 2011
Dec 31, 2011
106
107
108
if ( freerw ) {
SDL_RWclose(rw);
}
May 12, 2006
May 12, 2006
109
SDL_OutOfMemory();
Dec 31, 2011
Dec 31, 2011
110
return(NULL);
Aug 22, 2004
Aug 22, 2004
111
112
113
114
}
return(music);
}
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* Start playback of a given OGG stream */
void OGG_play(OGG_music *music)
{
music->playing = 1;
}
/* Return non-zero if a stream is currently playing */
int OGG_playing(OGG_music *music)
{
return(music->playing);
}
/* Read some Ogg stream data and convert it for output */
static void OGG_getsome(OGG_music *music)
{
int section;
int len;
char data[4096];
SDL_AudioCVT *cvt;
Jul 15, 2007
Jul 15, 2007
135
136
137
#ifdef OGG_USE_TREMOR
len = vorbis.ov_read(&music->vf, data, sizeof(data), &section);
#else
May 12, 2006
May 12, 2006
138
len = vorbis.ov_read(&music->vf, data, sizeof(data), 0, 2, 1, &section);
Jul 15, 2007
Jul 15, 2007
139
#endif
140
141
142
143
144
145
146
147
148
149
if ( len <= 0 ) {
if ( len == 0 ) {
music->playing = 0;
}
return;
}
cvt = &music->cvt;
if ( section != music->section ) {
vorbis_info *vi;
May 12, 2006
May 12, 2006
150
vi = vorbis.ov_info(&music->vf, -1);
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
SDL_BuildAudioCVT(cvt, AUDIO_S16, vi->channels, vi->rate,
mixer.format,mixer.channels,mixer.freq);
if ( cvt->buf ) {
free(cvt->buf);
}
cvt->buf = (Uint8 *)malloc(sizeof(data)*cvt->len_mult);
music->section = section;
}
if ( cvt->buf ) {
memcpy(cvt->buf, data, len);
if ( cvt->needed ) {
cvt->len = len;
SDL_ConvertAudio(cvt);
} else {
cvt->len_cvt = len;
}
music->len_available = music->cvt.len_cvt;
music->snd_available = music->cvt.buf;
} else {
Aug 18, 2001
Aug 18, 2001
170
SDL_SetError("Out of memory");
171
172
173
174
175
music->playing = 0;
}
}
/* Play some of a stream previously started with OGG_play() */
Nov 19, 2005
Nov 19, 2005
176
int OGG_playAudio(OGG_music *music, Uint8 *snd, int len)
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
int mixable;
while ( (len > 0) && music->playing ) {
if ( ! music->len_available ) {
OGG_getsome(music);
}
mixable = len;
if ( mixable > music->len_available ) {
mixable = music->len_available;
}
if ( music->volume == MIX_MAX_VOLUME ) {
memcpy(snd, music->snd_available, mixable);
} else {
SDL_MixAudio(snd, music->snd_available, mixable,
music->volume);
}
music->len_available -= mixable;
music->snd_available += mixable;
len -= mixable;
snd += mixable;
}
Nov 19, 2005
Nov 19, 2005
199
200
return len;
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
}
/* Stop playback of a stream previously started with OGG_play() */
void OGG_stop(OGG_music *music)
{
music->playing = 0;
}
/* Close the given OGG stream */
void OGG_delete(OGG_music *music)
{
if ( music ) {
if ( music->cvt.buf ) {
free(music->cvt.buf);
}
Dec 31, 2011
Dec 31, 2011
216
217
218
if ( music->freerw ) {
SDL_RWclose(music->rw);
}
May 12, 2006
May 12, 2006
219
vorbis.ov_clear(&music->vf);
220
221
222
223
free(music);
}
}
Dec 20, 2001
Dec 20, 2001
224
225
226
/* Jump (seek) to a given position (time is in seconds) */
void OGG_jump_to_time(OGG_music *music, double time)
{
Mar 16, 2011
Mar 16, 2011
227
228
229
#ifdef OGG_USE_TREMOR
vorbis.ov_time_seek( &music->vf, (ogg_int64_t)time );
#else
May 12, 2006
May 12, 2006
230
vorbis.ov_time_seek( &music->vf, time );
Mar 16, 2011
Mar 16, 2011
231
#endif
Dec 20, 2001
Dec 20, 2001
232
233
}
234
#endif /* OGG_MUSIC */