mixer.c 35.5 KB
Newer Older
1 2 3 4 5
/*  			DirectSound
 *
 * Copyright 1998 Marcus Meissner
 * Copyright 1998 Rob Riggs
 * Copyright 2000-2002 TransGaming Technologies, Inc.
6
 * Copyright 2007 Peter Dons Tychsen
7
 * Copyright 2007 Maarten Lankhorst
8
 * Copyright 2011 Owen Rudge for CodeWeavers
9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
22
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 24 25
 */

#include <assert.h>
26
#include <stdarg.h>
27 28
#include <math.h>	/* Insomnia - pow() function */

Robert Reif's avatar
Robert Reif committed
29 30
#define NONAMELESSSTRUCT
#define NONAMELESSUNION
31 32 33
#include "windef.h"
#include "winbase.h"
#include "mmsystem.h"
34 35
#include "wingdi.h"
#include "mmreg.h"
36
#include "winternl.h"
37 38
#include "wine/debug.h"
#include "dsound.h"
39 40
#include "ks.h"
#include "ksmedia.h"
41 42 43 44 45 46 47 48
#include "dsdriver.h"
#include "dsound_private.h"

WINE_DEFAULT_DEBUG_CHANNEL(dsound);

void DSOUND_RecalcVolPan(PDSVOLUMEPAN volpan)
{
	double temp;
49
	TRACE("(%p)\n",volpan);
50

51
	TRACE("Vol=%d Pan=%d\n", volpan->lVolume, volpan->lPan);
52
	/* the AmpFactors are expressed in 16.16 fixed point */
53
	volpan->dwVolAmpFactor = (ULONG) (pow(2.0, volpan->lVolume / 600.0) * 0xffff);
54 55 56 57
	/* FIXME: dwPan{Left|Right}AmpFactor */

	/* FIXME: use calculated vol and pan ampfactors */
	temp = (double) (volpan->lVolume - (volpan->lPan > 0 ? volpan->lPan : 0));
58
	volpan->dwTotalLeftAmpFactor = (ULONG) (pow(2.0, temp / 600.0) * 0xffff);
59
	temp = (double) (volpan->lVolume + (volpan->lPan < 0 ? volpan->lPan : 0));
60
	volpan->dwTotalRightAmpFactor = (ULONG) (pow(2.0, temp / 600.0) * 0xffff);
61

62
	TRACE("left = %x, right = %x\n", volpan->dwTotalLeftAmpFactor, volpan->dwTotalRightAmpFactor);
63 64
}

65 66 67 68 69
void DSOUND_AmpFactorToVolPan(PDSVOLUMEPAN volpan)
{
    double left,right;
    TRACE("(%p)\n",volpan);

70
    TRACE("left=%x, right=%x\n",volpan->dwTotalLeftAmpFactor,volpan->dwTotalRightAmpFactor);
71 72 73 74 75 76 77 78 79 80
    if (volpan->dwTotalLeftAmpFactor==0)
        left=-10000;
    else
        left=600 * log(((double)volpan->dwTotalLeftAmpFactor) / 0xffff) / log(2);
    if (volpan->dwTotalRightAmpFactor==0)
        right=-10000;
    else
        right=600 * log(((double)volpan->dwTotalRightAmpFactor) / 0xffff) / log(2);
    if (left<right)
    {
81
        volpan->lVolume=right;
82 83 84 85
        volpan->dwVolAmpFactor=volpan->dwTotalRightAmpFactor;
    }
    else
    {
86
        volpan->lVolume=left;
87 88 89 90
        volpan->dwVolAmpFactor=volpan->dwTotalLeftAmpFactor;
    }
    if (volpan->lVolume < -10000)
        volpan->lVolume=-10000;
91
    volpan->lPan=right-left;
92 93 94
    if (volpan->lPan < -10000)
        volpan->lPan=-10000;

95
    TRACE("Vol=%d Pan=%d\n", volpan->lVolume, volpan->lPan);
96 97
}

98 99 100 101 102 103 104 105 106 107 108 109 110
/** Convert a primary buffer position to a pointer position for device->mix_buffer
 * device: DirectSoundDevice for which to calculate
 * pos: Primary buffer position to converts
 * Returns: Offset for mix_buffer
 */
DWORD DSOUND_bufpos_to_mixpos(const DirectSoundDevice* device, DWORD pos)
{
    DWORD ret = pos * 32 / device->pwfx->wBitsPerSample;
    if (device->pwfx->wBitsPerSample == 32)
        ret *= 2;
    return ret;
}

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
/* NOTE: Not all secpos have to always be mapped to a bufpos, other way around is always the case
 * DWORD64 is used here because a single DWORD wouldn't be big enough to fit the freqAcc for big buffers
 */
/** This function converts a 'native' sample pointer to a resampled pointer that fits for primary
 * secmixpos is used to decide which freqAcc is needed
 * overshot tells what the 'actual' secpos is now (optional)
 */
DWORD DSOUND_secpos_to_bufpos(const IDirectSoundBufferImpl *dsb, DWORD secpos, DWORD secmixpos, DWORD* overshot)
{
	DWORD64 framelen = secpos / dsb->pwfx->nBlockAlign;
	DWORD64 freqAdjust = dsb->freqAdjust;
	DWORD64 acc, freqAcc;

	if (secpos < secmixpos)
		freqAcc = dsb->freqAccNext;
	else freqAcc = dsb->freqAcc;
	acc = (framelen << DSOUND_FREQSHIFT) + (freqAdjust - 1 - freqAcc);
	acc /= freqAdjust;
	if (overshot)
	{
		DWORD64 oshot = acc * freqAdjust + freqAcc;
		assert(oshot >= framelen << DSOUND_FREQSHIFT);
		oshot -= framelen << DSOUND_FREQSHIFT;
		*overshot = (DWORD)oshot;
		assert(*overshot < dsb->freqAdjust);
	}
	return (DWORD)acc * dsb->device->pwfx->nBlockAlign;
}

/** Convert a resampled pointer that fits for primary to a 'native' sample pointer
141
 * freqAccNext is used here rather than freqAcc: In case the app wants to fill up to
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
 * the play position it won't overwrite it
 */
static DWORD DSOUND_bufpos_to_secpos(const IDirectSoundBufferImpl *dsb, DWORD bufpos)
{
	DWORD oAdv = dsb->device->pwfx->nBlockAlign, iAdv = dsb->pwfx->nBlockAlign, pos;
	DWORD64 framelen;
	DWORD64 acc;

	framelen = bufpos/oAdv;
	acc = framelen * (DWORD64)dsb->freqAdjust + (DWORD64)dsb->freqAccNext;
	acc = acc >> DSOUND_FREQSHIFT;
	pos = (DWORD)acc * iAdv;
	if (pos >= dsb->buflen)
		/* Because of differences between freqAcc and freqAccNext, this might happen */
		pos = dsb->buflen - iAdv;
	TRACE("Converted %d/%d to %d/%d\n", bufpos, dsb->tmp_buffer_len, pos, dsb->buflen);
	return pos;
}

/**
 * Move freqAccNext to freqAcc, and find new values for buffer length and freqAccNext
 */
static void DSOUND_RecalcFreqAcc(IDirectSoundBufferImpl *dsb)
{
	if (!dsb->freqneeded) return;
	dsb->freqAcc = dsb->freqAccNext;
	dsb->tmp_buffer_len = DSOUND_secpos_to_bufpos(dsb, dsb->buflen, 0, &dsb->freqAccNext);
	TRACE("New freqadjust: %04x, new buflen: %d\n", dsb->freqAccNext, dsb->tmp_buffer_len);
}

/**
 * Recalculate the size for temporary buffer, and new writelead
 * Should be called when one of the following things occur:
 * - Primary buffer format is changed
 * - This buffer format (frequency) is changed
 *
 * After this, DSOUND_MixToTemporary(dsb, 0, dsb->buflen) should
 * be called to refill the temporary buffer with data.
 */
181 182
void DSOUND_RecalcFormat(IDirectSoundBufferImpl *dsb)
{
183 184
	BOOL needremix = TRUE, needresample = (dsb->freq != dsb->device->pwfx->nSamplesPerSec);
	DWORD bAlign = dsb->pwfx->nBlockAlign, pAlign = dsb->device->pwfx->nBlockAlign;
185 186
	WAVEFORMATEXTENSIBLE *pwfxe;
	BOOL ieee = FALSE;
187

188
	TRACE("(%p)\n",dsb);
189

190 191 192 193 194 195
	pwfxe = (WAVEFORMATEXTENSIBLE *) dsb->pwfx;

	if ((pwfxe->Format.wFormatTag == WAVE_FORMAT_IEEE_FLOAT) || ((pwfxe->Format.wFormatTag == WAVE_FORMAT_EXTENSIBLE)
	    && (IsEqualGUID(&pwfxe->SubFormat, &KSDATAFORMAT_SUBTYPE_IEEE_FLOAT))))
		ieee = TRUE;

196
	/* calculate the 10ms write lead */
197
	dsb->writelead = (dsb->freq / 100) * dsb->pwfx->nBlockAlign;
198 199

	if ((dsb->pwfx->wBitsPerSample == dsb->device->pwfx->wBitsPerSample) &&
200
	    (dsb->pwfx->nChannels == dsb->device->pwfx->nChannels) && !needresample && !ieee)
201 202 203 204 205 206
		needremix = FALSE;
	HeapFree(GetProcessHeap(), 0, dsb->tmp_buffer);
	dsb->tmp_buffer = NULL;
	dsb->max_buffer_len = dsb->freqAcc = dsb->freqAccNext = 0;
	dsb->freqneeded = needresample;

207 208 209 210
	if (ieee)
		dsb->convert = convertbpp[4][dsb->device->pwfx->wBitsPerSample/8 - 1];
	else
		dsb->convert = convertbpp[dsb->pwfx->wBitsPerSample/8 - 1][dsb->device->pwfx->wBitsPerSample/8 - 1];
211

212 213
	dsb->resampleinmixer = FALSE;

214 215 216 217 218 219 220
	if (needremix)
	{
		if (needresample)
			DSOUND_RecalcFreqAcc(dsb);
		else
			dsb->tmp_buffer_len = dsb->buflen / bAlign * pAlign;
		dsb->max_buffer_len = dsb->tmp_buffer_len;
221 222 223 224 225 226
		if ((dsb->max_buffer_len <= dsb->device->buflen || dsb->max_buffer_len < ds_snd_shadow_maxsize * 1024 * 1024) && ds_snd_shadow_maxsize >= 0)
			dsb->tmp_buffer = HeapAlloc(GetProcessHeap(), 0, dsb->max_buffer_len);
		if (dsb->tmp_buffer)
			FillMemory(dsb->tmp_buffer, dsb->tmp_buffer_len, dsb->device->pwfx->wBitsPerSample == 8 ? 128 : 0);
		else
			dsb->resampleinmixer = TRUE;
227 228 229
	}
	else dsb->max_buffer_len = dsb->tmp_buffer_len = dsb->buflen;
	dsb->buf_mixpos = DSOUND_secpos_to_bufpos(dsb, dsb->sec_mixpos, 0, NULL);
230 231
}

232 233 234 235 236 237 238 239
/**
 * Check for application callback requests for when the play position
 * reaches certain points.
 *
 * The offsets that will be triggered will be those between the recorded
 * "last played" position for the buffer (i.e. dsb->playpos) and "len" bytes
 * beyond that position.
 */
240
void DSOUND_CheckEvent(const IDirectSoundBufferImpl *dsb, DWORD playpos, int len)
241 242 243 244
{
	int			i;
	DWORD			offset;
	LPDSBPOSITIONNOTIFY	event;
245
	TRACE("(%p,%d)\n",dsb,len);
246

247
	if (dsb->nrofnotifies == 0)
248 249
		return;

250
	TRACE("(%p) buflen = %d, playpos = %d, len = %d\n",
251
		dsb, dsb->buflen, playpos, len);
252 253
	for (i = 0; i < dsb->nrofnotifies ; i++) {
		event = dsb->notifies + i;
254
		offset = event->dwOffset;
255
		TRACE("checking %d, position %d, event = %p\n",
256 257 258
			i, offset, event->hEventNotify);
		/* DSBPN_OFFSETSTOP has to be the last element. So this is */
		/* OK. [Inside DirectX, p274] */
259 260
		/* Windows does not seem to enforce this, and some apps rely */
		/* on that, so we can't stop there. */
261 262 263 264 265 266
		/*  */
		/* This also means we can't sort the entries by offset, */
		/* because DSBPN_OFFSETSTOP == -1 */
		if (offset == DSBPN_OFFSETSTOP) {
			if (dsb->state == STATE_STOPPED) {
				SetEvent(event->hEventNotify);
267
				TRACE("signalled event %p (%d)\n", event->hEventNotify, i);
268 269
			}
                        continue;
270
		}
271 272 273
		if ((playpos + len) >= dsb->buflen) {
			if ((offset < ((playpos + len) % dsb->buflen)) ||
			    (offset >= playpos)) {
274
				TRACE("signalled event %p (%d)\n", event->hEventNotify, i);
275 276 277
				SetEvent(event->hEventNotify);
			}
		} else {
278
			if ((offset >= playpos) && (offset < (playpos + len))) {
279
				TRACE("signalled event %p (%d)\n", event->hEventNotify, i);
280 281 282 283 284 285
				SetEvent(event->hEventNotify);
			}
		}
	}
}

286 287 288 289
/**
 * Copy a single frame from the given input buffer to the given output buffer.
 * Translate 8 <-> 16 bits and mono <-> stereo
 */
290 291
static inline void cp_fields(const IDirectSoundBufferImpl *dsb, const BYTE *ibuf, BYTE *obuf,
        UINT istride, UINT ostride, UINT count, UINT freqAcc, UINT adj)
292
{
293 294 295
    DirectSoundDevice *device = dsb->device;
    INT istep = dsb->pwfx->wBitsPerSample / 8, ostep = device->pwfx->wBitsPerSample / 8;

296
    if (device->pwfx->nChannels == dsb->pwfx->nChannels ||
297 298
        (device->pwfx->nChannels == 2 && dsb->pwfx->nChannels == 6) ||
        (device->pwfx->nChannels == 6 && dsb->pwfx->nChannels == 2)) {
299
        dsb->convert(ibuf, obuf, istride, ostride, count, freqAcc, adj);
300
        if (device->pwfx->nChannels == 2 || dsb->pwfx->nChannels == 2)
301
            dsb->convert(ibuf + istep, obuf + ostep, istride, ostride, count, freqAcc, adj);
302
        return;
303
    }
304

305 306
    if (device->pwfx->nChannels == 1 && dsb->pwfx->nChannels == 2)
    {
307
        dsb->convert(ibuf, obuf, istride, ostride, count, freqAcc, adj);
308
        return;
309
    }
310

311 312
    if (device->pwfx->nChannels == 2 && dsb->pwfx->nChannels == 1)
    {
313 314
        dsb->convert(ibuf, obuf, istride, ostride, count, freqAcc, adj);
        dsb->convert(ibuf, obuf + ostep, istride, ostride, count, freqAcc, adj);
315
        return;
316
    }
317 318 319

    WARN("Unable to remap channels: device=%u, buffer=%u\n", device->pwfx->nChannels,
            dsb->pwfx->nChannels);
320 321
}

322
/**
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
 * Calculate the distance between two buffer offsets, taking wraparound
 * into account.
 */
static inline DWORD DSOUND_BufPtrDiff(DWORD buflen, DWORD ptr1, DWORD ptr2)
{
/* If these asserts fail, the problem is not here, but in the underlying code */
	assert(ptr1 < buflen);
	assert(ptr2 < buflen);
	if (ptr1 >= ptr2) {
		return ptr1 - ptr2;
	} else {
		return buflen + ptr1 - ptr2;
	}
}
/**
 * Mix at most the given amount of data into the allocated temporary buffer
 * of the given secondary buffer, starting from the dsb's first currently
 * unsampled frame (writepos), translating frequency (pitch), stereo/mono
 * and bits-per-sample so that it is ideal for the primary buffer.
 * Doesn't perform any mixing - this is a straight copy/convert operation.
343 344
 *
 * dsb = the secondary buffer
345 346
 * writepos = Starting position of changed buffer
 * len = number of bytes to resample from writepos
347
 *
348
 * NOTE: writepos + len <= buflen. When called by mixer, MixOne makes sure of this.
349
 */
350
void DSOUND_MixToTemporary(const IDirectSoundBufferImpl *dsb, DWORD writepos, DWORD len, BOOL inmixer)
351
{
352
	INT	size;
353
	BYTE	*ibp, *obp, *obp_begin;
354
	INT	iAdvance = dsb->pwfx->nBlockAlign;
Robert Reif's avatar
Robert Reif committed
355
	INT	oAdvance = dsb->device->pwfx->nBlockAlign;
356
	DWORD freqAcc, target_writepos = 0, overshot, maxlen;
357

358 359
	/* We resample only when needed */
	if ((dsb->tmp_buffer && inmixer) || (!dsb->tmp_buffer && !inmixer) || dsb->resampleinmixer != inmixer)
360
		return;
361

362 363 364 365 366 367
	assert(writepos + len <= dsb->buflen);
	if (inmixer && writepos + len < dsb->buflen)
		len += dsb->pwfx->nBlockAlign;

	maxlen = DSOUND_secpos_to_bufpos(dsb, len, 0, NULL);

368
	ibp = dsb->buffer->memory + writepos;
369 370 371 372 373 374 375 376 377 378 379 380 381
	if (!inmixer)
		obp_begin = dsb->tmp_buffer;
	else if (dsb->device->tmp_buffer_len < maxlen || !dsb->device->tmp_buffer)
	{
		dsb->device->tmp_buffer_len = maxlen;
		if (dsb->device->tmp_buffer)
			dsb->device->tmp_buffer = HeapReAlloc(GetProcessHeap(), 0, dsb->device->tmp_buffer, maxlen);
		else
			dsb->device->tmp_buffer = HeapAlloc(GetProcessHeap(), 0, maxlen);
		obp_begin = dsb->device->tmp_buffer;
	}
	else
		obp_begin = dsb->device->tmp_buffer;
382

383
	TRACE("(%p, %p)\n", dsb, ibp);
384
	size = len / iAdvance;
385 386

	/* Check for same sample rate */
Robert Reif's avatar
Robert Reif committed
387
	if (dsb->freq == dsb->device->pwfx->nSamplesPerSec) {
388
		TRACE("(%p) Same sample rate %d = primary %d\n", dsb,
Robert Reif's avatar
Robert Reif committed
389
			dsb->freq, dsb->device->pwfx->nSamplesPerSec);
390 391 392 393
		obp = obp_begin;
		if (!inmixer)
			 obp += writepos/iAdvance*oAdvance;

394
		cp_fields(dsb, ibp, obp, iAdvance, oAdvance, size, 0, 1 << DSOUND_FREQSHIFT);
395
		return;
396 397 398
	}

	/* Mix in different sample rates */
399
	TRACE("(%p) Adjusting frequency: %d -> %d\n", dsb, dsb->freq, dsb->device->pwfx->nSamplesPerSec);
400

401 402 403 404 405 406 407 408 409 410 411 412 413 414
	target_writepos = DSOUND_secpos_to_bufpos(dsb, writepos, dsb->sec_mixpos, &freqAcc);
	overshot = freqAcc >> DSOUND_FREQSHIFT;
	if (overshot)
	{
		if (overshot >= size)
			return;
		size -= overshot;
		writepos += overshot * iAdvance;
		if (writepos >= dsb->buflen)
			return;
		ibp = dsb->buffer->memory + writepos;
		freqAcc &= (1 << DSOUND_FREQSHIFT) - 1;
		TRACE("Overshot: %d, freqAcc: %04x\n", overshot, freqAcc);
	}
415

416 417 418 419
	if (!inmixer)
		obp = obp_begin + target_writepos;
	else obp = obp_begin;

420
	/* FIXME: Small problem here when we're overwriting buf_mixpos, it then STILL uses old freqAcc, not sure if it matters or not */
421
	cp_fields(dsb, ibp, obp, iAdvance, oAdvance, size, freqAcc, dsb->freqAdjust);
422 423
}

424 425 426
/** Apply volume to the given soundbuffer from (primary) position writepos and length len
 * Returns: NULL if no volume needs to be applied
 * or else a memory handle that holds 'len' volume adjusted buffer */
427
static LPBYTE DSOUND_MixerVol(const IDirectSoundBufferImpl *dsb, INT len)
428
{
429
	INT	i;
430 431 432 433
	BYTE	*bpc;
	INT16	*bps, *mems;
	DWORD vLeft, vRight;
	INT nChannels = dsb->device->pwfx->nChannels;
434 435 436 437
	LPBYTE mem = (dsb->tmp_buffer ? dsb->tmp_buffer : dsb->buffer->memory) + dsb->buf_mixpos;

	if (dsb->resampleinmixer)
		mem = dsb->device->tmp_buffer;
438

439
	TRACE("(%p,%d)\n",dsb,len);
440 441
	TRACE("left = %x, right = %x\n", dsb->volpan.dwTotalLeftAmpFactor,
		dsb->volpan.dwTotalRightAmpFactor);
442

443 444 445 446 447
	if ((!(dsb->dsbd.dwFlags & DSBCAPS_CTRLPAN) || (dsb->volpan.lPan == 0)) &&
	    (!(dsb->dsbd.dwFlags & DSBCAPS_CTRLVOLUME) || (dsb->volpan.lVolume == 0)) &&
	     !(dsb->dsbd.dwFlags & DSBCAPS_CTRL3D))
		return NULL; /* Nothing to do */

448 449 450 451 452 453 454 455 456 457 458 459 460 461
	if (nChannels != 1 && nChannels != 2)
	{
		FIXME("There is no support for %d channels\n", nChannels);
		return NULL;
	}

	if (dsb->device->pwfx->wBitsPerSample != 8 && dsb->device->pwfx->wBitsPerSample != 16)
	{
		FIXME("There is no support for %d bpp\n", dsb->device->pwfx->wBitsPerSample);
		return NULL;
	}

	if (dsb->device->tmp_buffer_len < len || !dsb->device->tmp_buffer)
	{
462 463
		/* If we just resampled in DSOUND_MixToTemporary, we shouldn't need to resize here */
		assert(!dsb->resampleinmixer);
464 465 466 467 468 469
		dsb->device->tmp_buffer_len = len;
		if (dsb->device->tmp_buffer)
			dsb->device->tmp_buffer = HeapReAlloc(GetProcessHeap(), 0, dsb->device->tmp_buffer, len);
		else
			dsb->device->tmp_buffer = HeapAlloc(GetProcessHeap(), 0, len);
	}
470

471 472 473 474 475 476 477 478
	bpc = dsb->device->tmp_buffer;
	bps = (INT16 *)bpc;
	mems = (INT16 *)mem;
	vLeft = dsb->volpan.dwTotalLeftAmpFactor;
	if (nChannels > 1)
		vRight = dsb->volpan.dwTotalRightAmpFactor;
	else
		vRight = vLeft;
479

Robert Reif's avatar
Robert Reif committed
480
	switch (dsb->device->pwfx->wBitsPerSample) {
481 482 483
	case 8:
		/* 8-bit WAV is unsigned, but we need to operate */
		/* on signed data for this to work properly */
484
		for (i = 0; i < len-1; i+=2) {
485 486
			*(bpc++) = (((*(mem++) - 128) * vLeft) >> 16) + 128;
			*(bpc++) = (((*(mem++) - 128) * vRight) >> 16) + 128;
487
		}
488
		if (len % 2 == 1 && nChannels == 1)
489
			*(bpc++) = (((*(mem++) - 128) * vLeft) >> 16) + 128;
490 491 492
		break;
	case 16:
		/* 16-bit WAV is signed -- much better */
493
		for (i = 0; i < len-3; i += 4) {
494 495
			*(bps++) = (*(mems++) * vLeft) >> 16;
			*(bps++) = (*(mems++) * vRight) >> 16;
496
		}
497 498
		if (len % 4 == 2 && nChannels == 1)
			*(bps++) = ((INT)*(mems++) * vLeft) >> 16;
499
		break;
500
	}
501
	return dsb->device->tmp_buffer;
502 503
}

504 505 506 507 508 509 510 511 512 513 514 515 516
/**
 * Mix (at most) the given number of bytes into the given position of the
 * device buffer, from the secondary buffer "dsb" (starting at the current
 * mix position for that buffer).
 *
 * Returns the number of bytes actually mixed into the device buffer. This
 * will match fraglen unless the end of the secondary buffer is reached
 * (and it is not looping).
 *
 * dsb  = the secondary buffer to mix from
 * writepos = position (offset) in device buffer to write at
 * fraglen = number of bytes to mix
 */
517 518
static DWORD DSOUND_MixInBuffer(IDirectSoundBufferImpl *dsb, DWORD writepos, DWORD fraglen)
{
519
	INT len = fraglen, ilen;
520
	BYTE *ibuf = (dsb->tmp_buffer ? dsb->tmp_buffer : dsb->buffer->memory) + dsb->buf_mixpos, *volbuf;
521
	DWORD oldpos, mixbufpos;
522

523
	TRACE("buf_mixpos=%d/%d sec_mixpos=%d/%d\n", dsb->buf_mixpos, dsb->tmp_buffer_len, dsb->sec_mixpos, dsb->buflen);
524
	TRACE("(%p,%d,%d)\n",dsb,writepos,fraglen);
525

526
	assert(dsb->buf_mixpos + len <= dsb->tmp_buffer_len);
527

Robert Reif's avatar
Robert Reif committed
528 529
	if (len % dsb->device->pwfx->nBlockAlign) {
		INT nBlockAlign = dsb->device->pwfx->nBlockAlign;
530
		ERR("length not a multiple of block size, len = %d, block size = %d\n", len, nBlockAlign);
531
		len -= len % nBlockAlign; /* data alignment */
532
	}
533

534 535 536 537 538
	/* Resample buffer to temporary buffer specifically allocated for this purpose, if needed */
	DSOUND_MixToTemporary(dsb, dsb->sec_mixpos, DSOUND_bufpos_to_secpos(dsb, dsb->buf_mixpos+len) - dsb->sec_mixpos, TRUE);
	if (dsb->resampleinmixer)
		ibuf = dsb->device->tmp_buffer;

539
	/* Apply volume if needed */
540
	volbuf = DSOUND_MixerVol(dsb, len);
541 542
	if (volbuf)
		ibuf = volbuf;
543

544
	mixbufpos = DSOUND_bufpos_to_mixpos(dsb->device, writepos);
545
	/* Now mix the temporary buffer into the devices main buffer */
546 547 548 549 550 551 552
	if ((writepos + len) <= dsb->device->buflen)
		dsb->device->mixfunction(ibuf, dsb->device->mix_buffer + mixbufpos, len);
	else
	{
		DWORD todo = dsb->device->buflen - writepos;
		dsb->device->mixfunction(ibuf, dsb->device->mix_buffer + mixbufpos, todo);
		dsb->device->mixfunction(ibuf + todo, dsb->device->mix_buffer, len - todo);
553 554 555 556
	}

	oldpos = dsb->sec_mixpos;
	dsb->buf_mixpos += len;
557

558
	if (dsb->buf_mixpos >= dsb->tmp_buffer_len) {
559 560
		if (dsb->buf_mixpos > dsb->tmp_buffer_len)
			ERR("Mixpos (%u) past buflen (%u), capping...\n", dsb->buf_mixpos, dsb->tmp_buffer_len);
561 562 563 564 565 566 567
		if (dsb->playflags & DSBPLAY_LOOPING) {
			dsb->buf_mixpos -= dsb->tmp_buffer_len;
		} else if (dsb->buf_mixpos >= dsb->tmp_buffer_len) {
			dsb->buf_mixpos = dsb->sec_mixpos = 0;
			dsb->state = STATE_STOPPED;
		}
		DSOUND_RecalcFreqAcc(dsb);
568 569
	}

570 571
	dsb->sec_mixpos = DSOUND_bufpos_to_secpos(dsb, dsb->buf_mixpos);
	ilen = DSOUND_BufPtrDiff(dsb->buflen, dsb->sec_mixpos, oldpos);
572 573 574
	/* check for notification positions */
	if (dsb->dsbd.dwFlags & DSBCAPS_CTRLPOSITIONNOTIFY &&
	    dsb->state != STATE_STARTING) {
575
		DSOUND_CheckEvent(dsb, oldpos, ilen);
576 577
	}

578 579
	/* increase mix position */
	dsb->primary_mixpos += len;
580 581
	if (dsb->primary_mixpos >= dsb->device->buflen)
		dsb->primary_mixpos -= dsb->device->buflen;
582 583 584
	return len;
}

585 586 587 588 589
/**
 * Mix some frames from the given secondary buffer "dsb" into the device
 * primary buffer.
 *
 * dsb = the secondary buffer
590
 * playpos = the current play position in the device buffer (primary buffer)
591 592 593 594 595 596
 * writepos = the current safe-to-write position in the device buffer
 * mixlen = the maximum number of bytes in the primary buffer to mix, from the
 *          current writepos.
 *
 * Returns: the number of bytes beyond the writepos that were mixed.
 */
597
static DWORD DSOUND_MixOne(IDirectSoundBufferImpl *dsb, DWORD writepos, DWORD mixlen)
598
{
599
	/* The buffer's primary_mixpos may be before or after the device
600
	 * buffer's mixpos, but both must be ahead of writepos. */
601
	DWORD primary_done;
602

603
	TRACE("(%p,%d,%d)\n",dsb,writepos,mixlen);
604
	TRACE("writepos=%d, buf_mixpos=%d, primary_mixpos=%d, mixlen=%d\n", writepos, dsb->buf_mixpos, dsb->primary_mixpos, mixlen);
605 606 607 608 609 610 611 612 613 614 615 616
	TRACE("looping=%d, leadin=%d, buflen=%d\n", dsb->playflags, dsb->leadin, dsb->tmp_buffer_len);

	/* If leading in, only mix about 20 ms, and 'skip' mixing the rest, for more fluid pointer advancement */
	if (dsb->leadin && dsb->state == STATE_STARTING)
	{
		if (mixlen > 2 * dsb->device->fraglen)
		{
			dsb->primary_mixpos += mixlen - 2 * dsb->device->fraglen;
			dsb->primary_mixpos %= dsb->device->buflen;
		}
	}
	dsb->leadin = FALSE;
617

618 619 620 621 622 623 624
	/* calculate how much pre-buffering has already been done for this buffer */
	primary_done = DSOUND_BufPtrDiff(dsb->device->buflen, dsb->primary_mixpos, writepos);

	/* sanity */
	if(mixlen < primary_done)
	{
		/* Should *NEVER* happen */
625
		ERR("Fatal error. Under/Overflow? primary_done=%d, mixpos=%d/%d (%d/%d), primary_mixpos=%d, writepos=%d, mixlen=%d\n", primary_done,dsb->buf_mixpos,dsb->tmp_buffer_len,dsb->sec_mixpos, dsb->buflen, dsb->primary_mixpos, writepos, mixlen);
626 627 628
		dsb->primary_mixpos = writepos + mixlen;
		dsb->primary_mixpos %= dsb->device->buflen;
		return mixlen;
629 630
	}

Austin English's avatar
Austin English committed
631
	/* take into account already mixed data */
632
	mixlen -= primary_done;
633

634
	TRACE("primary_done=%d, mixlen (primary) = %i\n", primary_done, mixlen);
635

636
	if (!mixlen)
637
		return primary_done;
638 639 640 641 642

	/* First try to mix to the end of the buffer if possible
	 * Theoretically it would allow for better optimization
	*/
	if (mixlen + dsb->buf_mixpos >= dsb->tmp_buffer_len)
643
	{
644 645 646 647 648 649
		DWORD newmixed, mixfirst = dsb->tmp_buffer_len - dsb->buf_mixpos;
		newmixed = DSOUND_MixInBuffer(dsb, dsb->primary_mixpos, mixfirst);
		mixlen -= newmixed;

		if (dsb->playflags & DSBPLAY_LOOPING)
			while (newmixed && mixlen)
650
			{
651 652 653
				mixfirst = (dsb->tmp_buffer_len < mixlen ? dsb->tmp_buffer_len : mixlen);
				newmixed = DSOUND_MixInBuffer(dsb, dsb->primary_mixpos, mixfirst);
				mixlen -= newmixed;
654
			}
655
	}
656
	else DSOUND_MixInBuffer(dsb, dsb->primary_mixpos, mixlen);
657 658 659

	/* re-calculate the primary done */
	primary_done = DSOUND_BufPtrDiff(dsb->device->buflen, dsb->primary_mixpos, writepos);
660

661
	TRACE("new primary_mixpos=%d, total mixed data=%d\n", dsb->primary_mixpos, primary_done);
662

663 664
	/* Report back the total prebuffered amount for this buffer */
	return primary_done;
665 666
}

667 668 669 670 671 672 673 674 675
/**
 * For a DirectSoundDevice, go through all the currently playing buffers and
 * mix them in to the device buffer.
 *
 * writepos = the current safe-to-write position in the primary buffer
 * mixlen = the maximum amount to mix into the primary buffer
 *          (beyond the current writepos)
 * recover = true if the sound device may have been reset and the write
 *           position in the device buffer changed
676
 * all_stopped = reports back if all buffers have stopped
677 678 679
 *
 * Returns:  the length beyond the writepos that was mixed to.
 */
680

681
static DWORD DSOUND_MixToPrimary(const DirectSoundDevice *device, DWORD writepos, DWORD mixlen, BOOL recover, BOOL *all_stopped)
682
{
683 684
	INT i, len;
	DWORD minlen = 0;
685 686
	IDirectSoundBufferImpl	*dsb;

687 688 689
	/* unless we find a running buffer, all have stopped */
	*all_stopped = TRUE;

690
	TRACE("(%d,%d,%d)\n", writepos, mixlen, recover);
691 692
	for (i = 0; i < device->nrofbuffers; i++) {
		dsb = device->buffers[i];
693

694 695
		TRACE("MixToPrimary for %p, state=%d\n", dsb, dsb->state);

696
		if (dsb->buflen && dsb->state && !dsb->hwbuf) {
697
			TRACE("Checking %p, mixlen=%d\n", dsb, mixlen);
698
			RtlAcquireResourceShared(&dsb->lock, TRUE);
699
			/* if buffer is stopping it is stopped now */
700 701
			if (dsb->state == STATE_STOPPING) {
				dsb->state = STATE_STOPPED;
702
				DSOUND_CheckEvent(dsb, 0, 0);
703
			} else if (dsb->state != STATE_STOPPED) {
704 705

				/* if recovering, reset the mix position */
706 707 708
				if ((dsb->state == STATE_STARTING) || recover) {
					dsb->primary_mixpos = writepos;
				}
709 710

				/* if the buffer was starting, it must be playing now */
711 712
				if (dsb->state == STATE_STARTING)
					dsb->state = STATE_PLAYING;
713

714 715 716
				/* mix next buffer into the main buffer */
				len = DSOUND_MixOne(dsb, writepos, mixlen);

717
				if (!minlen) minlen = len;
718

719
				/* record the minimum length mixed from all buffers */
720
				/* we only want to return the length which *all* buffers have mixed */
721
				else if (len) minlen = (len < minlen) ? len : minlen;
722 723

				*all_stopped = FALSE;
724
			}
725
			RtlReleaseResource(&dsb->lock);
726 727 728
		}
	}

729 730
	TRACE("Mixed at least %d from all buffers\n", minlen);
	return minlen;
731 732
}

733 734 735 736 737 738 739 740 741 742 743
/**
 * Add buffers to the emulated wave device system.
 *
 * device = The current dsound playback device
 * force = If TRUE, the function will buffer up as many frags as possible,
 *         even though and will ignore the actual state of the primary buffer.
 *
 * Returns:  None
 */

static void DSOUND_WaveQueue(DirectSoundDevice *device, BOOL force)
744
{
745 746
	DWORD prebuf_frags, wave_writepos, wave_fragpos, i;
	TRACE("(%p)\n", device);
747

748
	/* calculate the current wave frag position */
749
	wave_fragpos = (device->pwplay + device->pwqueue) % device->helfrags;
750

Austin English's avatar
Austin English committed
751
	/* calculate the current wave write position */
752
	wave_writepos = wave_fragpos * device->fraglen;
753

754 755
	TRACE("wave_fragpos = %i, wave_writepos = %i, pwqueue = %i, prebuf = %i\n",
		wave_fragpos, wave_writepos, device->pwqueue, device->prebuf);
756

757 758
	if (!force)
	{
759
		/* check remaining prebuffered frags */
760 761 762 763 764 765 766 767
		prebuf_frags = device->mixpos / device->fraglen;
		if (prebuf_frags == device->helfrags)
			--prebuf_frags;
		TRACE("wave_fragpos = %d, mixpos_frags = %d\n", wave_fragpos, prebuf_frags);
		if (prebuf_frags < wave_fragpos)
			prebuf_frags += device->helfrags;
		prebuf_frags -= wave_fragpos;
		TRACE("wanted prebuf_frags = %d\n", prebuf_frags);
768
	}
769
	else
770 771
		/* buffer the maximum amount of frags */
		prebuf_frags = device->prebuf;
772

773
	/* limit to the queue we have left */
774
	if ((prebuf_frags + device->pwqueue) > device->prebuf)
775
		prebuf_frags = device->prebuf - device->pwqueue;
776

777
	TRACE("prebuf_frags = %i\n", prebuf_frags);
778

779 780 781 782 783 784 785 786 787 788
	/* adjust queue */
	device->pwqueue += prebuf_frags;

	/* get out of CS when calling the wave system */
	LeaveCriticalSection(&(device->mixlock));
	/* **** */

	/* queue up the new buffers */
	for(i=0; i<prebuf_frags; i++){
		TRACE("queueing wave buffer %i\n", wave_fragpos);
789
		waveOutWrite(device->hwo, &device->pwave[wave_fragpos], sizeof(WAVEHDR));
790
		wave_fragpos++;
791
		wave_fragpos %= device->helfrags;
792 793
	}

794 795 796 797 798
	/* **** */
	EnterCriticalSection(&(device->mixlock));

	TRACE("queue now = %i\n", device->pwqueue);
}
799

800 801 802 803 804
/**
 * Perform mixing for a Direct Sound device. That is, go through all the
 * secondary buffers (the sound bites currently playing) and mix them in
 * to the primary buffer (the device buffer).
 */
805
static void DSOUND_PerformMix(DirectSoundDevice *device)
806
{
807
	TRACE("(%p)\n", device);
808

809 810
	/* **** */
	EnterCriticalSection(&(device->mixlock));
811

812
	if (device->priolevel != DSSCL_WRITEPRIMARY) {
813
		BOOL recover = FALSE, all_stopped = FALSE;
814
		DWORD playpos, writepos, writelead, maxq, frag, prebuff_max, prebuff_left, size1, size2, mixplaypos, mixplaypos2;
815 816 817 818 819 820 821 822 823 824 825
		LPVOID buf1, buf2;
		BOOL lock = (device->hwbuf && !(device->drvdesc.dwFlags & DSDDESC_DONTNEEDPRIMARYLOCK));
		int nfiller;

		/* the sound of silence */
		nfiller = device->pwfx->wBitsPerSample == 8 ? 128 : 0;

		/* get the position in the primary buffer */
		if (DSOUND_PrimaryGetPosition(device, &playpos, &writepos) != 0){
			LeaveCriticalSection(&(device->mixlock));
			return;
826
		}
827

828
		TRACE("primary playpos=%d, writepos=%d, clrpos=%d, mixpos=%d, buflen=%d\n",
829 830
		      playpos,writepos,device->playpos,device->mixpos,device->buflen);
		assert(device->playpos < device->buflen);
831

832 833
		mixplaypos = DSOUND_bufpos_to_mixpos(device, device->playpos);
		mixplaypos2 = DSOUND_bufpos_to_mixpos(device, playpos);
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859

		/* calc maximum prebuff */
		prebuff_max = (device->prebuf * device->fraglen);
		if (!device->hwbuf && playpos + prebuff_max >= device->helfrags * device->fraglen)
			prebuff_max += device->buflen - device->helfrags * device->fraglen;

		/* check how close we are to an underrun. It occurs when the writepos overtakes the mixpos */
		prebuff_left = DSOUND_BufPtrDiff(device->buflen, device->mixpos, playpos);
		writelead = DSOUND_BufPtrDiff(device->buflen, writepos, playpos);

		/* check for underrun. underrun occurs when the write position passes the mix position
		 * also wipe out just-played sound data */
		if((prebuff_left > prebuff_max) || (device->state == STATE_STOPPED) || (device->state == STATE_STARTING)){
			if (device->state == STATE_STOPPING || device->state == STATE_PLAYING)
				WARN("Probable buffer underrun\n");
			else TRACE("Buffer starting or buffer underrun\n");

			/* recover mixing for all buffers */
			recover = TRUE;

			/* reset mix position to write position */
			device->mixpos = writepos;

			ZeroMemory(device->mix_buffer, device->mix_buffer_len);
			ZeroMemory(device->buffer, device->buflen);
		} else if (playpos < device->playpos) {
860 861 862 863
			buf1 = device->buffer + device->playpos;
			buf2 = device->buffer;
			size1 = device->buflen - device->playpos;
			size2 = playpos;
864 865
			FillMemory(device->mix_buffer + mixplaypos, device->mix_buffer_len - mixplaypos, 0);
			FillMemory(device->mix_buffer, mixplaypos2, 0);
866 867 868 869 870 871 872 873
			if (lock)
				IDsDriverBuffer_Lock(device->hwbuf, &buf1, &size1, &buf2, &size2, device->playpos, size1+size2, 0);
			FillMemory(buf1, size1, nfiller);
			if (playpos && (!buf2 || !size2))
				FIXME("%d: (%d, %d)=>(%d, %d) There should be an additional buffer here!!\n", __LINE__, device->playpos, device->mixpos, playpos, writepos);
			FillMemory(buf2, size2, nfiller);
			if (lock)
				IDsDriverBuffer_Unlock(device->hwbuf, buf1, size1, buf2, size2);
874
		} else {
875 876 877 878
			buf1 = device->buffer + device->playpos;
			buf2 = NULL;
			size1 = playpos - device->playpos;
			size2 = 0;
879
			FillMemory(device->mix_buffer + mixplaypos, mixplaypos2 - mixplaypos, 0);
880 881 882 883 884 885 886 887 888 889
			if (lock)
				IDsDriverBuffer_Lock(device->hwbuf, &buf1, &size1, &buf2, &size2, device->playpos, size1+size2, 0);
			FillMemory(buf1, size1, nfiller);
			if (buf2 && size2)
			{
				FIXME("%d: There should be no additional buffer here!!\n", __LINE__);
				FillMemory(buf2, size2, nfiller);
			}
			if (lock)
				IDsDriverBuffer_Unlock(device->hwbuf, buf1, size1, buf2, size2);
890
		}
891
		device->playpos = playpos;
892

893 894 895 896 897 898 899
		/* find the maximum we can prebuffer from current write position */
		maxq = (writelead < prebuff_max) ? (prebuff_max - writelead) : 0;

		TRACE("prebuff_left = %d, prebuff_max = %dx%d=%d, writelead=%d\n",
			prebuff_left, device->prebuf, device->fraglen, prebuff_max, writelead);

		if (lock)
900
			IDsDriverBuffer_Lock(device->hwbuf, &buf1, &size1, &buf2, &size2, writepos, maxq, 0);
901

902
		/* do the mixing */
903
		frag = DSOUND_MixToPrimary(device, writepos, maxq, recover, &all_stopped);
904

905 906 907 908 909 910 911 912 913
		if (frag + writepos > device->buflen)
		{
			DWORD todo = device->buflen - writepos;
			device->normfunction(device->mix_buffer + DSOUND_bufpos_to_mixpos(device, writepos), device->buffer + writepos, todo);
			device->normfunction(device->mix_buffer, device->buffer, frag - todo);
		}
		else
			device->normfunction(device->mix_buffer + DSOUND_bufpos_to_mixpos(device, writepos), device->buffer + writepos, frag);

Austin English's avatar
Austin English committed
914
		/* update the mix position, taking wrap-around into account */
915
		device->mixpos = writepos + frag;
916
		device->mixpos %= device->buflen;
917

918 919 920 921 922 923 924 925
		if (lock)
		{
			DWORD frag2 = (frag > size1 ? frag - size1 : 0);
			frag -= frag2;
			if (frag2 > size2)
			{
				FIXME("Buffering too much! (%d, %d, %d, %d)\n", maxq, frag, size2, frag2 - size2);
				frag2 = size2;
926
			}
927 928 929 930 931 932 933 934 935 936
			IDsDriverBuffer_Unlock(device->hwbuf, buf1, frag, buf2, frag2);
		}

		/* update prebuff left */
		prebuff_left = DSOUND_BufPtrDiff(device->buflen, device->mixpos, playpos);

		/* check if have a whole fragment */
		if (prebuff_left >= device->fraglen){

			/* update the wave queue if using wave system */
937 938
			if (!device->hwbuf)
				DSOUND_WaveQueue(device, FALSE);
939 940 941 942 943

			/* buffers are full. start playing if applicable */
			if(device->state == STATE_STARTING){
				TRACE("started primary buffer\n");
				if(DSOUND_PrimaryPlay(device) != DS_OK){
944
					WARN("DSOUND_PrimaryPlay failed\n");
945 946 947 948 949 950 951 952 953
				}
				else{
					/* we are playing now */
					device->state = STATE_PLAYING;
				}
			}

			/* buffers are full. start stopping if applicable */
			if(device->state == STATE_STOPPED){
954
				TRACE("restarting primary buffer\n");
955 956 957 958 959 960 961
				if(DSOUND_PrimaryPlay(device) != DS_OK){
					WARN("DSOUND_PrimaryPlay failed\n");
				}
				else{
					/* start stopping again. as soon as there is no more data, it will stop */
					device->state = STATE_STOPPING;
				}
962 963
			}
		}
964 965 966 967 968 969 970 971 972 973

		/* if device was stopping, its for sure stopped when all buffers have stopped */
		else if((all_stopped == TRUE) && (device->state == STATE_STOPPING)){
			TRACE("All buffers have stopped. Stopping primary buffer\n");
			device->state = STATE_STOPPED;

			/* stop the primary buffer now */
			DSOUND_PrimaryStop(device);
		}

974
	} else {
975 976

		/* update the wave queue if using wave system */
977
		if (!device->hwbuf)
978
			DSOUND_WaveQueue(device, TRUE);
979 980 981
		else
			/* Keep alsa happy, which needs GetPosition called once every 10 ms */
			IDsDriverBuffer_GetPosition(device->hwbuf, NULL, NULL);
982

983
		/* in the DSSCL_WRITEPRIMARY mode, the app is totally in charge... */
984 985
		if (device->state == STATE_STARTING) {
			if (DSOUND_PrimaryPlay(device) != DS_OK)
986 987
				WARN("DSOUND_PrimaryPlay failed\n");
			else
988
				device->state = STATE_PLAYING;
989
		}
990 991
		else if (device->state == STATE_STOPPING) {
			if (DSOUND_PrimaryStop(device) != DS_OK)
992 993
				WARN("DSOUND_PrimaryStop failed\n");
			else
994
				device->state = STATE_STOPPED;
995 996
		}
	}
997 998 999

	LeaveCriticalSection(&(device->mixlock));
	/* **** */
1000 1001
}

1002 1003
void CALLBACK DSOUND_timer(UINT timerID, UINT msg, DWORD_PTR dwUser,
                           DWORD_PTR dw1, DWORD_PTR dw2)
1004
{
1005
	DirectSoundDevice * device = (DirectSoundDevice*)dwUser;
1006
	DWORD start_time =  GetTickCount();
1007
	DWORD end_time;
1008
	TRACE("(%d,%d,0x%lx,0x%lx,0x%lx)\n",timerID,msg,dwUser,dw1,dw2);
1009
	TRACE("entering at %d\n", start_time);
1010

1011
	if (DSOUND_renderer[device->drvdesc.dnDevNode] != device) {
1012 1013 1014 1015 1016 1017
		ERR("dsound died without killing us?\n");
		timeKillEvent(timerID);
		timeEndPeriod(DS_TIME_RES);
		return;
	}

1018
	RtlAcquireResourceShared(&(device->buffer_list_lock), TRUE);
1019

1020 1021
	if (device->ref)
		DSOUND_PerformMix(device);
1022

1023
	RtlReleaseResource(&(device->buffer_list_lock));
1024

1025
	end_time = GetTickCount();
1026
	TRACE("completed processing at %d, duration = %d\n", end_time, end_time - start_time);
1027 1028
}

1029
void CALLBACK DSOUND_callback(HWAVEOUT hwo, UINT msg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)
1030
{
1031
	DirectSoundDevice * device = (DirectSoundDevice*)dwUser;
1032
	TRACE("(%p,%x,%lx,%lx,%lx)\n",hwo,msg,dwUser,dw1,dw2);
1033
	TRACE("entering at %d, msg=%08x(%s)\n", GetTickCount(), msg,
1034 1035
		msg==MM_WOM_DONE ? "MM_WOM_DONE" : msg==MM_WOM_CLOSE ? "MM_WOM_CLOSE" : 
		msg==MM_WOM_OPEN ? "MM_WOM_OPEN" : "UNKNOWN");
1036 1037

	/* check if packet completed from wave driver */
1038
	if (msg == MM_WOM_DONE) {
1039 1040

		/* **** */
1041
		EnterCriticalSection(&(device->mixlock));
1042 1043 1044 1045 1046

		TRACE("done playing primary pos=%d\n", device->pwplay * device->fraglen);

		/* update playpos */
		device->pwplay++;
1047
		device->pwplay %= device->helfrags;
1048 1049 1050 1051 1052 1053 1054

		/* sanity */
		if(device->pwqueue == 0){
			ERR("Wave queue corrupted!\n");
		}

		/* update queue */
1055
		device->pwqueue--;
1056

1057
		LeaveCriticalSection(&(device->mixlock));
1058
		/* **** */
1059 1060 1061
	}
	TRACE("completed\n");
}