3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998 Rob Riggs
5 * Copyright 2000-2001 TransGaming Technologies, Inc.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 /* Linux does not support better timing than 10ms */
23 #define DS_TIME_RES 2 /* Resolution of multimedia timer */
24 #define DS_TIME_DEL 10 /* Delay of multimedia timer callback, and duration of HEL fragment */
26 #include "wine/list.h"
28 /* direct sound hardware acceleration levels */
29 #define DS_HW_ACCEL_FULL 0 /* default on Windows 98 */
30 #define DS_HW_ACCEL_STANDARD 1 /* default on Windows 2000 */
31 #define DS_HW_ACCEL_BASIC 2
32 #define DS_HW_ACCEL_EMULATION 3
34 extern int ds_emuldriver
;
35 extern int ds_hel_buflen
;
36 extern int ds_snd_queue_max
;
37 extern int ds_snd_queue_min
;
38 extern int ds_snd_shadow_maxsize
;
39 extern int ds_hw_accel
;
40 extern int ds_default_playback
;
41 extern int ds_default_capture
;
42 extern int ds_default_sample_rate
;
43 extern int ds_default_bits_per_sample
;
45 /*****************************************************************************
46 * Predeclare the interface implementation structures
48 typedef struct IDirectSoundImpl IDirectSoundImpl
;
49 typedef struct IDirectSound_IUnknown IDirectSound_IUnknown
;
50 typedef struct IDirectSound_IDirectSound IDirectSound_IDirectSound
;
51 typedef struct IDirectSound8_IUnknown IDirectSound8_IUnknown
;
52 typedef struct IDirectSound8_IDirectSound IDirectSound8_IDirectSound
;
53 typedef struct IDirectSound8_IDirectSound8 IDirectSound8_IDirectSound8
;
54 typedef struct IDirectSoundBufferImpl IDirectSoundBufferImpl
;
55 typedef struct IDirectSoundCaptureImpl IDirectSoundCaptureImpl
;
56 typedef struct IDirectSoundCaptureBufferImpl IDirectSoundCaptureBufferImpl
;
57 typedef struct IDirectSoundFullDuplexImpl IDirectSoundFullDuplexImpl
;
58 typedef struct IDirectSoundFullDuplex_IUnknown IDirectSoundFullDuplex_IUnknown
;
59 typedef struct IDirectSoundFullDuplex_IDirectSound IDirectSoundFullDuplex_IDirectSound
;
60 typedef struct IDirectSoundFullDuplex_IDirectSound8 IDirectSoundFullDuplex_IDirectSound8
;
61 typedef struct IDirectSoundFullDuplex_IDirectSoundCapture IDirectSoundFullDuplex_IDirectSoundCapture
;
62 typedef struct IDirectSoundNotifyImpl IDirectSoundNotifyImpl
;
63 typedef struct IDirectSoundCaptureNotifyImpl IDirectSoundCaptureNotifyImpl
;
64 typedef struct IDirectSound3DListenerImpl IDirectSound3DListenerImpl
;
65 typedef struct IDirectSound3DBufferImpl IDirectSound3DBufferImpl
;
66 typedef struct IKsBufferPropertySetImpl IKsBufferPropertySetImpl
;
67 typedef struct IKsPrivatePropertySetImpl IKsPrivatePropertySetImpl
;
68 typedef struct PrimaryBufferImpl PrimaryBufferImpl
;
69 typedef struct SecondaryBufferImpl SecondaryBufferImpl
;
70 typedef struct DirectSoundDevice DirectSoundDevice
;
71 typedef struct DirectSoundCaptureDevice DirectSoundCaptureDevice
;
73 /* dsound_convert.h */
74 typedef void (*bitsconvertfunc
)(const void *, void *);
75 extern const bitsconvertfunc convertbpp
[4][4];
76 typedef void (*mixfunc
)(const void *, void *, unsigned);
77 extern const mixfunc mixfunctions
[4];
78 typedef void (*normfunc
)(const void *, void *, unsigned);
79 extern const normfunc normfunctions
[4];
81 /*****************************************************************************
82 * IDirectSoundDevice implementation structure
84 struct DirectSoundDevice
96 UINT timerID
, pwplay
, pwqueue
, prebuf
, helfrags
;
98 PIDSDRIVERBUFFER hwbuf
;
100 DWORD writelead
, buflen
, state
, playpos
, mixpos
;
102 IDirectSoundBufferImpl
** buffers
;
103 RTL_RWLOCK buffer_list_lock
;
104 CRITICAL_SECTION mixlock
;
105 PrimaryBufferImpl
* primary
;
107 DWORD speaker_config
;
108 LPBYTE tmp_buffer
, mix_buffer
;
109 DWORD tmp_buffer_len
, mix_buffer_len
;
112 normfunc normfunction
;
114 /* DirectSound3DListener fields */
115 IDirectSound3DListenerImpl
* listener
;
117 BOOL ds3dl_need_recalc
;
120 /* reference counted buffer memory for duplicated buffer memory */
121 typedef struct BufferMemory
128 ULONG
DirectSoundDevice_Release(DirectSoundDevice
* device
);
129 HRESULT
DirectSoundDevice_Initialize(
130 DirectSoundDevice
** ppDevice
,
132 HRESULT
DirectSoundDevice_AddBuffer(
133 DirectSoundDevice
* device
,
134 IDirectSoundBufferImpl
* pDSB
);
135 HRESULT
DirectSoundDevice_RemoveBuffer(
136 DirectSoundDevice
* device
,
137 IDirectSoundBufferImpl
* pDSB
);
138 HRESULT
DirectSoundDevice_GetCaps(DirectSoundDevice
* device
, LPDSCAPS lpDSCaps
);
139 HRESULT
DirectSoundDevice_CreateSoundBuffer(
140 DirectSoundDevice
* device
,
141 LPCDSBUFFERDESC dsbd
,
142 LPLPDIRECTSOUNDBUFFER ppdsb
,
145 HRESULT
DirectSoundDevice_DuplicateSoundBuffer(
146 DirectSoundDevice
* device
,
147 LPDIRECTSOUNDBUFFER psb
,
148 LPLPDIRECTSOUNDBUFFER ppdsb
);
149 HRESULT
DirectSoundDevice_SetCooperativeLevel(
150 DirectSoundDevice
* devcie
,
153 HRESULT
DirectSoundDevice_Compact(DirectSoundDevice
* device
);
154 HRESULT
DirectSoundDevice_GetSpeakerConfig(
155 DirectSoundDevice
* device
,
156 LPDWORD lpdwSpeakerConfig
);
157 HRESULT
DirectSoundDevice_SetSpeakerConfig(
158 DirectSoundDevice
* device
,
161 /*****************************************************************************
162 * IDirectSoundBuffer implementation structure
164 struct IDirectSoundBufferImpl
166 /* FIXME: document */
167 /* IUnknown fields */
168 const IDirectSoundBuffer8Vtbl
*lpVtbl
;
170 /* IDirectSoundBufferImpl fields */
171 SecondaryBufferImpl
* secondary
;
172 DirectSoundDevice
* device
;
174 PIDSDRIVERBUFFER hwbuf
;
176 BufferMemory
* buffer
;
178 DWORD playflags
,state
,leadin
;
179 DWORD writelead
,buflen
;
180 DWORD nAvgBytesPerSec
;
181 DWORD freq
, tmp_buffer_len
, max_buffer_len
;
184 /* used for frequency conversion (PerfectPitch) */
185 ULONG freqneeded
, freqAdjust
, freqAcc
, freqAccNext
, resampleinmixer
;
186 /* used for mixing */
187 DWORD primary_mixpos
, buf_mixpos
, sec_mixpos
;
189 /* IDirectSoundNotifyImpl fields */
190 IDirectSoundNotifyImpl
* notify
;
191 LPDSBPOSITIONNOTIFY notifies
;
193 PIDSDRIVERNOTIFY hwnotify
;
195 /* DirectSound3DBuffer fields */
196 IDirectSound3DBufferImpl
* ds3db
;
197 DS3DBUFFER ds3db_ds3db
;
199 BOOL ds3db_need_recalc
;
201 /* IKsPropertySet fields */
202 IKsBufferPropertySetImpl
* iks
;
203 bitsconvertfunc convert
;
207 HRESULT
IDirectSoundBufferImpl_Create(
208 DirectSoundDevice
*device
,
209 IDirectSoundBufferImpl
**ppdsb
,
210 LPCDSBUFFERDESC dsbd
);
211 HRESULT
IDirectSoundBufferImpl_Destroy(
212 IDirectSoundBufferImpl
*pdsb
);
213 HRESULT
IDirectSoundBufferImpl_Duplicate(
214 DirectSoundDevice
*device
,
215 IDirectSoundBufferImpl
**ppdsb
,
216 IDirectSoundBufferImpl
*pdsb
);
218 /*****************************************************************************
219 * SecondaryBuffer implementation structure
221 struct SecondaryBufferImpl
223 const IDirectSoundBuffer8Vtbl
*lpVtbl
;
225 IDirectSoundBufferImpl
* dsb
;
228 HRESULT
SecondaryBufferImpl_Create(
229 IDirectSoundBufferImpl
*dsb
,
230 SecondaryBufferImpl
**pdsb
);
232 /*****************************************************************************
233 * PrimaryBuffer implementation structure
235 struct PrimaryBufferImpl
237 const IDirectSoundBufferVtbl
*lpVtbl
;
239 DirectSoundDevice
* device
;
242 HRESULT
PrimaryBufferImpl_Create(
243 DirectSoundDevice
* device
,
244 PrimaryBufferImpl
**ppdsb
,
245 LPCDSBUFFERDESC dsbd
);
247 /*****************************************************************************
248 * DirectSoundCaptureDevice implementation structure
250 struct DirectSoundCaptureDevice
252 /* IDirectSoundCaptureImpl fields */
256 /* DirectSound driver stuff */
258 DSDRIVERDESC drvdesc
;
259 DSCDRIVERCAPS drvcaps
;
260 PIDSCDRIVERBUFFER hwbuf
;
262 /* wave driver info */
271 IDirectSoundCaptureBufferImpl
* capture_buffer
;
276 CRITICAL_SECTION lock
;
279 HRESULT
DirectSoundCaptureDevice_Initialize(
280 DirectSoundCaptureDevice
** ppDevice
,
282 ULONG
DirectSoundCaptureDevice_Release(
283 DirectSoundCaptureDevice
* device
);
285 /*****************************************************************************
286 * IDirectSoundCaptureBuffer implementation structure
288 struct IDirectSoundCaptureBufferImpl
290 /* IUnknown fields */
291 const IDirectSoundCaptureBuffer8Vtbl
*lpVtbl
;
294 /* IDirectSoundCaptureBufferImpl fields */
295 DirectSoundCaptureDevice
* device
;
296 /* FIXME: don't need this */
297 LPDSCBUFFERDESC pdscbd
;
300 /* IDirectSoundCaptureNotifyImpl fields */
301 IDirectSoundCaptureNotifyImpl
* notify
;
302 LPDSBPOSITIONNOTIFY notifies
;
304 PIDSDRIVERNOTIFY hwnotify
;
307 HRESULT
IDirectSoundCaptureBufferImpl_Create(
308 DirectSoundCaptureDevice
*device
,
309 IDirectSoundCaptureBufferImpl
** ppobj
,
310 LPCDSCBUFFERDESC lpcDSCBufferDesc
);
312 /*****************************************************************************
313 * IDirectSoundFullDuplex implementation structure
315 struct IDirectSoundFullDuplexImpl
317 /* IUnknown fields */
318 const IDirectSoundFullDuplexVtbl
*lpVtbl
;
321 /* IDirectSoundFullDuplexImpl fields */
322 DirectSoundDevice
*renderer_device
;
323 DirectSoundCaptureDevice
*capture_device
;
328 LPDIRECTSOUNDCAPTURE pDSC
;
331 /*****************************************************************************
332 * IDirectSoundFullDuplex COM components
334 struct IDirectSoundFullDuplex_IUnknown
{
335 const IUnknownVtbl
*lpVtbl
;
337 IDirectSoundFullDuplexImpl
*pdsfd
;
340 struct IDirectSoundFullDuplex_IDirectSound
{
341 const IDirectSoundVtbl
*lpVtbl
;
343 IDirectSoundFullDuplexImpl
*pdsfd
;
346 struct IDirectSoundFullDuplex_IDirectSound8
{
347 const IDirectSound8Vtbl
*lpVtbl
;
349 IDirectSoundFullDuplexImpl
*pdsfd
;
352 struct IDirectSoundFullDuplex_IDirectSoundCapture
{
353 const IDirectSoundCaptureVtbl
*lpVtbl
;
355 IDirectSoundFullDuplexImpl
*pdsfd
;
358 /*****************************************************************************
359 * IDirectSound3DListener implementation structure
361 struct IDirectSound3DListenerImpl
363 /* IUnknown fields */
364 const IDirectSound3DListenerVtbl
*lpVtbl
;
366 /* IDirectSound3DListenerImpl fields */
367 DirectSoundDevice
* device
;
370 HRESULT
IDirectSound3DListenerImpl_Create(
371 DirectSoundDevice
*device
,
372 IDirectSound3DListenerImpl
**pdsl
);
374 /*****************************************************************************
375 * IKsBufferPropertySet implementation structure
377 struct IKsBufferPropertySetImpl
379 /* IUnknown fields */
380 const IKsPropertySetVtbl
*lpVtbl
;
382 /* IKsPropertySetImpl fields */
383 IDirectSoundBufferImpl
* dsb
;
386 HRESULT
IKsBufferPropertySetImpl_Create(
387 IDirectSoundBufferImpl
*dsb
,
388 IKsBufferPropertySetImpl
**piks
);
389 HRESULT
IKsBufferPropertySetImpl_Destroy(
390 IKsBufferPropertySetImpl
*piks
);
392 /*****************************************************************************
393 * IKsPrivatePropertySet implementation structure
395 struct IKsPrivatePropertySetImpl
397 /* IUnknown fields */
398 const IKsPropertySetVtbl
*lpVtbl
;
402 HRESULT
IKsPrivatePropertySetImpl_Create(
404 IKsPrivatePropertySetImpl
**piks
);
406 /*****************************************************************************
407 * IDirectSound3DBuffer implementation structure
409 struct IDirectSound3DBufferImpl
411 /* IUnknown fields */
412 const IDirectSound3DBufferVtbl
*lpVtbl
;
414 /* IDirectSound3DBufferImpl fields */
415 IDirectSoundBufferImpl
* dsb
;
418 HRESULT
IDirectSound3DBufferImpl_Create(
419 IDirectSoundBufferImpl
*dsb
,
420 IDirectSound3DBufferImpl
**pds3db
);
421 HRESULT
IDirectSound3DBufferImpl_Destroy(
422 IDirectSound3DBufferImpl
*pds3db
);
424 /*******************************************************************************
429 HRESULT
DSOUND_Create(REFIID riid
, LPDIRECTSOUND
*ppDS
);
430 HRESULT
DSOUND_Create8(REFIID riid
, LPDIRECTSOUND8
*ppDS
);
434 DWORD
DSOUND_fraglen(DWORD nSamplesPerSec
, DWORD nBlockAlign
);
435 HRESULT
DSOUND_PrimaryCreate(DirectSoundDevice
*device
);
436 HRESULT
DSOUND_PrimaryDestroy(DirectSoundDevice
*device
);
437 HRESULT
DSOUND_PrimaryPlay(DirectSoundDevice
*device
);
438 HRESULT
DSOUND_PrimaryStop(DirectSoundDevice
*device
);
439 HRESULT
DSOUND_PrimaryGetPosition(DirectSoundDevice
*device
, LPDWORD playpos
, LPDWORD writepos
);
440 HRESULT
DSOUND_PrimarySetFormat(DirectSoundDevice
*device
, LPCWAVEFORMATEX wfex
, BOOL forced
);
441 HRESULT
DSOUND_ReopenDevice(DirectSoundDevice
*device
, BOOL forcewave
);
445 HRESULT
DSOUND_FullDuplexCreate(REFIID riid
, LPDIRECTSOUNDFULLDUPLEX
* ppDSFD
);
448 DWORD
DSOUND_bufpos_to_mixpos(const DirectSoundDevice
* device
, DWORD pos
);
449 void DSOUND_CheckEvent(const IDirectSoundBufferImpl
*dsb
, DWORD playpos
, int len
);
450 void DSOUND_RecalcVolPan(PDSVOLUMEPAN volpan
);
451 void DSOUND_AmpFactorToVolPan(PDSVOLUMEPAN volpan
);
452 void DSOUND_RecalcFormat(IDirectSoundBufferImpl
*dsb
);
453 void DSOUND_MixToTemporary(const IDirectSoundBufferImpl
*dsb
, DWORD writepos
, DWORD mixlen
, BOOL inmixer
);
454 DWORD
DSOUND_secpos_to_bufpos(const IDirectSoundBufferImpl
*dsb
, DWORD secpos
, DWORD secmixpos
, DWORD
* overshot
);
456 void CALLBACK
DSOUND_timer(UINT timerID
, UINT msg
, DWORD_PTR dwUser
, DWORD_PTR dw1
, DWORD_PTR dw2
);
457 void CALLBACK
DSOUND_callback(HWAVEOUT hwo
, UINT msg
, DWORD dwUser
, DWORD dw1
, DWORD dw2
);
461 void DSOUND_Calc3DBuffer(IDirectSoundBufferImpl
*dsb
);
465 HRESULT
DSOUND_CaptureCreate(REFIID riid
, LPDIRECTSOUNDCAPTURE
*ppDSC
);
466 HRESULT
DSOUND_CaptureCreate8(REFIID riid
, LPDIRECTSOUNDCAPTURE8
*ppDSC8
);
467 HRESULT WINAPI
IDirectSoundCaptureImpl_CreateCaptureBuffer(
468 LPDIRECTSOUNDCAPTURE iface
,
469 LPCDSCBUFFERDESC lpcDSCBufferDesc
,
470 LPDIRECTSOUNDCAPTUREBUFFER
* lplpDSCaptureBuffer
,
472 HRESULT WINAPI
IDirectSoundCaptureImpl_GetCaps(
473 LPDIRECTSOUNDCAPTURE iface
,
474 LPDSCCAPS lpDSCCaps
);
475 HRESULT WINAPI
IDirectSoundCaptureImpl_Initialize(
476 LPDIRECTSOUNDCAPTURE iface
,
479 #define STATE_STOPPED 0
480 #define STATE_STARTING 1
481 #define STATE_PLAYING 2
482 #define STATE_CAPTURING 2
483 #define STATE_STOPPING 3
485 #define DSOUND_FREQSHIFT (20)
487 extern DirectSoundDevice
* DSOUND_renderer
[MAXWAVEDRIVERS
];
488 extern GUID DSOUND_renderer_guids
[MAXWAVEDRIVERS
];
490 extern DirectSoundCaptureDevice
* DSOUND_capture
[MAXWAVEDRIVERS
];
491 extern GUID DSOUND_capture_guids
[MAXWAVEDRIVERS
];
493 HRESULT
mmErr(UINT err
);
494 void setup_dsound_options(void);
495 const char * dumpCooperativeLevel(DWORD level
);