push 149f0a5527ac85057a8ef03858d34d91c36f97e8
[wine/hacks.git] / dlls / winealsa.drv / dsoutput.c
blobbb816215511f11d8339c93f97eb2f121b6043201
1 /*
2 * Sample Wine Driver for Advanced Linux Sound System (ALSA)
3 * Based on version <final> of the ALSA API
5 * Copyright 2002 Eric Pouech
6 * 2002 Marco Pietrobono
7 * 2003 Christian Costa : WaveIn support
8 * 2006-2007 Maarten Lankhorst
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * 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
25 /*======================================================================*
26 * Low level dsound output implementation *
27 *======================================================================*/
29 #include "config.h"
30 #include "wine/port.h"
32 #include <stdlib.h>
33 #include <assert.h>
34 #include <stdarg.h>
35 #include <stdio.h>
36 #include <string.h>
37 #ifdef HAVE_UNISTD_H
38 # include <unistd.h>
39 #endif
40 #include <errno.h>
41 #include <limits.h>
42 #include <fcntl.h>
43 #ifdef HAVE_SYS_IOCTL_H
44 # include <sys/ioctl.h>
45 #endif
46 #ifdef HAVE_SYS_MMAN_H
47 # include <sys/mman.h>
48 #endif
49 #include "windef.h"
50 #include "winbase.h"
51 #include "wingdi.h"
52 #include "winerror.h"
53 #include "winuser.h"
54 #include "mmddk.h"
56 #include "alsa.h"
57 #include "wine/library.h"
58 #include "wine/unicode.h"
59 #include "wine/debug.h"
61 #ifdef HAVE_ALSA
63 WINE_DEFAULT_DEBUG_CHANNEL(dsalsa);
65 typedef struct IDsDriverImpl IDsDriverImpl;
66 typedef struct IDsDriverBufferImpl IDsDriverBufferImpl;
68 struct IDsDriverImpl
70 /* IUnknown fields */
71 const IDsDriverVtbl *lpVtbl;
72 LONG ref;
74 /* IDsDriverImpl fields */
75 IDsDriverBufferImpl* primary;
76 UINT wDevID;
79 struct IDsDriverBufferImpl
81 const IDsDriverBufferVtbl *lpVtbl;
82 LONG ref;
83 IDsDriverImpl* drv;
85 CRITICAL_SECTION pcm_crst;
86 BYTE *mmap_buffer;
87 DWORD mmap_buflen_bytes;
88 BOOL mmap;
90 snd_pcm_t *pcm;
91 snd_pcm_hw_params_t *hw_params;
92 snd_pcm_sw_params_t *sw_params;
93 snd_pcm_uframes_t mmap_buflen_frames, mmap_pos, mmap_commitahead;
96 /** Fill buffers, for starting and stopping
97 * Alsa won't start playing until everything is filled up
98 * This also updates mmap_pos
100 * Returns: Amount of periods in use so snd_pcm_avail_update
101 * doesn't have to be called up to 4x in GetPosition()
103 static snd_pcm_uframes_t CommitAll(IDsDriverBufferImpl *This)
105 const snd_pcm_channel_area_t *areas;
106 snd_pcm_sframes_t used;
107 const snd_pcm_uframes_t commitahead = This->mmap_commitahead;
109 used = This->mmap_buflen_frames - snd_pcm_avail_update(This->pcm);
110 if (used < 0) used = 0;
111 TRACE("%p needs to commit to %lu, used: %ld\n", This, commitahead, used);
112 if (used < commitahead)
114 snd_pcm_sframes_t done;
115 snd_pcm_uframes_t putin = commitahead - used;
116 if (This->mmap)
118 snd_pcm_mmap_begin(This->pcm, &areas, &This->mmap_pos, &putin);
119 done = snd_pcm_mmap_commit(This->pcm, This->mmap_pos, putin);
121 else
123 if (putin + This->mmap_pos > This->mmap_buflen_frames)
124 putin = This->mmap_buflen_frames - This->mmap_pos;
125 done = snd_pcm_writei(This->pcm, This->mmap_buffer + snd_pcm_frames_to_bytes(This->pcm, This->mmap_pos), putin);
126 if (done < putin) WARN("Short write %ld/%ld\n", putin, done);
128 if (done < 0) done = 0;
129 This->mmap_pos += done;
130 used += done;
131 putin = commitahead - used;
133 if (This->mmap_pos == This->mmap_buflen_frames && (snd_pcm_sframes_t)putin > 0)
135 if (This->mmap)
137 snd_pcm_mmap_begin(This->pcm, &areas, &This->mmap_pos, &putin);
138 done = snd_pcm_mmap_commit(This->pcm, This->mmap_pos, putin);
139 This->mmap_pos += done;
141 else
143 done = snd_pcm_writei(This->pcm, This->mmap_buffer, putin);
144 if (done < putin) WARN("Short write %ld/%ld\n", putin, done);
145 if (done < 0) done = 0;
146 This->mmap_pos = done;
148 used += done;
152 if (This->mmap_pos == This->mmap_buflen_frames)
153 This->mmap_pos = 0;
155 return used;
158 static void CheckXRUN(IDsDriverBufferImpl* This)
160 snd_pcm_state_t state = snd_pcm_state(This->pcm);
161 snd_pcm_sframes_t delay;
162 int err;
164 snd_pcm_hwsync(This->pcm);
165 snd_pcm_delay(This->pcm, &delay);
166 if ( state == SND_PCM_STATE_XRUN )
168 err = snd_pcm_prepare(This->pcm);
169 CommitAll(This);
170 snd_pcm_start(This->pcm);
171 WARN("xrun occurred\n");
172 if ( err < 0 )
173 ERR("recovery from xrun failed, prepare failed: %s\n", snd_strerror(err));
175 else if ( state == SND_PCM_STATE_SUSPENDED )
177 int err = snd_pcm_resume(This->pcm);
178 TRACE("recovery from suspension occurred\n");
179 if (err < 0 && err != -EAGAIN){
180 err = snd_pcm_prepare(This->pcm);
181 if (err < 0)
182 ERR("recovery from suspend failed, prepare failed: %s\n", snd_strerror(err));
184 } else if ( state != SND_PCM_STATE_RUNNING ) {
185 FIXME("Unhandled state: %d\n", state);
190 * Allocate the memory-mapped buffer for direct sound, and set up the
191 * callback.
193 static int DSDB_CreateMMAP(IDsDriverBufferImpl* pdbi)
195 snd_pcm_t *pcm = pdbi->pcm;
196 snd_pcm_format_t format;
197 snd_pcm_uframes_t frames, ofs, avail, psize, boundary;
198 unsigned int channels, bits_per_sample, bits_per_frame;
199 int err, mmap_mode;
200 const snd_pcm_channel_area_t *areas;
201 snd_pcm_hw_params_t *hw_params = pdbi->hw_params;
202 snd_pcm_sw_params_t *sw_params = pdbi->sw_params;
203 void *buf;
205 mmap_mode = snd_pcm_type(pcm);
207 if (mmap_mode == SND_PCM_TYPE_HW)
208 TRACE("mmap'd buffer is a direct hardware buffer.\n");
209 else if (mmap_mode == SND_PCM_TYPE_DMIX)
210 TRACE("mmap'd buffer is an ALSA dmix buffer\n");
211 else
212 TRACE("mmap'd buffer is an ALSA type %d buffer\n", mmap_mode);
214 err = snd_pcm_hw_params_get_period_size(hw_params, &psize, NULL);
216 err = snd_pcm_hw_params_get_format(hw_params, &format);
217 err = snd_pcm_hw_params_get_buffer_size(hw_params, &frames);
218 err = snd_pcm_hw_params_get_channels(hw_params, &channels);
219 bits_per_sample = snd_pcm_format_physical_width(format);
220 bits_per_frame = bits_per_sample * channels;
222 if (TRACE_ON(dsalsa))
223 ALSA_TraceParameters(hw_params, NULL, FALSE);
225 TRACE("format=%s frames=%ld channels=%d bits_per_sample=%d bits_per_frame=%d\n",
226 snd_pcm_format_name(format), frames, channels, bits_per_sample, bits_per_frame);
228 pdbi->mmap_buflen_frames = frames;
229 pdbi->mmap_buflen_bytes = snd_pcm_frames_to_bytes( pcm, frames );
231 snd_pcm_sw_params_current(pcm, sw_params);
232 snd_pcm_sw_params_set_start_threshold(pcm, sw_params, 0);
233 snd_pcm_sw_params_get_boundary(sw_params, &boundary);
234 snd_pcm_sw_params_set_stop_threshold(pcm, sw_params, boundary);
235 snd_pcm_sw_params_set_silence_threshold(pcm, sw_params, boundary);
236 snd_pcm_sw_params_set_silence_size(pcm, sw_params, 0);
237 snd_pcm_sw_params_set_avail_min(pcm, sw_params, 0);
238 err = snd_pcm_sw_params(pcm, sw_params);
240 avail = snd_pcm_avail_update(pcm);
241 if ((snd_pcm_sframes_t)avail < 0)
243 ERR("No buffer is available: %s.\n", snd_strerror(avail));
244 return DSERR_GENERIC;
247 if (!pdbi->mmap)
249 buf = pdbi->mmap_buffer = HeapAlloc(GetProcessHeap(), 0, pdbi->mmap_buflen_bytes);
250 if (!buf)
251 return DSERR_OUTOFMEMORY;
253 snd_pcm_format_set_silence(format, buf, pdbi->mmap_buflen_frames);
254 pdbi->mmap_pos = 0;
256 else
258 err = snd_pcm_mmap_begin(pcm, &areas, &ofs, &avail);
259 if ( err < 0 )
261 ERR("Can't map sound device for direct access: %s/%d\n", snd_strerror(err), err);
262 return DSERR_GENERIC;
264 snd_pcm_format_set_silence(format, areas->addr, pdbi->mmap_buflen_frames);
265 pdbi->mmap_pos = ofs + snd_pcm_mmap_commit(pcm, ofs, 0);
266 pdbi->mmap_buffer = areas->addr;
269 TRACE("created mmap buffer of %ld frames (%d bytes) at %p\n",
270 frames, pdbi->mmap_buflen_bytes, pdbi->mmap_buffer);
272 return DS_OK;
275 static HRESULT WINAPI IDsDriverBufferImpl_QueryInterface(PIDSDRIVERBUFFER iface, REFIID riid, LPVOID *ppobj)
277 /* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
278 FIXME("(): stub!\n");
279 return DSERR_UNSUPPORTED;
282 static ULONG WINAPI IDsDriverBufferImpl_AddRef(PIDSDRIVERBUFFER iface)
284 IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
285 ULONG refCount = InterlockedIncrement(&This->ref);
287 TRACE("(%p)->(ref before=%u)\n",This, refCount - 1);
289 return refCount;
292 static ULONG WINAPI IDsDriverBufferImpl_Release(PIDSDRIVERBUFFER iface)
294 IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
295 ULONG refCount = InterlockedDecrement(&This->ref);
297 TRACE("(%p)->(ref before=%u)\n",This, refCount + 1);
299 if (refCount)
300 return refCount;
302 TRACE("mmap buffer %p destroyed\n", This->mmap_buffer);
304 if (This == This->drv->primary)
305 This->drv->primary = NULL;
307 This->pcm_crst.DebugInfo->Spare[0] = 0;
308 DeleteCriticalSection(&This->pcm_crst);
310 snd_pcm_drop(This->pcm);
311 snd_pcm_close(This->pcm);
312 This->pcm = NULL;
313 HeapFree(GetProcessHeap(), 0, This->sw_params);
314 HeapFree(GetProcessHeap(), 0, This->hw_params);
315 if (!This->mmap)
316 HeapFree(GetProcessHeap(), 0, This->mmap_buffer);
317 HeapFree(GetProcessHeap(), 0, This);
318 return 0;
321 static HRESULT WINAPI IDsDriverBufferImpl_Lock(PIDSDRIVERBUFFER iface,
322 LPVOID*ppvAudio1,LPDWORD pdwLen1,
323 LPVOID*ppvAudio2,LPDWORD pdwLen2,
324 DWORD dwWritePosition,DWORD dwWriteLen,
325 DWORD dwFlags)
327 IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
328 snd_pcm_uframes_t writepos;
330 TRACE("%d bytes from %d\n", dwWriteLen, dwWritePosition);
332 /* **** */
333 EnterCriticalSection(&This->pcm_crst);
335 if (dwFlags & DSBLOCK_ENTIREBUFFER)
336 dwWriteLen = This->mmap_buflen_bytes;
338 if (dwWriteLen > This->mmap_buflen_bytes || dwWritePosition >= This->mmap_buflen_bytes)
340 /* **** */
341 LeaveCriticalSection(&This->pcm_crst);
342 return DSERR_INVALIDPARAM;
345 if (ppvAudio2) *ppvAudio2 = NULL;
346 if (pdwLen2) *pdwLen2 = 0;
348 *ppvAudio1 = This->mmap_buffer + dwWritePosition;
349 *pdwLen1 = dwWriteLen;
351 if (dwWritePosition+dwWriteLen > This->mmap_buflen_bytes)
353 DWORD remainder = This->mmap_buflen_bytes - dwWritePosition;
354 *pdwLen1 = remainder;
356 if (ppvAudio2 && pdwLen2)
358 *ppvAudio2 = This->mmap_buffer;
359 *pdwLen2 = dwWriteLen - remainder;
361 else dwWriteLen = remainder;
364 writepos = snd_pcm_bytes_to_frames(This->pcm, dwWritePosition);
365 if (writepos == This->mmap_pos)
367 const snd_pcm_channel_area_t *areas;
368 snd_pcm_uframes_t writelen = snd_pcm_bytes_to_frames(This->pcm, dwWriteLen), putin = writelen;
369 TRACE("Hit mmap_pos, locking data!\n");
370 if (This->mmap)
371 snd_pcm_mmap_begin(This->pcm, &areas, &This->mmap_pos, &putin);
373 else
374 WARN("mmap_pos (%lu) != writepos (%lu) not locking data!\n", This->mmap_pos, writepos);
376 LeaveCriticalSection(&This->pcm_crst);
377 /* **** */
378 return DS_OK;
381 static HRESULT WINAPI IDsDriverBufferImpl_Unlock(PIDSDRIVERBUFFER iface,
382 LPVOID pvAudio1,DWORD dwLen1,
383 LPVOID pvAudio2,DWORD dwLen2)
385 IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
386 snd_pcm_uframes_t writepos;
388 if (!dwLen1)
389 return DS_OK;
391 /* **** */
392 EnterCriticalSection(&This->pcm_crst);
394 writepos = snd_pcm_bytes_to_frames(This->pcm, (DWORD_PTR)pvAudio1 - (DWORD_PTR)This->mmap_buffer);
395 if (writepos == This->mmap_pos)
397 const snd_pcm_channel_area_t *areas;
398 snd_pcm_uframes_t writelen = snd_pcm_bytes_to_frames(This->pcm, dwLen1);
399 TRACE("Committing data\n");
400 if (This->mmap)
401 This->mmap_pos += snd_pcm_mmap_commit(This->pcm, This->mmap_pos, writelen);
402 else
404 int ret;
405 ret = snd_pcm_writei(This->pcm, pvAudio1, writelen);
406 if (ret == -EPIPE)
408 WARN("Underrun occurred\n");
409 snd_pcm_recover(This->pcm, -EPIPE, 1);
410 ret = snd_pcm_writei(This->pcm, pvAudio1, writelen);
412 /* Advance mmap pointer a little to make dsound notice the underrun and respond to it */
413 if (ret < writelen) WARN("Short write %ld/%d\n", writelen, ret);
414 This->mmap_pos += This->mmap_commitahead + ret;
415 This->mmap_pos %= This->mmap_buflen_frames;
417 else if (ret > 0)
418 This->mmap_pos += ret;
419 if (ret < 0)
420 WARN("Committing data: %d / %s (%p %ld)\n", ret, snd_strerror(ret), pvAudio1, writelen);
423 if (This->mmap_pos == This->mmap_buflen_frames)
424 This->mmap_pos = 0;
425 if (dwLen2)
427 writelen = snd_pcm_bytes_to_frames(This->pcm, dwLen2);
428 if (This->mmap)
430 snd_pcm_mmap_begin(This->pcm, &areas, &This->mmap_pos, &writelen);
431 This->mmap_pos += snd_pcm_mmap_commit(This->pcm, This->mmap_pos, writelen);
433 else
435 int ret;
436 ret = snd_pcm_writei(This->pcm, pvAudio2, writelen);
437 if (ret < writelen) WARN("Short write %ld/%d\n", writelen, ret);
438 This->mmap_pos = ret > 0 ? ret : 0;
440 assert(This->mmap_pos < This->mmap_buflen_frames);
443 LeaveCriticalSection(&This->pcm_crst);
444 /* **** */
446 return DS_OK;
449 static HRESULT SetFormat(IDsDriverBufferImpl *This, LPWAVEFORMATEX pwfx)
451 snd_pcm_t *pcm = NULL;
452 snd_pcm_hw_params_t *hw_params = This->hw_params;
453 unsigned int buffer_time = 500000;
454 snd_pcm_format_t format = -1;
455 snd_pcm_uframes_t psize;
456 DWORD rate = pwfx->nSamplesPerSec;
457 int err=0;
459 switch (pwfx->wBitsPerSample)
461 case 8: format = SND_PCM_FORMAT_U8; break;
462 case 16: format = SND_PCM_FORMAT_S16_LE; break;
463 case 24: format = SND_PCM_FORMAT_S24_3LE; break;
464 case 32: format = SND_PCM_FORMAT_S32_LE; break;
465 default: FIXME("Unsupported bpp: %d\n", pwfx->wBitsPerSample); return DSERR_GENERIC;
468 err = snd_pcm_open(&pcm, WOutDev[This->drv->wDevID].pcmname, SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
469 if (err < 0)
471 if (errno != EBUSY || !This->pcm)
473 WARN("Cannot open sound device: %s\n", snd_strerror(err));
474 return DSERR_GENERIC;
476 snd_pcm_drop(This->pcm);
477 snd_pcm_close(This->pcm);
478 This->pcm = NULL;
479 err = snd_pcm_open(&pcm, WOutDev[This->drv->wDevID].pcmname, SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
480 if (err < 0)
482 WARN("Cannot open sound device: %s\n", snd_strerror(err));
483 return DSERR_BUFFERLOST;
487 /* Set some defaults */
488 snd_pcm_hw_params_any(pcm, hw_params);
489 err = snd_pcm_hw_params_set_channels(pcm, hw_params, pwfx->nChannels);
490 if (err < 0) { WARN("Could not set channels to %d\n", pwfx->nChannels); goto err; }
492 err = snd_pcm_hw_params_set_format(pcm, hw_params, format);
493 if (err < 0) { WARN("Could not set format to %d bpp\n", pwfx->wBitsPerSample); goto err; }
495 /* Alsa's rate resampling is only used if the application specifically requests
496 * a buffer at a certain frequency, else it is better to disable it due to unwanted
497 * side effects, which may include: Less granular pointer, changing buffer sizes, etc
499 #if SND_LIB_VERSION >= 0x010009
500 snd_pcm_hw_params_set_rate_resample(pcm, hw_params, 0);
501 #endif
503 err = snd_pcm_hw_params_set_rate_near(pcm, hw_params, &rate, NULL);
504 if (err < 0) { rate = pwfx->nSamplesPerSec; WARN("Could not set rate\n"); goto err; }
506 if (!ALSA_NearMatch(rate, pwfx->nSamplesPerSec))
508 WARN("Could not set sound rate to %d, but instead to %d\n", pwfx->nSamplesPerSec, rate);
509 pwfx->nSamplesPerSec = rate;
510 pwfx->nAvgBytesPerSec = rate * pwfx->nBlockAlign;
511 /* Let DirectSound detect this */
514 snd_pcm_hw_params_set_periods_integer(pcm, hw_params);
515 snd_pcm_hw_params_set_buffer_time_near(pcm, hw_params, &buffer_time, NULL);
516 buffer_time = 10000;
517 snd_pcm_hw_params_set_period_time_near(pcm, hw_params, &buffer_time, NULL);
519 err = snd_pcm_hw_params_get_period_size(hw_params, &psize, NULL);
520 buffer_time = 16;
521 snd_pcm_hw_params_set_periods_near(pcm, hw_params, &buffer_time, NULL);
523 if (!This->mmap)
525 HeapFree(GetProcessHeap(), 0, This->mmap_buffer);
526 This->mmap_buffer = NULL;
529 err = snd_pcm_hw_params_set_access (pcm, hw_params, SND_PCM_ACCESS_MMAP_INTERLEAVED);
530 if (err >= 0)
531 This->mmap = 1;
532 else
534 This->mmap = 0;
535 err = snd_pcm_hw_params_set_access (pcm, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED);
538 err = snd_pcm_hw_params(pcm, hw_params);
540 /* ALSA needs at least 3 buffers to work successfully */
541 This->mmap_commitahead = 3 * psize;
542 while (This->mmap_commitahead <= 512)
543 This->mmap_commitahead += psize;
545 if (This->pcm)
547 snd_pcm_drop(This->pcm);
548 snd_pcm_close(This->pcm);
550 This->pcm = pcm;
551 snd_pcm_prepare(This->pcm);
552 DSDB_CreateMMAP(This);
553 return S_OK;
555 err:
556 if (err < 0)
557 WARN("Failed to apply changes: %s\n", snd_strerror(err));
559 if (!This->pcm)
560 This->pcm = pcm;
561 else
562 snd_pcm_close(pcm);
564 if (This->pcm)
565 snd_pcm_hw_params_current(This->pcm, This->hw_params);
567 return DSERR_BADFORMAT;
570 static HRESULT WINAPI IDsDriverBufferImpl_SetFormat(PIDSDRIVERBUFFER iface, LPWAVEFORMATEX pwfx)
572 IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
573 HRESULT hr = S_OK;
575 TRACE("(%p, %p)\n", iface, pwfx);
577 /* **** */
578 EnterCriticalSection(&This->pcm_crst);
579 hr = SetFormat(This, pwfx);
580 /* **** */
581 LeaveCriticalSection(&This->pcm_crst);
583 if (hr == DS_OK)
584 return S_FALSE;
585 return hr;
588 static HRESULT WINAPI IDsDriverBufferImpl_SetFrequency(PIDSDRIVERBUFFER iface, DWORD dwFreq)
590 /* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
591 FIXME("(%p,%d): stub\n",iface,dwFreq);
592 return S_OK;
595 static HRESULT WINAPI IDsDriverBufferImpl_SetVolumePan(PIDSDRIVERBUFFER iface, PDSVOLUMEPAN pVolPan)
597 IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
598 FIXME("(%p,%p): stub\n",This,pVolPan);
599 /* TODO: Bring volume control back */
600 return DS_OK;
603 static HRESULT WINAPI IDsDriverBufferImpl_SetPosition(PIDSDRIVERBUFFER iface, DWORD dwNewPos)
605 /* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
606 /* I don't even think alsa allows this */
607 FIXME("(%p,%d): stub\n",iface,dwNewPos);
608 return DSERR_UNSUPPORTED;
611 static HRESULT WINAPI IDsDriverBufferImpl_GetPosition(PIDSDRIVERBUFFER iface,
612 LPDWORD lpdwPlay, LPDWORD lpdwWrite)
614 IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
615 snd_pcm_uframes_t hw_pptr, hw_wptr;
616 snd_pcm_state_t state;
618 /* **** */
619 EnterCriticalSection(&This->pcm_crst);
621 if (!This->pcm)
623 FIXME("Bad pointer for pcm: %p\n", This->pcm);
624 LeaveCriticalSection(&This->pcm_crst);
625 return DSERR_GENERIC;
628 if (!lpdwPlay && !lpdwWrite)
629 CommitAll(This);
631 state = snd_pcm_state(This->pcm);
633 if (state != SND_PCM_STATE_PREPARED && state != SND_PCM_STATE_RUNNING)
635 CheckXRUN(This);
636 state = snd_pcm_state(This->pcm);
638 if (state == SND_PCM_STATE_RUNNING)
640 snd_pcm_sframes_t used = This->mmap_buflen_frames - snd_pcm_avail_update(This->pcm);
642 if (used < 0)
644 WARN("Underrun: %ld / %ld\n", used, snd_pcm_avail_update(This->pcm));
645 if (This->mmap)
647 snd_pcm_forward(This->pcm, -used);
648 This->mmap_pos += -used;
649 This->mmap_pos %= This->mmap_buflen_frames;
651 used = 0;
654 if (This->mmap_pos > used)
655 hw_pptr = This->mmap_pos - used;
656 else
657 hw_pptr = This->mmap_buflen_frames + This->mmap_pos - used;
658 hw_pptr %= This->mmap_buflen_frames;
660 TRACE("At position: %ld (%ld) - Used %ld\n", hw_pptr, This->mmap_pos, used);
662 else hw_pptr = This->mmap_pos;
663 hw_wptr = This->mmap_pos;
665 LeaveCriticalSection(&This->pcm_crst);
666 /* **** */
668 if (lpdwPlay)
669 *lpdwPlay = snd_pcm_frames_to_bytes(This->pcm, hw_pptr);
670 if (lpdwWrite)
671 *lpdwWrite = snd_pcm_frames_to_bytes(This->pcm, hw_wptr);
673 TRACE("hw_pptr=0x%08x, hw_wptr=0x%08x playpos=%d, writepos=%d\n", (unsigned int)hw_pptr, (unsigned int)hw_wptr, lpdwPlay?*lpdwPlay:-1, lpdwWrite?*lpdwWrite:-1);
674 return DS_OK;
677 static HRESULT WINAPI IDsDriverBufferImpl_Play(PIDSDRIVERBUFFER iface, DWORD dwRes1, DWORD dwRes2, DWORD dwFlags)
679 IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
680 TRACE("(%p,%x,%x,%x)\n",iface,dwRes1,dwRes2,dwFlags);
682 /* **** */
683 EnterCriticalSection(&This->pcm_crst);
684 snd_pcm_start(This->pcm);
685 /* **** */
686 LeaveCriticalSection(&This->pcm_crst);
687 return DS_OK;
690 static HRESULT WINAPI IDsDriverBufferImpl_Stop(PIDSDRIVERBUFFER iface)
692 const snd_pcm_channel_area_t *areas;
693 snd_pcm_uframes_t avail;
694 snd_pcm_format_t format;
695 IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
696 TRACE("(%p)\n",iface);
698 /* **** */
699 EnterCriticalSection(&This->pcm_crst);
700 avail = This->mmap_buflen_frames;
701 snd_pcm_drop(This->pcm);
702 snd_pcm_prepare(This->pcm);
703 avail = snd_pcm_avail_update(This->pcm);
704 snd_pcm_hw_params_get_format(This->hw_params, &format);
705 if (This->mmap)
707 snd_pcm_mmap_begin(This->pcm, &areas, &This->mmap_pos, &avail);
708 snd_pcm_format_set_silence(format, areas->addr, This->mmap_buflen_frames);
709 snd_pcm_mmap_commit(This->pcm, This->mmap_pos, 0);
711 else
713 snd_pcm_format_set_silence(format, This->mmap_buffer, This->mmap_buflen_frames);
714 snd_pcm_writei(This->pcm, This->mmap_buffer, This->mmap_buflen_frames);
715 This->mmap_pos = 0;
718 /* **** */
719 LeaveCriticalSection(&This->pcm_crst);
720 return DS_OK;
723 static const IDsDriverBufferVtbl dsdbvt =
725 IDsDriverBufferImpl_QueryInterface,
726 IDsDriverBufferImpl_AddRef,
727 IDsDriverBufferImpl_Release,
728 IDsDriverBufferImpl_Lock,
729 IDsDriverBufferImpl_Unlock,
730 IDsDriverBufferImpl_SetFormat,
731 IDsDriverBufferImpl_SetFrequency,
732 IDsDriverBufferImpl_SetVolumePan,
733 IDsDriverBufferImpl_SetPosition,
734 IDsDriverBufferImpl_GetPosition,
735 IDsDriverBufferImpl_Play,
736 IDsDriverBufferImpl_Stop
739 static HRESULT WINAPI IDsDriverImpl_QueryInterface(PIDSDRIVER iface, REFIID riid, LPVOID *ppobj)
741 /* IDsDriverImpl *This = (IDsDriverImpl *)iface; */
742 FIXME("(%p): stub!\n",iface);
743 return DSERR_UNSUPPORTED;
746 static ULONG WINAPI IDsDriverImpl_AddRef(PIDSDRIVER iface)
748 IDsDriverImpl *This = (IDsDriverImpl *)iface;
749 ULONG refCount = InterlockedIncrement(&This->ref);
751 TRACE("(%p)->(ref before=%u)\n",This, refCount - 1);
753 return refCount;
756 static ULONG WINAPI IDsDriverImpl_Release(PIDSDRIVER iface)
758 IDsDriverImpl *This = (IDsDriverImpl *)iface;
759 ULONG refCount = InterlockedDecrement(&This->ref);
761 TRACE("(%p)->(ref before=%u)\n",This, refCount + 1);
763 if (refCount)
764 return refCount;
766 HeapFree(GetProcessHeap(), 0, This);
767 return 0;
770 static HRESULT WINAPI IDsDriverImpl_GetDriverDesc(PIDSDRIVER iface, PDSDRIVERDESC pDesc)
772 IDsDriverImpl *This = (IDsDriverImpl *)iface;
773 TRACE("(%p,%p)\n",iface,pDesc);
774 *pDesc = WOutDev[This->wDevID].ds_desc;
775 pDesc->dwFlags = DSDDESC_DONTNEEDSECONDARYLOCK | DSDDESC_DONTNEEDWRITELEAD;
776 pDesc->dnDevNode = WOutDev[This->wDevID].waveDesc.dnDevNode;
777 pDesc->wVxdId = 0;
778 pDesc->wReserved = 0;
779 pDesc->ulDeviceNum = This->wDevID;
780 pDesc->dwHeapType = DSDHEAP_NOHEAP;
781 pDesc->pvDirectDrawHeap = NULL;
782 pDesc->dwMemStartAddress = 0xDEAD0000;
783 pDesc->dwMemEndAddress = 0xDEAF0000;
784 pDesc->dwMemAllocExtra = 0;
785 pDesc->pvReserved1 = NULL;
786 pDesc->pvReserved2 = NULL;
787 return DS_OK;
790 static HRESULT WINAPI IDsDriverImpl_Open(PIDSDRIVER iface)
792 HRESULT hr = S_OK;
793 IDsDriverImpl *This = (IDsDriverImpl *)iface;
794 int err=0;
795 snd_pcm_t *pcm = NULL;
796 snd_pcm_hw_params_t *hw_params;
798 /* While this is not really needed, it is a good idea to do this,
799 * to see if sound can be initialized */
801 hw_params = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, snd_pcm_hw_params_sizeof());
803 if (!hw_params)
805 hr = DSERR_OUTOFMEMORY;
806 goto unalloc;
809 err = snd_pcm_open(&pcm, WOutDev[This->wDevID].pcmname, SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
810 if (err < 0) goto err;
811 err = snd_pcm_hw_params_any(pcm, hw_params);
812 if (err < 0) goto err;
813 err = snd_pcm_hw_params_set_access (pcm, hw_params, SND_PCM_ACCESS_MMAP_INTERLEAVED);
814 if (err < 0)
815 err = snd_pcm_hw_params_set_access (pcm, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED);
816 if (err < 0) goto err;
818 TRACE("Success\n");
819 snd_pcm_close(pcm);
820 goto unalloc;
822 err:
823 hr = DSERR_GENERIC;
824 FIXME("Failed to open device: %s\n", snd_strerror(err));
825 if (pcm)
826 snd_pcm_close(pcm);
827 unalloc:
828 HeapFree(GetProcessHeap(), 0, hw_params);
829 if (hr != S_OK)
830 WARN("--> %08x\n", hr);
831 return hr;
834 static HRESULT WINAPI IDsDriverImpl_Close(PIDSDRIVER iface)
836 IDsDriverImpl *This = (IDsDriverImpl *)iface;
837 TRACE("(%p) stub, harmless\n",This);
838 return DS_OK;
841 static HRESULT WINAPI IDsDriverImpl_GetCaps(PIDSDRIVER iface, PDSDRIVERCAPS pCaps)
843 IDsDriverImpl *This = (IDsDriverImpl *)iface;
844 TRACE("(%p,%p)\n",iface,pCaps);
845 *pCaps = WOutDev[This->wDevID].ds_caps;
846 return DS_OK;
849 static HRESULT WINAPI IDsDriverImpl_CreateSoundBuffer(PIDSDRIVER iface,
850 LPWAVEFORMATEX pwfx,
851 DWORD dwFlags, DWORD dwCardAddress,
852 LPDWORD pdwcbBufferSize,
853 LPBYTE *ppbBuffer,
854 LPVOID *ppvObj)
856 IDsDriverImpl *This = (IDsDriverImpl *)iface;
857 IDsDriverBufferImpl** ippdsdb = (IDsDriverBufferImpl**)ppvObj;
858 HRESULT err;
860 TRACE("(%p,%p,%x,%x)\n",iface,pwfx,dwFlags,dwCardAddress);
861 /* we only support primary buffers... for now */
862 if (!(dwFlags & DSBCAPS_PRIMARYBUFFER))
863 return DSERR_UNSUPPORTED;
864 if (This->primary)
865 return DSERR_ALLOCATED;
867 *ippdsdb = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDsDriverBufferImpl));
868 if (*ippdsdb == NULL)
869 return DSERR_OUTOFMEMORY;
871 (*ippdsdb)->hw_params = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, snd_pcm_hw_params_sizeof());
872 (*ippdsdb)->sw_params = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, snd_pcm_sw_params_sizeof());
873 if (!(*ippdsdb)->hw_params || !(*ippdsdb)->sw_params)
875 HeapFree(GetProcessHeap(), 0, (*ippdsdb)->sw_params);
876 HeapFree(GetProcessHeap(), 0, (*ippdsdb)->hw_params);
877 return DSERR_OUTOFMEMORY;
879 (*ippdsdb)->lpVtbl = &dsdbvt;
880 (*ippdsdb)->ref = 1;
881 (*ippdsdb)->drv = This;
882 InitializeCriticalSection(&(*ippdsdb)->pcm_crst);
883 (*ippdsdb)->pcm_crst.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": ALSA_DSOUTPUT.pcm_crst");
885 /* SetFormat has to re-initialize pcm here anyway */
886 err = SetFormat(*ippdsdb, pwfx);
887 if (FAILED(err))
889 WARN("Error occurred: %08x\n", err);
890 goto err;
893 if (dwFlags & DSBCAPS_PRIMARYBUFFER)
894 This->primary = *ippdsdb;
896 *pdwcbBufferSize = (*ippdsdb)->mmap_buflen_bytes;
897 *ppbBuffer = (*ippdsdb)->mmap_buffer;
899 /* buffer is ready to go */
900 TRACE("buffer created at %p\n", *ippdsdb);
901 return err;
903 err:
904 HeapFree(GetProcessHeap(), 0, (*ippdsdb)->sw_params);
905 HeapFree(GetProcessHeap(), 0, (*ippdsdb)->hw_params);
906 HeapFree(GetProcessHeap(), 0, *ippdsdb);
907 *ippdsdb = NULL;
908 return err;
911 static HRESULT WINAPI IDsDriverImpl_DuplicateSoundBuffer(PIDSDRIVER iface,
912 PIDSDRIVERBUFFER pBuffer,
913 LPVOID *ppvObj)
915 IDsDriverImpl *This = (IDsDriverImpl *)iface;
916 FIXME("(%p,%p): stub\n",This,pBuffer);
917 return DSERR_INVALIDCALL;
920 static const IDsDriverVtbl dsdvt =
922 IDsDriverImpl_QueryInterface,
923 IDsDriverImpl_AddRef,
924 IDsDriverImpl_Release,
925 IDsDriverImpl_GetDriverDesc,
926 IDsDriverImpl_Open,
927 IDsDriverImpl_Close,
928 IDsDriverImpl_GetCaps,
929 IDsDriverImpl_CreateSoundBuffer,
930 IDsDriverImpl_DuplicateSoundBuffer
933 DWORD wodDsCreate(UINT wDevID, PIDSDRIVER* drv)
935 IDsDriverImpl** idrv = (IDsDriverImpl**)drv;
937 TRACE("driver created\n");
939 *idrv = HeapAlloc(GetProcessHeap(),0,sizeof(IDsDriverImpl));
940 if (!*idrv)
941 return MMSYSERR_NOMEM;
942 (*idrv)->lpVtbl = &dsdvt;
943 (*idrv)->ref = 1;
945 (*idrv)->wDevID = wDevID;
946 (*idrv)->primary = NULL;
947 return MMSYSERR_NOERROR;
950 DWORD wodDsDesc(UINT wDevID, PDSDRIVERDESC desc)
952 *desc = WOutDev[wDevID].ds_desc;
953 return MMSYSERR_NOERROR;
956 #endif /* HAVE_ALSA */