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

Latest commit

 

History

History
413 lines (355 loc) · 12.3 KB

SDL_winmm.c

File metadata and controls

413 lines (355 loc) · 12.3 KB
 
Jun 22, 2011
Jun 22, 2011
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
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.
*/
#include "SDL_config.h"
Oct 31, 2011
Oct 31, 2011
23
24
#if SDL_AUDIO_DRIVER_WINMM
Jun 22, 2011
Jun 22, 2011
25
26
27
28
29
30
31
32
/* Allow access to a raw mixing buffer */
#include "../../core/windows/SDL_windows.h"
#include <mmsystem.h>
#include "SDL_timer.h"
#include "SDL_audio.h"
#include "../SDL_audio_c.h"
Aug 4, 2011
Aug 4, 2011
33
#include "SDL_winmm.h"
Jun 22, 2011
Jun 22, 2011
34
35
36
37
#if defined(_WIN32_WCE) && (_WIN32_WCE < 300)
#include "win_ce_semaphore.h"
#endif
Aug 4, 2011
Aug 4, 2011
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#define DETECT_DEV_IMPL(typ, capstyp) \
static void DetectWave##typ##Devs(SDL_AddAudioDevice addfn) { \
const UINT devcount = wave##typ##GetNumDevs(); \
capstyp caps; \
UINT i; \
for (i = 0; i < devcount; i++) { \
if (wave##typ##GetDevCaps(i,&caps,sizeof(caps))==MMSYSERR_NOERROR) { \
char *name = WIN_StringToUTF8(caps.szPname); \
if (name != NULL) { \
addfn(name); \
SDL_free(name); \
} \
} \
} \
Aug 4, 2011
Aug 4, 2011
52
53
}
Aug 4, 2011
Aug 4, 2011
54
55
DETECT_DEV_IMPL(Out, WAVEOUTCAPS)
DETECT_DEV_IMPL(In, WAVEINCAPS)
Aug 4, 2011
Aug 4, 2011
56
Aug 4, 2011
Aug 4, 2011
57
58
static void
WINMM_DetectDevices(int iscapture, SDL_AddAudioDevice addfn)
Aug 4, 2011
Aug 4, 2011
59
{
Aug 4, 2011
Aug 4, 2011
60
61
62
63
if (iscapture) {
DetectWaveInDevs(addfn);
} else {
DetectWaveOutDevs(addfn);
Aug 4, 2011
Aug 4, 2011
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
}
}
static void CALLBACK
CaptureSound(HWAVEIN hwi, UINT uMsg, DWORD_PTR dwInstance,
DWORD_PTR dwParam1, DWORD_PTR dwParam2)
{
SDL_AudioDevice *this = (SDL_AudioDevice *) dwInstance;
/* Only service "buffer is filled" messages */
if (uMsg != WIM_DATA)
return;
/* Signal that we have a new buffer of data */
#if defined(_WIN32_WCE) && (_WIN32_WCE < 300)
ReleaseSemaphoreCE(this->hidden->audio_sem, 1, NULL);
Jun 22, 2011
Jun 22, 2011
80
#else
Aug 4, 2011
Aug 4, 2011
81
ReleaseSemaphore(this->hidden->audio_sem, 1, NULL);
Jun 22, 2011
Jun 22, 2011
82
#endif
Aug 4, 2011
Aug 4, 2011
83
84
}
Jun 22, 2011
Jun 22, 2011
85
86
87
88
/* The Win32 callback for filling the WAVE device */
static void CALLBACK
FillSound(HWAVEOUT hwo, UINT uMsg, DWORD_PTR dwInstance,
Aug 4, 2011
Aug 4, 2011
89
DWORD_PTR dwParam1, DWORD_PTR dwParam2)
Jun 22, 2011
Jun 22, 2011
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
SDL_AudioDevice *this = (SDL_AudioDevice *) dwInstance;
/* Only service "buffer done playing" messages */
if (uMsg != WOM_DONE)
return;
/* Signal that we are done playing a buffer */
#if defined(_WIN32_WCE) && (_WIN32_WCE < 300)
ReleaseSemaphoreCE(this->hidden->audio_sem, 1, NULL);
#else
ReleaseSemaphore(this->hidden->audio_sem, 1, NULL);
#endif
}
static void
SetMMerror(char *function, MMRESULT code)
{
size_t len;
char errbuf[MAXERRORLENGTH];
wchar_t werrbuf[MAXERRORLENGTH];
SDL_snprintf(errbuf, SDL_arraysize(errbuf), "%s: ", function);
len = SDL_strlen(errbuf);
waveOutGetErrorText(code, werrbuf, MAXERRORLENGTH - len);
WideCharToMultiByte(CP_ACP, 0, werrbuf, -1, errbuf + len,
MAXERRORLENGTH - len, NULL, NULL);
SDL_SetError("%s", errbuf);
}
static void
Aug 4, 2011
Aug 4, 2011
123
WINMM_WaitDevice(_THIS)
Jun 22, 2011
Jun 22, 2011
124
125
126
127
128
129
130
131
132
{
/* Wait for an audio chunk to finish */
#if defined(_WIN32_WCE) && (_WIN32_WCE < 300)
WaitForSemaphoreCE(this->hidden->audio_sem, INFINITE);
#else
WaitForSingleObject(this->hidden->audio_sem, INFINITE);
#endif
}
Aug 4, 2011
Aug 4, 2011
133
134
static Uint8 *
WINMM_GetDeviceBuf(_THIS)
Jun 22, 2011
Jun 22, 2011
135
136
137
138
139
{
return (Uint8 *) (this->hidden->
wavebuf[this->hidden->next_buffer].lpData);
}
Aug 4, 2011
Aug 4, 2011
140
141
static void
WINMM_PlayDevice(_THIS)
Jun 22, 2011
Jun 22, 2011
142
143
{
/* Queue it up */
Aug 4, 2011
Aug 4, 2011
144
waveOutWrite(this->hidden->hout,
Jun 22, 2011
Jun 22, 2011
145
146
147
148
149
&this->hidden->wavebuf[this->hidden->next_buffer],
sizeof(this->hidden->wavebuf[0]));
this->hidden->next_buffer = (this->hidden->next_buffer + 1) % NUM_BUFFERS;
}
Aug 4, 2011
Aug 4, 2011
150
151
static void
WINMM_WaitDone(_THIS)
Jun 22, 2011
Jun 22, 2011
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
int i, left;
do {
left = NUM_BUFFERS;
for (i = 0; i < NUM_BUFFERS; ++i) {
if (this->hidden->wavebuf[i].dwFlags & WHDR_DONE) {
--left;
}
}
if (left > 0) {
SDL_Delay(100);
}
} while (left > 0);
}
Aug 4, 2011
Aug 4, 2011
168
169
static void
WINMM_CloseDevice(_THIS)
Jun 22, 2011
Jun 22, 2011
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
/* Close up audio */
if (this->hidden != NULL) {
int i;
if (this->hidden->audio_sem) {
#if defined(_WIN32_WCE) && (_WIN32_WCE < 300)
CloseSynchHandle(this->hidden->audio_sem);
#else
CloseHandle(this->hidden->audio_sem);
#endif
this->hidden->audio_sem = 0;
}
Aug 4, 2011
Aug 4, 2011
184
185
186
187
188
189
190
191
if (this->hidden->hin) {
waveInClose(this->hidden->hin);
this->hidden->hin = 0;
}
if (this->hidden->hout) {
waveOutClose(this->hidden->hout);
this->hidden->hout = 0;
Jun 22, 2011
Jun 22, 2011
192
193
194
195
196
}
/* Clean up mixing buffers */
for (i = 0; i < NUM_BUFFERS; ++i) {
if (this->hidden->wavebuf[i].dwUser != 0xFFFF) {
Aug 4, 2011
Aug 4, 2011
197
waveOutUnprepareHeader(this->hidden->hout,
Jun 22, 2011
Jun 22, 2011
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
&this->hidden->wavebuf[i],
sizeof(this->hidden->wavebuf[i]));
this->hidden->wavebuf[i].dwUser = 0xFFFF;
}
}
if (this->hidden->mixbuf != NULL) {
/* Free raw mixing buffer */
SDL_free(this->hidden->mixbuf);
this->hidden->mixbuf = NULL;
}
SDL_free(this->hidden);
this->hidden = NULL;
}
}
Aug 4, 2011
Aug 4, 2011
215
216
static int
WINMM_OpenDevice(_THIS, const char *devname, int iscapture)
Jun 22, 2011
Jun 22, 2011
217
218
219
220
221
{
SDL_AudioFormat test_format = SDL_FirstAudioFormat(this->spec.format);
int valid_datatype = 0;
MMRESULT result;
WAVEFORMATEX waveformat;
Aug 4, 2011
Aug 4, 2011
222
223
UINT_PTR devId = WAVE_MAPPER; /* WAVE_MAPPER == choose system's default */
char *utf8 = NULL;
Jun 22, 2011
Jun 22, 2011
224
225
int i;
Aug 4, 2011
Aug 4, 2011
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
if (devname != NULL) { /* specific device requested? */
if (iscapture) {
const int devcount = (int) waveInGetNumDevs();
WAVEINCAPS caps;
for (i = 0; (i < devcount) && (devId == WAVE_MAPPER); i++) {
result = waveInGetDevCaps(i, &caps, sizeof (caps));
if (result != MMSYSERR_NOERROR)
continue;
else if ((utf8 = WIN_StringToUTF8(caps.szPname)) == NULL)
continue;
else if (SDL_strcmp(devname, utf8) == 0)
devId = (UINT_PTR) i;
SDL_free(utf8);
}
} else {
const int devcount = (int) waveOutGetNumDevs();
WAVEOUTCAPS caps;
for (i = 0; (i < devcount) && (devId == WAVE_MAPPER); i++) {
result = waveOutGetDevCaps(i, &caps, sizeof (caps));
if (result != MMSYSERR_NOERROR)
continue;
else if ((utf8 = WIN_StringToUTF8(caps.szPname)) == NULL)
continue;
else if (SDL_strcmp(devname, utf8) == 0)
devId = (UINT_PTR) i;
SDL_free(utf8);
}
}
if (devId == WAVE_MAPPER) {
SDL_SetError("Requested device not found");
return 0;
}
}
Jun 22, 2011
Jun 22, 2011
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/* Initialize all variables that we clean on shutdown */
this->hidden = (struct SDL_PrivateAudioData *)
SDL_malloc((sizeof *this->hidden));
if (this->hidden == NULL) {
SDL_OutOfMemory();
return 0;
}
SDL_memset(this->hidden, 0, (sizeof *this->hidden));
/* Initialize the wavebuf structures for closing */
for (i = 0; i < NUM_BUFFERS; ++i)
this->hidden->wavebuf[i].dwUser = 0xFFFF;
while ((!valid_datatype) && (test_format)) {
valid_datatype = 1;
this->spec.format = test_format;
switch (test_format) {
case AUDIO_U8:
case AUDIO_S16:
case AUDIO_S32:
break; /* valid. */
default:
valid_datatype = 0;
test_format = SDL_NextAudioFormat();
break;
}
}
if (!valid_datatype) {
Aug 4, 2011
Aug 4, 2011
291
WINMM_CloseDevice(this);
Jun 22, 2011
Jun 22, 2011
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
SDL_SetError("Unsupported audio format");
return 0;
}
/* Set basic WAVE format parameters */
SDL_memset(&waveformat, '\0', sizeof(waveformat));
waveformat.wFormatTag = WAVE_FORMAT_PCM;
waveformat.wBitsPerSample = SDL_AUDIO_BITSIZE(this->spec.format);
if (this->spec.channels > 2)
this->spec.channels = 2; /* !!! FIXME: is this right? */
waveformat.nChannels = this->spec.channels;
waveformat.nSamplesPerSec = this->spec.freq;
waveformat.nBlockAlign =
waveformat.nChannels * (waveformat.wBitsPerSample / 8);
waveformat.nAvgBytesPerSec =
waveformat.nSamplesPerSec * waveformat.nBlockAlign;
/* Check the buffer size -- minimum of 1/4 second (word aligned) */
if (this->spec.samples < (this->spec.freq / 4))
this->spec.samples = ((this->spec.freq / 4) + 3) & ~3;
/* Update the fragment size as size in bytes */
SDL_CalculateAudioSpec(&this->spec);
/* Open the audio device */
Aug 4, 2011
Aug 4, 2011
319
320
321
322
323
324
325
326
327
328
if (iscapture) {
result = waveInOpen(&this->hidden->hin, devId, &waveformat,
(DWORD_PTR) CaptureSound, (DWORD_PTR) this,
CALLBACK_FUNCTION);
} else {
result = waveOutOpen(&this->hidden->hout, devId, &waveformat,
(DWORD_PTR) FillSound, (DWORD_PTR) this,
CALLBACK_FUNCTION);
}
Jun 22, 2011
Jun 22, 2011
329
if (result != MMSYSERR_NOERROR) {
Aug 4, 2011
Aug 4, 2011
330
WINMM_CloseDevice(this);
Jun 22, 2011
Jun 22, 2011
331
332
333
334
335
336
337
338
SetMMerror("waveOutOpen()", result);
return 0;
}
#ifdef SOUND_DEBUG
/* Check the sound device we retrieved */
{
WAVEOUTCAPS caps;
Aug 4, 2011
Aug 4, 2011
339
result = waveOutGetDevCaps((UINT) this->hidden->hout,
Jun 22, 2011
Jun 22, 2011
340
341
&caps, sizeof(caps));
if (result != MMSYSERR_NOERROR) {
Aug 4, 2011
Aug 4, 2011
342
WINMM_CloseDevice(this);
Jun 22, 2011
Jun 22, 2011
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
SetMMerror("waveOutGetDevCaps()", result);
return 0;
}
printf("Audio device: %s\n", caps.szPname);
}
#endif
/* Create the audio buffer semaphore */
this->hidden->audio_sem =
#if defined(_WIN32_WCE) && (_WIN32_WCE < 300)
CreateSemaphoreCE(NULL, NUM_BUFFERS - 1, NUM_BUFFERS, NULL);
#else
CreateSemaphore(NULL, NUM_BUFFERS - 1, NUM_BUFFERS, NULL);
#endif
if (this->hidden->audio_sem == NULL) {
Aug 4, 2011
Aug 4, 2011
358
WINMM_CloseDevice(this);
Jun 22, 2011
Jun 22, 2011
359
360
361
362
363
364
365
366
SDL_SetError("Couldn't create semaphore");
return 0;
}
/* Create the sound buffers */
this->hidden->mixbuf =
(Uint8 *) SDL_malloc(NUM_BUFFERS * this->spec.size);
if (this->hidden->mixbuf == NULL) {
Aug 4, 2011
Aug 4, 2011
367
WINMM_CloseDevice(this);
Jun 22, 2011
Jun 22, 2011
368
369
370
371
372
373
374
375
376
377
SDL_OutOfMemory();
return 0;
}
for (i = 0; i < NUM_BUFFERS; ++i) {
SDL_memset(&this->hidden->wavebuf[i], '\0',
sizeof(this->hidden->wavebuf[i]));
this->hidden->wavebuf[i].dwBufferLength = this->spec.size;
this->hidden->wavebuf[i].dwFlags = WHDR_DONE;
this->hidden->wavebuf[i].lpData =
(LPSTR) & this->hidden->mixbuf[i * this->spec.size];
Aug 4, 2011
Aug 4, 2011
378
result = waveOutPrepareHeader(this->hidden->hout,
Jun 22, 2011
Jun 22, 2011
379
380
381
&this->hidden->wavebuf[i],
sizeof(this->hidden->wavebuf[i]));
if (result != MMSYSERR_NOERROR) {
Aug 4, 2011
Aug 4, 2011
382
WINMM_CloseDevice(this);
Jun 22, 2011
Jun 22, 2011
383
384
385
386
387
388
389
390
391
392
SetMMerror("waveOutPrepareHeader()", result);
return 0;
}
}
return 1; /* Ready to go! */
}
static int
Aug 4, 2011
Aug 4, 2011
393
WINMM_Init(SDL_AudioDriverImpl * impl)
Jun 22, 2011
Jun 22, 2011
394
395
{
/* Set the function pointers */
Aug 4, 2011
Aug 4, 2011
396
397
398
399
400
401
402
impl->DetectDevices = WINMM_DetectDevices;
impl->OpenDevice = WINMM_OpenDevice;
impl->PlayDevice = WINMM_PlayDevice;
impl->WaitDevice = WINMM_WaitDevice;
impl->WaitDone = WINMM_WaitDone;
impl->GetDeviceBuf = WINMM_GetDeviceBuf;
impl->CloseDevice = WINMM_CloseDevice;
Jun 22, 2011
Jun 22, 2011
403
404
405
406
return 1; /* this audio target is available. */
}
Aug 4, 2011
Aug 4, 2011
407
408
AudioBootStrap WINMM_bootstrap = {
"winmm", "Windows Waveform Audio", WINMM_Init, 0
Jun 22, 2011
Jun 22, 2011
409
410
};
Oct 31, 2011
Oct 31, 2011
411
412
#endif /* SDL_AUDIO_DRIVER_WINMM */
Jun 22, 2011
Jun 22, 2011
413
/* vi: set ts=4 sw=4 expandtab: */