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

Latest commit

 

History

History
516 lines (452 loc) · 15.4 KB

SDL_dx5audio.c

File metadata and controls

516 lines (452 loc) · 15.4 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
/* Allow access to a raw mixing buffer */
#include "SDL_timer.h"
#include "SDL_audio.h"
Feb 16, 2006
Feb 16, 2006
28
#include "../SDL_audio_c.h"
Apr 26, 2001
Apr 26, 2001
29
30
#include "SDL_dx5audio.h"
Oct 17, 2006
Oct 17, 2006
31
32
33
34
35
36
37
/* !!! FIXME: move this somewhere that other drivers can use it... */
#if defined(_WIN32_WCE)
#define WINDOWS_OS_NAME "Windows CE/PocketPC"
#elif defined(WIN64)
#define WINDOWS_OS_NAME "Win64"
#else
#define WINDOWS_OS_NAME "Win32"
Apr 26, 2001
Apr 26, 2001
38
#endif
Jul 10, 2006
Jul 10, 2006
39
Oct 17, 2006
Oct 17, 2006
40
/* DirectX function pointers for audio */
Apr 26, 2001
Apr 26, 2001
41
static HINSTANCE DSoundDLL = NULL;
Oct 17, 2006
Oct 17, 2006
42
static HRESULT (WINAPI *DSoundCreate)(LPGUID,LPDIRECTSOUND*,LPUNKNOWN) = NULL;
Apr 26, 2001
Apr 26, 2001
43
Jul 10, 2006
Jul 10, 2006
44
static void
Oct 17, 2006
Oct 17, 2006
45
DSOUND_Unload(void)
Apr 26, 2001
Apr 26, 2001
46
{
Jul 10, 2006
Jul 10, 2006
47
48
49
50
if (DSoundDLL != NULL) {
FreeLibrary(DSoundDLL);
}
Oct 17, 2006
Oct 17, 2006
51
52
DSoundCreate = NULL;
DSoundDLL = NULL;
Apr 26, 2001
Apr 26, 2001
53
54
55
}
Oct 17, 2006
Oct 17, 2006
56
57
static int
DSOUND_Load(void)
Apr 26, 2001
Apr 26, 2001
58
{
Oct 17, 2006
Oct 17, 2006
59
int loaded = 0;
Jul 10, 2006
Jul 10, 2006
60
Oct 17, 2006
Oct 17, 2006
61
DSOUND_Unload();
Jul 10, 2006
Jul 10, 2006
62
Oct 17, 2006
Oct 17, 2006
63
64
65
66
67
68
69
70
71
72
73
DSoundDLL = LoadLibrary(TEXT("DSOUND.DLL"));
if (DSoundDLL == NULL) {
SDL_SetError("DirectSound: failed to load DSOUND.DLL");
} else {
/* Now make sure we have DirectX 5 or better... */
/* (DirectSoundCaptureCreate was added in DX5) */
if (!GetProcAddress(DSoundDLL, TEXT("DirectSoundCaptureCreate"))) {
SDL_SetError("DirectSound: System doesn't appear to have DX5.");
} else {
DSoundCreate = (void *) GetProcAddress(DSoundDLL,
TEXT("DirectSoundCreate"));
Jul 10, 2006
Jul 10, 2006
74
75
}
Oct 17, 2006
Oct 17, 2006
76
77
78
79
80
81
if (!DSoundCreate) {
SDL_SetError("DirectSound: Failed to find DirectSoundCreate");
} else {
loaded = 1;
}
}
Jul 10, 2006
Jul 10, 2006
82
Oct 17, 2006
Oct 17, 2006
83
84
85
if (!loaded) {
DSOUND_Unload();
}
Jul 10, 2006
Jul 10, 2006
86
Oct 17, 2006
Oct 17, 2006
87
return loaded;
Apr 26, 2001
Apr 26, 2001
88
89
90
}
Jul 10, 2006
Jul 10, 2006
91
92
static void
SetDSerror(const char *function, int code)
Apr 26, 2001
Apr 26, 2001
93
{
Jul 10, 2006
Jul 10, 2006
94
95
96
97
98
99
static const char *error;
static char errbuf[1024];
errbuf[0] = 0;
switch (code) {
case E_NOINTERFACE:
Oct 17, 2006
Oct 17, 2006
100
error = "Unsupported interface -- Is DirectX 5.0 or later installed?";
Jul 10, 2006
Jul 10, 2006
101
102
103
104
105
106
107
108
109
110
111
112
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
break;
case DSERR_ALLOCATED:
error = "Audio device in use";
break;
case DSERR_BADFORMAT:
error = "Unsupported audio format";
break;
case DSERR_BUFFERLOST:
error = "Mixing buffer was lost";
break;
case DSERR_CONTROLUNAVAIL:
error = "Control requested is not available";
break;
case DSERR_INVALIDCALL:
error = "Invalid call for the current state";
break;
case DSERR_INVALIDPARAM:
error = "Invalid parameter";
break;
case DSERR_NODRIVER:
error = "No audio device found";
break;
case DSERR_OUTOFMEMORY:
error = "Out of memory";
break;
case DSERR_PRIOLEVELNEEDED:
error = "Caller doesn't have priority";
break;
case DSERR_UNSUPPORTED:
error = "Function not supported";
break;
default:
SDL_snprintf(errbuf, SDL_arraysize(errbuf),
"%s: Unknown DirectSound error: 0x%x", function, code);
break;
}
if (!errbuf[0]) {
SDL_snprintf(errbuf, SDL_arraysize(errbuf), "%s: %s", function,
error);
}
SDL_SetError("%s", errbuf);
return;
Apr 26, 2001
Apr 26, 2001
143
144
145
146
147
}
/* DirectSound needs to be associated with a window */
static HWND mainwin = NULL;
/* */
Oct 17, 2006
Oct 17, 2006
148
Jul 10, 2006
Jul 10, 2006
149
void
Oct 17, 2006
Oct 17, 2006
150
DSOUND_SoundFocus(HWND hwnd)
Apr 26, 2001
Apr 26, 2001
151
{
Oct 17, 2006
Oct 17, 2006
152
/* !!! FIXME: probably broken with multi-window support in SDL 1.3 ... */
Jul 10, 2006
Jul 10, 2006
153
mainwin = hwnd;
Apr 26, 2001
Apr 26, 2001
154
155
}
Jul 10, 2006
Jul 10, 2006
156
static void
Oct 17, 2006
Oct 17, 2006
157
DSOUND_ThreadInit(_THIS)
Apr 26, 2001
Apr 26, 2001
158
{
Jul 10, 2006
Jul 10, 2006
159
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_HIGHEST);
Apr 26, 2001
Apr 26, 2001
160
161
}
Jul 10, 2006
Jul 10, 2006
162
static void
Oct 17, 2006
Oct 17, 2006
163
DSOUND_WaitDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
164
{
Oct 17, 2006
Oct 17, 2006
165
166
167
168
DWORD status = 0;
DWORD cursor = 0;
DWORD junk = 0;
HRESULT result = DS_OK;
Jul 10, 2006
Jul 10, 2006
169
170
171
172
/* Semi-busy wait, since we have no way of getting play notification
on a primary mixing buffer located in hardware (DirectX 5.0)
*/
Oct 17, 2006
Oct 17, 2006
173
174
result = IDirectSoundBuffer_GetCurrentPosition(this->hidden->mixbuf,
&junk, &cursor);
Jul 10, 2006
Jul 10, 2006
175
176
if (result != DS_OK) {
if (result == DSERR_BUFFERLOST) {
Oct 17, 2006
Oct 17, 2006
177
IDirectSoundBuffer_Restore(this->hidden->mixbuf);
Jul 10, 2006
Jul 10, 2006
178
}
Apr 26, 2001
Apr 26, 2001
179
#ifdef DEBUG_SOUND
Jul 10, 2006
Jul 10, 2006
180
SetDSerror("DirectSound GetCurrentPosition", result);
Apr 26, 2001
Apr 26, 2001
181
#endif
Jul 10, 2006
Jul 10, 2006
182
183
184
return;
}
Oct 17, 2006
Oct 17, 2006
185
while ((cursor / this->hidden->mixlen) == this->hidden->lastchunk) {
Jul 10, 2006
Jul 10, 2006
186
187
188
189
/* FIXME: find out how much time is left and sleep that long */
SDL_Delay(1);
/* Try to restore a lost sound buffer */
Oct 17, 2006
Oct 17, 2006
190
IDirectSoundBuffer_GetStatus(this->hidden->mixbuf, &status);
Jul 10, 2006
Jul 10, 2006
191
if ((status & DSBSTATUS_BUFFERLOST)) {
Oct 17, 2006
Oct 17, 2006
192
193
IDirectSoundBuffer_Restore(this->hidden->mixbuf);
IDirectSoundBuffer_GetStatus(this->hidden->mixbuf, &status);
Jul 10, 2006
Jul 10, 2006
194
195
196
197
198
if ((status & DSBSTATUS_BUFFERLOST)) {
break;
}
}
if (!(status & DSBSTATUS_PLAYING)) {
Oct 17, 2006
Oct 17, 2006
199
200
result = IDirectSoundBuffer_Play(this->hidden->mixbuf, 0, 0,
DSBPLAY_LOOPING);
Jul 10, 2006
Jul 10, 2006
201
202
203
if (result == DS_OK) {
continue;
}
Apr 26, 2001
Apr 26, 2001
204
#ifdef DEBUG_SOUND
Jul 10, 2006
Jul 10, 2006
205
SetDSerror("DirectSound Play", result);
Apr 26, 2001
Apr 26, 2001
206
#endif
Jul 10, 2006
Jul 10, 2006
207
208
209
210
return;
}
/* Find out where we are playing */
Oct 17, 2006
Oct 17, 2006
211
result = IDirectSoundBuffer_GetCurrentPosition(this->hidden->mixbuf,
Jul 10, 2006
Jul 10, 2006
212
213
214
215
216
217
&junk, &cursor);
if (result != DS_OK) {
SetDSerror("DirectSound GetCurrentPosition", result);
return;
}
}
Apr 26, 2001
Apr 26, 2001
218
219
}
Jul 10, 2006
Jul 10, 2006
220
static void
Oct 17, 2006
Oct 17, 2006
221
DSOUND_PlayDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
222
{
Jul 10, 2006
Jul 10, 2006
223
/* Unlock the buffer, allowing it to play */
Oct 17, 2006
Oct 17, 2006
224
225
226
227
if (this->hidden->locked_buf) {
IDirectSoundBuffer_Unlock(this->hidden->mixbuf,
this->hidden->locked_buf,
this->hidden->mixlen, NULL, 0);
Jul 10, 2006
Jul 10, 2006
228
}
Apr 26, 2001
Apr 26, 2001
229
230
231
}
Jul 10, 2006
Jul 10, 2006
232
static Uint8 *
Oct 17, 2006
Oct 17, 2006
233
DSOUND_GetDeviceBuf(_THIS)
Apr 26, 2001
Apr 26, 2001
234
{
Oct 17, 2006
Oct 17, 2006
235
236
237
238
DWORD cursor = 0;
DWORD junk = 0;
HRESULT result = DS_OK;
DWORD rawlen = 0;
Jul 10, 2006
Jul 10, 2006
239
240
/* Figure out which blocks to fill next */
Oct 17, 2006
Oct 17, 2006
241
242
243
this->hidden->locked_buf = NULL;
result = IDirectSoundBuffer_GetCurrentPosition(this->hidden->mixbuf,
&junk, &cursor);
Jul 10, 2006
Jul 10, 2006
244
if (result == DSERR_BUFFERLOST) {
Oct 17, 2006
Oct 17, 2006
245
246
IDirectSoundBuffer_Restore(this->hidden->mixbuf);
result = IDirectSoundBuffer_GetCurrentPosition(this->hidden->mixbuf,
Jul 10, 2006
Jul 10, 2006
247
248
249
250
251
252
&junk, &cursor);
}
if (result != DS_OK) {
SetDSerror("DirectSound GetCurrentPosition", result);
return (NULL);
}
Oct 17, 2006
Oct 17, 2006
253
cursor /= this->hidden->mixlen;
Jun 23, 2006
Jun 23, 2006
254
#ifdef DEBUG_SOUND
Jul 10, 2006
Jul 10, 2006
255
256
257
/* Detect audio dropouts */
{
DWORD spot = cursor;
Oct 17, 2006
Oct 17, 2006
258
259
if (spot < this->hidden->lastchunk) {
spot += this->hidden->num_buffers;
Jul 10, 2006
Jul 10, 2006
260
}
Oct 17, 2006
Oct 17, 2006
261
if (spot > this->hidden->lastchunk + 1) {
Jul 10, 2006
Jul 10, 2006
262
fprintf(stderr, "Audio dropout, missed %d fragments\n",
Oct 17, 2006
Oct 17, 2006
263
(spot - (this->hidden->lastchunk + 1)));
Jul 10, 2006
Jul 10, 2006
264
265
}
}
Jun 23, 2006
Jun 23, 2006
266
#endif
Oct 17, 2006
Oct 17, 2006
267
268
269
this->hidden->lastchunk = cursor;
cursor = (cursor + 1) % this->hidden->num_buffers;
cursor *= this->hidden->mixlen;
Jul 10, 2006
Jul 10, 2006
270
271
/* Lock the audio buffer */
Oct 17, 2006
Oct 17, 2006
272
273
274
275
result = IDirectSoundBuffer_Lock(this->hidden->mixbuf, cursor,
this->hidden->mixlen,
(LPVOID *) &this->hidden->locked_buf,
&rawlen, NULL, &junk, 0);
Jul 10, 2006
Jul 10, 2006
276
if (result == DSERR_BUFFERLOST) {
Oct 17, 2006
Oct 17, 2006
277
278
279
280
281
IDirectSoundBuffer_Restore(this->hidden->mixbuf);
result = IDirectSoundBuffer_Lock(this->hidden->mixbuf, cursor,
this->hidden->mixlen,
(LPVOID *) &this->hidden->locked_buf,
&rawlen, NULL, &junk, 0);
Jul 10, 2006
Jul 10, 2006
282
283
284
285
286
}
if (result != DS_OK) {
SetDSerror("DirectSound Lock", result);
return (NULL);
}
Oct 17, 2006
Oct 17, 2006
287
return (this->hidden->locked_buf);
Apr 26, 2001
Apr 26, 2001
288
289
}
Jul 10, 2006
Jul 10, 2006
290
static void
Oct 17, 2006
Oct 17, 2006
291
DSOUND_WaitDone(_THIS)
Apr 26, 2001
Apr 26, 2001
292
{
Oct 17, 2006
Oct 17, 2006
293
Uint8 *stream = DSOUND_GetDeviceBuf(this);
Jul 10, 2006
Jul 10, 2006
294
295
296
/* Wait for the playing chunk to finish */
if (stream != NULL) {
Oct 17, 2006
Oct 17, 2006
297
298
SDL_memset(stream, this->spec.silence, this->hidden->mixlen);
DSOUND_PlayDevice(this);
Jul 10, 2006
Jul 10, 2006
299
}
Oct 17, 2006
Oct 17, 2006
300
DSOUND_WaitDevice(this);
Jul 10, 2006
Jul 10, 2006
301
302
/* Stop the looping sound buffer */
Oct 17, 2006
Oct 17, 2006
303
IDirectSoundBuffer_Stop(this->hidden->mixbuf);
Apr 26, 2001
Apr 26, 2001
304
305
}
Jul 10, 2006
Jul 10, 2006
306
static void
Oct 17, 2006
Oct 17, 2006
307
DSOUND_CloseDevice(_THIS)
Apr 26, 2001
Apr 26, 2001
308
{
Oct 17, 2006
Oct 17, 2006
309
310
311
312
313
314
315
316
317
if (this->hidden != NULL) {
if (this->hidden->sound != NULL) {
if (this->hidden->mixbuf != NULL) {
/* Clean up the audio buffer */
IDirectSoundBuffer_Release(this->hidden->mixbuf);
this->hidden->mixbuf = NULL;
}
IDirectSound_Release(this->hidden->sound);
this->hidden->sound = NULL;
Jul 10, 2006
Jul 10, 2006
318
}
Apr 26, 2001
Apr 26, 2001
319
Oct 17, 2006
Oct 17, 2006
320
321
SDL_free(this->hidden);
this->hidden = NULL;
Jul 10, 2006
Jul 10, 2006
322
}
Apr 26, 2001
Apr 26, 2001
323
324
325
326
327
}
/* This function tries to create a secondary audio buffer, and returns the
number of audio chunks available in the created buffer.
*/
Jul 10, 2006
Jul 10, 2006
328
static int
Oct 17, 2006
Oct 17, 2006
329
CreateSecondary(_THIS, HWND focus, WAVEFORMATEX *wavefmt)
Apr 26, 2001
Apr 26, 2001
330
{
Oct 17, 2006
Oct 17, 2006
331
332
333
LPDIRECTSOUND sndObj = this->hidden->sound;
LPDIRECTSOUNDBUFFER *sndbuf = this->hidden->mixbuf;
Uint32 chunksize = this->spec.size;
Jul 10, 2006
Jul 10, 2006
334
const int numchunks = 8;
Oct 17, 2006
Oct 17, 2006
335
HRESULT result = DS_OK;
Jul 10, 2006
Jul 10, 2006
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
DSBUFFERDESC format;
LPVOID pvAudioPtr1, pvAudioPtr2;
DWORD dwAudioBytes1, dwAudioBytes2;
/* Try to set primary mixing privileges */
if (focus) {
result = IDirectSound_SetCooperativeLevel(sndObj,
focus, DSSCL_PRIORITY);
} else {
result = IDirectSound_SetCooperativeLevel(sndObj,
GetDesktopWindow(),
DSSCL_NORMAL);
}
if (result != DS_OK) {
SetDSerror("DirectSound SetCooperativeLevel", result);
return (-1);
}
Apr 26, 2001
Apr 26, 2001
353
Jul 10, 2006
Jul 10, 2006
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/* Try to create the secondary buffer */
SDL_memset(&format, 0, sizeof(format));
format.dwSize = sizeof(format);
format.dwFlags = DSBCAPS_GETCURRENTPOSITION2;
if (!focus) {
format.dwFlags |= DSBCAPS_GLOBALFOCUS;
} else {
format.dwFlags |= DSBCAPS_STICKYFOCUS;
}
format.dwBufferBytes = numchunks * chunksize;
if ((format.dwBufferBytes < DSBSIZE_MIN) ||
(format.dwBufferBytes > DSBSIZE_MAX)) {
SDL_SetError("Sound buffer size must be between %d and %d",
DSBSIZE_MIN / numchunks, DSBSIZE_MAX / numchunks);
return (-1);
}
format.dwReserved = 0;
format.lpwfxFormat = wavefmt;
result = IDirectSound_CreateSoundBuffer(sndObj, &format, sndbuf, NULL);
if (result != DS_OK) {
SetDSerror("DirectSound CreateSoundBuffer", result);
return (-1);
}
IDirectSoundBuffer_SetFormat(*sndbuf, wavefmt);
/* Silence the initial audio buffer */
result = IDirectSoundBuffer_Lock(*sndbuf, 0, format.dwBufferBytes,
(LPVOID *) & pvAudioPtr1, &dwAudioBytes1,
(LPVOID *) & pvAudioPtr2, &dwAudioBytes2,
DSBLOCK_ENTIREBUFFER);
if (result == DS_OK) {
Oct 17, 2006
Oct 17, 2006
385
SDL_memset(pvAudioPtr1, this->spec.silence, dwAudioBytes1);
Jul 10, 2006
Jul 10, 2006
386
387
388
389
390
391
392
IDirectSoundBuffer_Unlock(*sndbuf,
(LPVOID) pvAudioPtr1, dwAudioBytes1,
(LPVOID) pvAudioPtr2, dwAudioBytes2);
}
/* We're ready to go */
return (numchunks);
Apr 26, 2001
Apr 26, 2001
393
394
}
Jul 10, 2006
Jul 10, 2006
395
static int
Oct 17, 2006
Oct 17, 2006
396
DSOUND_OpenDevice(_THIS, const char *devname, int iscapture)
Apr 26, 2001
Apr 26, 2001
397
{
Jul 10, 2006
Jul 10, 2006
398
HRESULT result;
Oct 17, 2006
Oct 17, 2006
399
400
401
WAVEFORMATEX waveformat;
int valid_format = 0;
SDL_AudioFormat test_format = SDL_FirstAudioFormat(this->spec.format);
Jul 10, 2006
Jul 10, 2006
402
Oct 17, 2006
Oct 17, 2006
403
404
/* !!! FIXME: handle devname */
/* !!! FIXME: handle iscapture */
Jul 10, 2006
Jul 10, 2006
405
Oct 17, 2006
Oct 17, 2006
406
407
408
409
410
411
/* 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;
Jul 10, 2006
Jul 10, 2006
412
}
Oct 17, 2006
Oct 17, 2006
413
SDL_memset(this->hidden, 0, (sizeof *this->hidden));
Jul 10, 2006
Jul 10, 2006
414
Oct 17, 2006
Oct 17, 2006
415
416
417
418
419
420
421
422
423
424
while ((!valid_format) && (test_format)) {
switch (test_format) {
case AUDIO_U8:
case AUDIO_S16:
case AUDIO_S32:
this->spec.format = test_format;
valid_format = 1;
break;
}
test_format = SDL_NextAudioFormat();
Jul 10, 2006
Jul 10, 2006
425
426
}
Oct 17, 2006
Oct 17, 2006
427
428
429
430
if (!valid_format) {
DSOUND_CloseDevice(this);
SDL_SetError("DirectSound: Unsupported audio format");
return 0;
Jul 10, 2006
Jul 10, 2006
431
}
Apr 26, 2001
Apr 26, 2001
432
Jul 10, 2006
Jul 10, 2006
433
434
SDL_memset(&waveformat, 0, sizeof(waveformat));
waveformat.wFormatTag = WAVE_FORMAT_PCM;
Oct 17, 2006
Oct 17, 2006
435
436
437
waveformat.wBitsPerSample = SDL_AUDIO_BITSIZE(this->spec.format);
waveformat.nChannels = this->spec.channels;
waveformat.nSamplesPerSec = this->spec.freq;
Jul 10, 2006
Jul 10, 2006
438
439
440
441
442
443
waveformat.nBlockAlign =
waveformat.nChannels * (waveformat.wBitsPerSample / 8);
waveformat.nAvgBytesPerSec =
waveformat.nSamplesPerSec * waveformat.nBlockAlign;
/* Update the fragment size as size in bytes */
Oct 17, 2006
Oct 17, 2006
444
SDL_CalculateAudioSpec(&this->spec);
Jul 10, 2006
Jul 10, 2006
445
446
/* Open the audio device */
Oct 17, 2006
Oct 17, 2006
447
result = DSoundCreate(NULL, &this->hidden->sound, NULL);
Jul 10, 2006
Jul 10, 2006
448
if (result != DS_OK) {
Oct 17, 2006
Oct 17, 2006
449
DSOUND_CloseDevice(this);
Jul 10, 2006
Jul 10, 2006
450
SetDSerror("DirectSoundCreate", result);
Oct 17, 2006
Oct 17, 2006
451
return 0;
Jul 10, 2006
Jul 10, 2006
452
453
454
}
/* Create the audio buffer to which we write */
Oct 17, 2006
Oct 17, 2006
455
456
457
458
this->hidden->num_buffers = CreateSecondary(this, mainwin, &waveformat);
if (this->hidden->num_buffers < 0) {
DSOUND_CloseDevice(this);
return 0;
Jul 10, 2006
Jul 10, 2006
459
}
Oct 17, 2006
Oct 17, 2006
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
/* The buffer will auto-start playing in DSOUND_WaitDevice() */
this->hidden->mixlen = this->spec.size;
return 1; /* good to go. */
}
static void
DSOUND_Deinitialize(void)
{
DSOUND_Unload();
}
static int
DSOUND_Init(SDL_AudioDriverImpl *impl)
{
OSVERSIONINFO ver;
/*
* Unfortunately, the sound drivers on NT have higher latencies than the
* audio buffers used by many SDL applications, so there are gaps in the
* audio - it sounds terrible. Punt for now.
*/
SDL_memset(&ver, '\0', sizeof (OSVERSIONINFO));
ver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
GetVersionEx(&ver);
if (ver.dwPlatformId == VER_PLATFORM_WIN32_NT)
if (ver.dwMajorVersion <= 4) {
return 0; /* NT4.0 or earlier. Disable dsound support. */
Jul 10, 2006
Jul 10, 2006
491
492
}
}
Apr 26, 2001
Apr 26, 2001
493
Oct 17, 2006
Oct 17, 2006
494
495
if (!DSOUND_Load()) {
return 0;
Jul 10, 2006
Jul 10, 2006
496
}
Oct 17, 2006
Oct 17, 2006
497
498
499
500
501
502
503
504
505
506
507
508
509
/* Set the function pointers */
impl->OpenDevice = DSOUND_OpenDevice;
impl->PlayDevice = DSOUND_PlayDevice;
impl->WaitDevice = DSOUND_WaitDevice;
impl->WaitDone = DSOUND_WaitDone;
impl->ThreadInit = DSOUND_ThreadInit;
impl->GetDeviceBuf = DSOUND_GetDeviceBuf;
impl->CloseDevice = DSOUND_CloseDevice;
impl->Deinitialize = DSOUND_Deinitialize;
impl->OnlyHasDefaultOutputDevice = 1; /* !!! FIXME */
return 1;
Apr 26, 2001
Apr 26, 2001
510
511
}
Oct 17, 2006
Oct 17, 2006
512
513
514
515
AudioBootStrap DSOUND_bootstrap = {
"dsound", WINDOWS_OS_NAME "DirectSound", DSOUND_Init, 0
};
Jul 10, 2006
Jul 10, 2006
516
/* vi: set ts=4 sw=4 expandtab: */