Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
217 lines (178 loc) · 6.41 KB

SDL_beaudio.cc

File metadata and controls

217 lines (178 loc) · 6.41 KB
 
Apr 26, 2001
Apr 26, 2001
1
/*
Apr 8, 2011
Apr 8, 2011
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Simple DirectMedia Layer
Copyright (C) 1997-2011 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.
Apr 26, 2001
Apr 26, 2001
20
*/
Feb 21, 2006
Feb 21, 2006
21
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
22
23
24
25
26
/* Allow access to the audio stream on BeOS */
#include <SoundPlayer.h>
Feb 17, 2006
Feb 17, 2006
27
#include "../../main/beos/SDL_BeApp.h"
Apr 26, 2001
Apr 26, 2001
28
Jul 10, 2006
Jul 10, 2006
29
30
extern "C"
{
Apr 26, 2001
Apr 26, 2001
31
32
#include "SDL_audio.h"
Feb 16, 2006
Feb 16, 2006
33
34
#include "../SDL_audio_c.h"
#include "../SDL_sysaudio.h"
Feb 17, 2006
Feb 17, 2006
35
#include "../../thread/beos/SDL_systhread_c.h"
Apr 26, 2001
Apr 26, 2001
36
37
#include "SDL_beaudio.h"
Oct 17, 2006
Oct 17, 2006
38
}
Apr 26, 2001
Apr 26, 2001
39
40
Oct 17, 2006
Oct 17, 2006
41
42
43
44
45
46
47
/* !!! FIXME: have the callback call the higher level to avoid code dupe. */
/* The BeOS callback for handling the audio buffer */
static void
FillSound(void *device, void *stream, size_t len,
const media_raw_audio_format & format)
{
SDL_AudioDevice *audio = (SDL_AudioDevice *) device;
Jul 10, 2006
Jul 10, 2006
48
Oct 17, 2006
Oct 17, 2006
49
50
/* Silence the buffer, since it's ours */
SDL_memset(stream, audio->spec.silence, len);
Jul 10, 2006
Jul 10, 2006
51
Oct 17, 2006
Oct 17, 2006
52
53
54
/* Only do soemthing if audio is enabled */
if (!audio->enabled)
return;
Apr 26, 2001
Apr 26, 2001
55
Oct 17, 2006
Oct 17, 2006
56
57
58
59
if (!audio->paused) {
if (audio->convert.needed) {
SDL_mutexP(audio->mixer_lock);
(*audio->spec.callback) (audio->spec.userdata,
Oct 28, 2006
Oct 28, 2006
60
61
(Uint8 *) audio->convert.buf,
audio->convert.len);
Oct 17, 2006
Oct 17, 2006
62
63
64
65
66
67
SDL_mutexV(audio->mixer_lock);
SDL_ConvertAudio(&audio->convert);
SDL_memcpy(stream, audio->convert.buf, audio->convert.len_cvt);
} else {
SDL_mutexP(audio->mixer_lock);
(*audio->spec.callback) (audio->spec.userdata,
Oct 28, 2006
Oct 28, 2006
68
(Uint8 *) stream, len);
Oct 17, 2006
Oct 17, 2006
69
SDL_mutexV(audio->mixer_lock);
Jul 10, 2006
Jul 10, 2006
70
71
}
}
Oct 17, 2006
Oct 17, 2006
72
}
Apr 26, 2001
Apr 26, 2001
73
Oct 17, 2006
Oct 17, 2006
74
75
76
77
78
79
80
81
static void
BEOSAUDIO_CloseDevice(_THIS)
{
if (_this->hidden != NULL) {
if (_this->hidden->audio_obj) {
_this->hidden->audio_obj->Stop();
delete _this->hidden->audio_obj;
_this->hidden->audio_obj = NULL;
Jul 10, 2006
Jul 10, 2006
82
83
}
Oct 17, 2006
Oct 17, 2006
84
85
delete _this->hidden;
_this->hidden = NULL;
Jul 10, 2006
Jul 10, 2006
86
}
Oct 17, 2006
Oct 17, 2006
87
}
Jul 10, 2006
Jul 10, 2006
88
Oct 17, 2006
Oct 17, 2006
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
static int
BEOSAUDIO_OpenDevice(_THIS, const char *devname, int iscapture)
{
int valid_datatype = 0;
media_raw_audio_format format;
SDL_AudioFormat test_format = SDL_FirstAudioFormat(_this->spec.format);
/* Initialize all variables that we clean on shutdown */
_this->hidden = new SDL_PrivateAudioData;
if (_this->hidden == NULL) {
SDL_OutOfMemory();
return 0;
}
SDL_memset(_this->hidden, 0, (sizeof *_this->hidden));
/* Parse the audio format and fill the Be raw audio format */
SDL_memset(&format, '\0', sizeof(media_raw_audio_format));
format.byte_order = B_MEDIA_LITTLE_ENDIAN;
format.frame_rate = (float) _this->spec.freq;
Oct 28, 2006
Oct 28, 2006
108
format.channel_count = _this->spec.channels; /* !!! FIXME: support > 2? */
Oct 17, 2006
Oct 17, 2006
109
110
111
112
while ((!valid_datatype) && (test_format)) {
valid_datatype = 1;
_this->spec.format = test_format;
switch (test_format) {
Oct 28, 2006
Oct 28, 2006
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
case AUDIO_S8:
format.format = media_raw_audio_format::B_AUDIO_CHAR;
break;
case AUDIO_U8:
format.format = media_raw_audio_format::B_AUDIO_UCHAR;
break;
case AUDIO_S16LSB:
format.format = media_raw_audio_format::B_AUDIO_SHORT;
break;
case AUDIO_S16MSB:
format.format = media_raw_audio_format::B_AUDIO_SHORT;
format.byte_order = B_MEDIA_BIG_ENDIAN;
break;
case AUDIO_S32LSB:
format.format = media_raw_audio_format::B_AUDIO_INT;
break;
case AUDIO_S32MSB:
format.format = media_raw_audio_format::B_AUDIO_INT;
format.byte_order = B_MEDIA_BIG_ENDIAN;
break;
case AUDIO_F32LSB:
format.format = media_raw_audio_format::B_AUDIO_FLOAT;
break;
case AUDIO_F32MSB:
format.format = media_raw_audio_format::B_AUDIO_FLOAT;
format.byte_order = B_MEDIA_BIG_ENDIAN;
break;
default:
valid_datatype = 0;
test_format = SDL_NextAudioFormat();
break;
Jul 10, 2006
Jul 10, 2006
152
}
Oct 17, 2006
Oct 17, 2006
153
}
Aug 31, 2006
Aug 31, 2006
154
Oct 17, 2006
Oct 17, 2006
155
format.buffer_size = _this->spec.samples;
Jul 10, 2006
Jul 10, 2006
156
Oct 28, 2006
Oct 28, 2006
157
if (!valid_datatype) { /* shouldn't happen, but just in case... */
Oct 17, 2006
Oct 17, 2006
158
159
160
161
BEOSAUDIO_CloseDevice(_this);
SDL_SetError("Unsupported audio format");
return 0;
}
Aug 31, 2006
Aug 31, 2006
162
Oct 17, 2006
Oct 17, 2006
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/* Calculate the final parameters for this audio specification */
SDL_CalculateAudioSpec(&_this->spec);
/* Subscribe to the audio stream (creates a new thread) */
sigset_t omask;
SDL_MaskSignals(&omask);
_this->hidden->audio_obj = new BSoundPlayer(&format, "SDL Audio",
FillSound, NULL, _this);
SDL_UnmaskSignals(&omask);
if (_this->hidden->audio_obj->Start() == B_NO_ERROR) {
_this->hidden->audio_obj->SetHasData(true);
} else {
BEOSAUDIO_CloseDevice(_this);
SDL_SetError("Unable to start Be audio");
return 0;
}
Aug 31, 2006
Aug 31, 2006
180
Oct 17, 2006
Oct 17, 2006
181
182
183
/* We're running! */
return 1;
}
Jul 10, 2006
Jul 10, 2006
184
Oct 17, 2006
Oct 17, 2006
185
186
187
188
189
static void
BEOSAUDIO_Deinitialize(void)
{
SDL_QuitBeApp();
}
Jul 10, 2006
Jul 10, 2006
190
Oct 17, 2006
Oct 17, 2006
191
static int
Oct 28, 2006
Oct 28, 2006
192
BEOSAUDIO_Init(SDL_AudioDriverImpl * impl)
Oct 17, 2006
Oct 17, 2006
193
194
195
196
{
/* Initialize the Be Application, if it's not already started */
if (SDL_InitBeApp() < 0) {
return 0;
Jul 10, 2006
Jul 10, 2006
197
198
}
Oct 17, 2006
Oct 17, 2006
199
200
201
202
203
204
205
/* Set the function pointers */
impl->OpenDevice = BEOSAUDIO_OpenDevice;
impl->CloseDevice = BEOSAUDIO_CloseDevice;
impl->Deinitialize = BEOSAUDIO_Deinitialize;
impl->ProvidesOwnCallbackThread = 1;
impl->OnlyHasDefaultOutputDevice = 1;
Jan 26, 2010
Jan 26, 2010
206
return 1; /* this audio target is available. */
Oct 17, 2006
Oct 17, 2006
207
208
}
Oct 28, 2006
Oct 28, 2006
209
210
211
212
extern "C"
{
extern AudioBootStrap BEOSAUDIO_bootstrap;
}
Oct 17, 2006
Oct 17, 2006
213
214
215
AudioBootStrap BEOSAUDIO_bootstrap = {
"baudio", "BeOS BSoundPlayer", BEOSAUDIO_Init, 0
};
Jul 10, 2006
Jul 10, 2006
216
217
/* vi: set ts=4 sw=4 expandtab: */