kernel32: Change all functions to use CDECL.
[wine/wine64.git] / dlls / winealsa.drv / dscapture.c
blob872a80c8b3c1037059cc849b86ed3620e5ec7d9f
1 /*
2 * Sample Wine Driver for Advanced Linux Sound System (ALSA)
3 * Based on version <final> of the ALSA API
5 * Copyright 2007 - Maarten Lankhorst
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 /*======================================================================*
23 * Low level dsound input implementation *
24 *======================================================================*/
26 #include "config.h"
27 #include "wine/port.h"
29 #include <stdlib.h>
30 #include <stdarg.h>
31 #include <stdio.h>
32 #include <string.h>
33 #ifdef HAVE_UNISTD_H
34 # include <unistd.h>
35 #endif
36 #include <errno.h>
37 #include <limits.h>
38 #include <fcntl.h>
39 #ifdef HAVE_SYS_IOCTL_H
40 # include <sys/ioctl.h>
41 #endif
42 #ifdef HAVE_SYS_MMAN_H
43 # include <sys/mman.h>
44 #endif
45 #include "windef.h"
46 #include "winbase.h"
47 #include "wingdi.h"
48 #include "winerror.h"
49 #include "winuser.h"
50 #include "mmddk.h"
52 #include "alsa.h"
53 #include "wine/library.h"
54 #include "wine/unicode.h"
55 #include "wine/debug.h"
57 #ifdef HAVE_ALSA
59 /* Notify timer checks every 10 ms with a resolution of 2 ms */
60 #define DS_TIME_DEL 10
61 #define DS_TIME_RES 2
63 WINE_DEFAULT_DEBUG_CHANNEL(dsalsa);
65 typedef struct IDsCaptureDriverBufferImpl IDsCaptureDriverBufferImpl;
67 typedef struct IDsCaptureDriverImpl
69 const IDsCaptureDriverVtbl *lpVtbl;
70 LONG ref;
71 IDsCaptureDriverBufferImpl* capture_buffer;
72 UINT wDevID;
73 } IDsCaptureDriverImpl;
75 typedef struct IDsCaptureDriverNotifyImpl
77 const IDsDriverNotifyVtbl *lpVtbl;
78 LONG ref;
79 IDsCaptureDriverBufferImpl *buffer;
80 DSBPOSITIONNOTIFY *notifies;
81 DWORD nrofnotifies, playpos;
82 UINT timerID;
83 } IDsCaptureDriverNotifyImpl;
85 struct IDsCaptureDriverBufferImpl
87 const IDsCaptureDriverBufferVtbl *lpVtbl;
88 LONG ref;
89 IDsCaptureDriverImpl *drv;
90 IDsCaptureDriverNotifyImpl *notify;
92 CRITICAL_SECTION pcm_crst;
93 LPBYTE mmap_buffer, presented_buffer;
94 DWORD mmap_buflen_bytes, play_looping, mmap_ofs_bytes;
96 /* Note: snd_pcm_frames_to_bytes(This->pcm, mmap_buflen_frames) != mmap_buflen_bytes */
97 /* The actual buffer may differ in size from the wanted buffer size */
99 snd_pcm_t *pcm;
100 snd_pcm_hw_params_t *hw_params;
101 snd_pcm_sw_params_t *sw_params;
102 snd_pcm_uframes_t mmap_buflen_frames, mmap_pos;
105 static void Capture_CheckNotify(IDsCaptureDriverNotifyImpl *This, DWORD from, DWORD len)
107 unsigned i;
108 for (i = 0; i < This->nrofnotifies; ++i) {
109 LPDSBPOSITIONNOTIFY event = This->notifies + i;
110 DWORD offset = event->dwOffset;
111 TRACE("checking %d, position %d, event = %p\n", i, offset, event->hEventNotify);
113 if (offset == DSBPN_OFFSETSTOP) {
114 if (!from && !len) {
115 SetEvent(event->hEventNotify);
116 TRACE("signalled event %p (%d)\n", event->hEventNotify, i);
117 return;
119 else return;
122 if (offset >= from && offset < (from + len))
124 TRACE("signalled event %p (%d)\n", event->hEventNotify, i);
125 SetEvent(event->hEventNotify);
130 static void CALLBACK Capture_Notify(UINT timerID, UINT msg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)
132 IDsCaptureDriverBufferImpl *This = (IDsCaptureDriverBufferImpl *)dwUser;
133 DWORD last_playpos, playpos;
134 PIDSCDRIVERBUFFER iface = (PIDSCDRIVERBUFFER)This;
136 /* **** */
137 EnterCriticalSection(&This->pcm_crst);
139 IDsDriverBuffer_GetPosition(iface, &playpos, NULL);
140 last_playpos = This->notify->playpos;
141 This->notify->playpos = playpos;
143 if (snd_pcm_state(This->pcm) != SND_PCM_STATE_RUNNING || last_playpos == playpos || !This->notify->nrofnotifies || !This->notify->notifies)
144 goto done;
146 if (playpos < last_playpos)
148 Capture_CheckNotify(This->notify, last_playpos, This->mmap_buflen_bytes);
149 if (playpos)
150 Capture_CheckNotify(This->notify, 0, playpos);
152 else Capture_CheckNotify(This->notify, last_playpos, playpos - last_playpos);
154 done:
155 LeaveCriticalSection(&This->pcm_crst);
156 /* **** */
159 static HRESULT WINAPI IDsCaptureDriverNotifyImpl_QueryInterface(PIDSDRIVERNOTIFY iface, REFIID riid, LPVOID *ppobj)
161 IDsCaptureDriverNotifyImpl *This = (IDsCaptureDriverNotifyImpl *)iface;
162 TRACE("(%p,%s,%p)\n",This,debugstr_guid(riid),ppobj);
164 if ( IsEqualGUID(riid, &IID_IUnknown) ||
165 IsEqualGUID(riid, &IID_IDsDriverNotify) ) {
166 IDsDriverNotify_AddRef(iface);
167 *ppobj = This;
168 return DS_OK;
171 FIXME( "Unknown IID %s\n", debugstr_guid(riid));
173 *ppobj = 0;
174 return E_NOINTERFACE;
177 static ULONG WINAPI IDsCaptureDriverNotifyImpl_AddRef(PIDSDRIVERNOTIFY iface)
179 IDsCaptureDriverNotifyImpl *This = (IDsCaptureDriverNotifyImpl *)iface;
180 ULONG refCount = InterlockedIncrement(&This->ref);
182 TRACE("(%p) ref was %d\n", This, refCount - 1);
184 return refCount;
187 static ULONG WINAPI IDsCaptureDriverNotifyImpl_Release(PIDSDRIVERNOTIFY iface)
189 IDsCaptureDriverNotifyImpl *This = (IDsCaptureDriverNotifyImpl *)iface;
190 ULONG refCount = InterlockedDecrement(&This->ref);
192 TRACE("(%p) ref was %d\n", This, refCount + 1);
194 if (!refCount) {
195 This->buffer->notify = NULL;
196 if (This->timerID)
198 timeKillEvent(This->timerID);
199 timeEndPeriod(DS_TIME_RES);
201 HeapFree(GetProcessHeap(), 0, This->notifies);
202 HeapFree(GetProcessHeap(), 0, This);
203 TRACE("(%p) released\n", This);
205 return refCount;
208 static HRESULT WINAPI IDsCaptureDriverNotifyImpl_SetNotificationPositions(PIDSDRIVERNOTIFY iface, DWORD howmuch, LPCDSBPOSITIONNOTIFY notify)
210 DWORD len = howmuch * sizeof(DSBPOSITIONNOTIFY);
211 unsigned i;
212 LPVOID notifies;
213 IDsCaptureDriverNotifyImpl *This = (IDsCaptureDriverNotifyImpl *)iface;
214 TRACE("(%p,0x%08x,%p)\n",This,howmuch,notify);
216 if (!notify) {
217 WARN("invalid parameter\n");
218 return DSERR_INVALIDPARAM;
221 if (TRACE_ON(dsalsa))
222 for (i=0;i<howmuch; ++i)
223 TRACE("notify at %d to %p\n", notify[i].dwOffset, notify[i].hEventNotify);
225 /* **** */
226 EnterCriticalSection(&This->buffer->pcm_crst);
228 /* Make an internal copy of the caller-supplied array.
229 * Replace the existing copy if one is already present. */
230 if (This->notifies)
231 notifies = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, This->notifies, len);
232 else
233 notifies = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
235 if (!notifies)
237 LeaveCriticalSection(&This->buffer->pcm_crst);
238 /* **** */
239 return DSERR_OUTOFMEMORY;
241 This->notifies = notifies;
242 memcpy(This->notifies, notify, len);
243 This->nrofnotifies = howmuch;
244 IDsDriverBuffer_GetPosition((PIDSCDRIVERBUFFER)This->buffer, &This->playpos, NULL);
246 if (!This->timerID)
248 timeBeginPeriod(DS_TIME_RES);
249 This->timerID = timeSetEvent(DS_TIME_DEL, DS_TIME_RES, Capture_Notify, (DWORD_PTR)This->buffer, TIME_PERIODIC | TIME_KILL_SYNCHRONOUS);
252 LeaveCriticalSection(&This->buffer->pcm_crst);
253 /* **** */
255 return S_OK;
258 static const IDsDriverNotifyVtbl dscdnvt =
260 IDsCaptureDriverNotifyImpl_QueryInterface,
261 IDsCaptureDriverNotifyImpl_AddRef,
262 IDsCaptureDriverNotifyImpl_Release,
263 IDsCaptureDriverNotifyImpl_SetNotificationPositions,
266 #if 0
267 /** Convert the position an application sees into a position ALSA sees */
268 static snd_pcm_uframes_t fakepos_to_realpos(const IDsCaptureDriverBufferImpl* This, DWORD fakepos)
270 snd_pcm_uframes_t realpos;
271 if (fakepos < This->mmap_ofs_bytes)
272 realpos = This->mmap_buflen_bytes + fakepos - This->mmap_ofs_bytes;
273 else realpos = fakepos - This->mmap_ofs_bytes;
274 return snd_pcm_bytes_to_frames(This->pcm, realpos) % This->mmap_buflen_frames;
276 #endif
278 /** Convert the position ALSA sees into a position an application sees */
279 static DWORD realpos_to_fakepos(const IDsCaptureDriverBufferImpl* This, snd_pcm_uframes_t realpos)
281 DWORD realposb = snd_pcm_frames_to_bytes(This->pcm, realpos);
282 return (realposb + This->mmap_ofs_bytes) % This->mmap_buflen_bytes;
285 /** Raw copy data, with buffer wrap around */
286 static void CopyDataWrap(const IDsCaptureDriverBufferImpl* This, LPBYTE dest, DWORD fromwhere, DWORD copylen, DWORD buflen)
288 DWORD remainder = buflen - fromwhere;
289 if (remainder >= copylen)
291 CopyMemory(dest, This->mmap_buffer + fromwhere, copylen);
293 else
295 CopyMemory(dest, This->mmap_buffer + fromwhere, remainder);
296 copylen -= remainder;
297 CopyMemory(dest, This->mmap_buffer, copylen);
301 /** Copy data from the mmap buffer to backbuffer, taking into account all wraparounds that may occur */
302 static void CopyData(const IDsCaptureDriverBufferImpl* This, snd_pcm_uframes_t fromwhere, snd_pcm_uframes_t len)
304 DWORD dlen = snd_pcm_frames_to_bytes(This->pcm, len) % This->mmap_buflen_bytes;
306 /* Backbuffer */
307 DWORD ofs = realpos_to_fakepos(This, fromwhere);
308 DWORD remainder = This->mmap_buflen_bytes - ofs;
310 /* MMAP buffer */
311 DWORD realbuflen = snd_pcm_frames_to_bytes(This->pcm, This->mmap_buflen_frames);
312 DWORD realofs = snd_pcm_frames_to_bytes(This->pcm, fromwhere);
314 if (remainder >= dlen)
316 CopyDataWrap(This, This->presented_buffer + ofs, realofs, dlen, realbuflen);
318 else
320 CopyDataWrap(This, This->presented_buffer + ofs, realofs, remainder, realbuflen);
321 dlen -= remainder;
322 CopyDataWrap(This, This->presented_buffer, (realofs+remainder)%realbuflen, dlen, realbuflen);
326 /** Fill buffers, for starting and stopping
327 * Alsa won't start playing until everything is filled up
328 * This also updates mmap_pos
330 * Returns: Amount of periods in use so snd_pcm_avail_update
331 * doesn't have to be called up to 4x in GetPosition()
333 static snd_pcm_uframes_t CommitAll(IDsCaptureDriverBufferImpl *This, DWORD forced)
335 const snd_pcm_channel_area_t *areas;
336 snd_pcm_uframes_t used;
337 const snd_pcm_uframes_t commitahead = This->mmap_buflen_frames;
339 used = This->mmap_buflen_frames - snd_pcm_avail_update(This->pcm);
340 TRACE("%p needs to commit to %lu, used: %lu\n", This, commitahead, used);
341 if (used < commitahead && (forced || This->play_looping))
343 snd_pcm_uframes_t done, putin = commitahead - used;
344 snd_pcm_mmap_begin(This->pcm, &areas, &This->mmap_pos, &putin);
345 CopyData(This, This->mmap_pos, putin);
346 done = snd_pcm_mmap_commit(This->pcm, This->mmap_pos, putin);
347 This->mmap_pos += done;
348 used += done;
349 putin = commitahead - used;
351 if (This->mmap_pos == This->mmap_buflen_frames && (snd_pcm_sframes_t)putin > 0 && This->play_looping)
353 snd_pcm_mmap_begin(This->pcm, &areas, &This->mmap_pos, &putin);
354 This->mmap_ofs_bytes += snd_pcm_frames_to_bytes(This->pcm, This->mmap_buflen_frames);
355 This->mmap_ofs_bytes %= This->mmap_buflen_bytes;
356 CopyData(This, This->mmap_pos, putin);
357 done = snd_pcm_mmap_commit(This->pcm, This->mmap_pos, putin);
358 This->mmap_pos += done;
359 used += done;
363 if (This->mmap_pos == This->mmap_buflen_frames)
365 This->mmap_ofs_bytes += snd_pcm_frames_to_bytes(This->pcm, This->mmap_buflen_frames);
366 This->mmap_ofs_bytes %= This->mmap_buflen_bytes;
367 This->mmap_pos = 0;
370 return used;
373 static void CheckXRUN(IDsCaptureDriverBufferImpl* This)
375 snd_pcm_state_t state = snd_pcm_state(This->pcm);
376 snd_pcm_sframes_t delay;
377 int err;
379 snd_pcm_hwsync(This->pcm);
380 snd_pcm_delay(This->pcm, &delay);
381 if ( state == SND_PCM_STATE_XRUN )
383 err = snd_pcm_prepare(This->pcm);
384 CommitAll(This, FALSE);
385 snd_pcm_start(This->pcm);
386 WARN("xrun occurred\n");
387 if ( err < 0 )
388 ERR("recovery from xrun failed, prepare failed: %s\n", snd_strerror(err));
390 else if ( state == SND_PCM_STATE_SUSPENDED )
392 int err = snd_pcm_resume(This->pcm);
393 TRACE("recovery from suspension occurred\n");
394 if (err < 0 && err != -EAGAIN){
395 err = snd_pcm_prepare(This->pcm);
396 if (err < 0)
397 ERR("recovery from suspend failed, prepare failed: %s\n", snd_strerror(err));
400 else if ( state != SND_PCM_STATE_RUNNING)
402 WARN("Unhandled state: %d\n", state);
407 * Allocate the memory-mapped buffer for direct sound, and set up the
408 * callback.
410 static int CreateMMAP(IDsCaptureDriverBufferImpl* pdbi)
412 snd_pcm_t *pcm = pdbi->pcm;
413 snd_pcm_format_t format;
414 snd_pcm_uframes_t frames, ofs, avail, psize, boundary;
415 unsigned int channels, bits_per_sample, bits_per_frame;
416 int err, mmap_mode;
417 const snd_pcm_channel_area_t *areas;
418 snd_pcm_hw_params_t *hw_params = pdbi->hw_params;
419 snd_pcm_sw_params_t *sw_params = pdbi->sw_params;
421 mmap_mode = snd_pcm_type(pcm);
423 if (mmap_mode == SND_PCM_TYPE_HW)
424 TRACE("mmap'd buffer is a direct hardware buffer.\n");
425 else if (mmap_mode == SND_PCM_TYPE_DMIX)
426 TRACE("mmap'd buffer is an ALSA dmix buffer\n");
427 else
428 TRACE("mmap'd buffer is an ALSA type %d buffer\n", mmap_mode);
430 err = snd_pcm_hw_params_get_period_size(hw_params, &psize, NULL);
431 err = snd_pcm_hw_params_get_format(hw_params, &format);
432 err = snd_pcm_hw_params_get_buffer_size(hw_params, &frames);
433 err = snd_pcm_hw_params_get_channels(hw_params, &channels);
434 bits_per_sample = snd_pcm_format_physical_width(format);
435 bits_per_frame = bits_per_sample * channels;
437 if (TRACE_ON(dsalsa))
438 ALSA_TraceParameters(hw_params, NULL, FALSE);
440 TRACE("format=%s frames=%ld channels=%d bits_per_sample=%d bits_per_frame=%d\n",
441 snd_pcm_format_name(format), frames, channels, bits_per_sample, bits_per_frame);
443 pdbi->mmap_buflen_frames = frames;
444 snd_pcm_sw_params_current(pcm, sw_params);
445 snd_pcm_sw_params_set_start_threshold(pcm, sw_params, 0);
446 snd_pcm_sw_params_get_boundary(sw_params, &boundary);
447 snd_pcm_sw_params_set_stop_threshold(pcm, sw_params, boundary);
448 snd_pcm_sw_params_set_silence_threshold(pcm, sw_params, INT_MAX);
449 snd_pcm_sw_params_set_silence_size(pcm, sw_params, 0);
450 snd_pcm_sw_params_set_avail_min(pcm, sw_params, 0);
451 err = snd_pcm_sw_params(pcm, sw_params);
453 avail = snd_pcm_avail_update(pcm);
454 if ((snd_pcm_sframes_t)avail < 0)
456 ERR("No buffer is available: %s.\n", snd_strerror(avail));
457 return DSERR_GENERIC;
459 err = snd_pcm_mmap_begin(pcm, &areas, &ofs, &avail);
460 if ( err < 0 )
462 ERR("Can't map sound device for direct access: %s\n", snd_strerror(err));
463 return DSERR_GENERIC;
465 err = snd_pcm_mmap_commit(pcm, ofs, 0);
466 pdbi->mmap_buffer = areas->addr;
468 TRACE("created mmap buffer of %ld frames (%d bytes) at %p\n",
469 frames, pdbi->mmap_buflen_bytes, pdbi->mmap_buffer);
471 return DS_OK;
474 static HRESULT WINAPI IDsCaptureDriverBufferImpl_QueryInterface(PIDSCDRIVERBUFFER iface, REFIID riid, LPVOID *ppobj)
476 IDsCaptureDriverBufferImpl *This = (IDsCaptureDriverBufferImpl *)iface;
477 if ( IsEqualGUID(riid, &IID_IUnknown) ||
478 IsEqualGUID(riid, &IID_IDsCaptureDriverBuffer) ) {
479 IDsCaptureDriverBuffer_AddRef(iface);
480 *ppobj = (LPVOID)iface;
481 return DS_OK;
484 if ( IsEqualGUID( &IID_IDsDriverNotify, riid ) ) {
485 if (!This->notify)
487 This->notify = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDsCaptureDriverNotifyImpl));
488 if (!This->notify)
489 return DSERR_OUTOFMEMORY;
490 This->notify->lpVtbl = &dscdnvt;
491 This->notify->buffer = This;
493 /* Keep a lock on IDsDriverNotify for ourself, so it is destroyed when the buffer is */
494 IDsDriverNotify_AddRef((PIDSDRIVERNOTIFY)This->notify);
496 IDsDriverNotify_AddRef((PIDSDRIVERNOTIFY)This->notify);
497 *ppobj = (LPVOID)This->notify;
498 return DS_OK;
501 if ( IsEqualGUID( &IID_IDsDriverPropertySet, riid ) ) {
502 FIXME("Unsupported interface IID_IDsDriverPropertySet\n");
503 return E_FAIL;
506 FIXME("(): Unknown interface %s\n", debugstr_guid(riid));
507 return DSERR_UNSUPPORTED;
510 static ULONG WINAPI IDsCaptureDriverBufferImpl_AddRef(PIDSCDRIVERBUFFER iface)
512 IDsCaptureDriverBufferImpl *This = (IDsCaptureDriverBufferImpl *)iface;
513 ULONG refCount = InterlockedIncrement(&This->ref);
515 TRACE("(%p)->(ref before=%u)\n",This, refCount - 1);
517 return refCount;
520 static ULONG WINAPI IDsCaptureDriverBufferImpl_Release(PIDSCDRIVERBUFFER iface)
522 IDsCaptureDriverBufferImpl *This = (IDsCaptureDriverBufferImpl *)iface;
523 ULONG refCount = InterlockedDecrement(&This->ref);
525 TRACE("(%p)->(ref before=%u)\n",This, refCount + 1);
527 if (refCount)
528 return refCount;
530 EnterCriticalSection(&This->pcm_crst);
531 if (This->notify)
532 IDsDriverNotify_Release((PIDSDRIVERNOTIFY)This->notify);
533 TRACE("mmap buffer %p destroyed\n", This->mmap_buffer);
535 This->drv->capture_buffer = NULL;
536 LeaveCriticalSection(&This->pcm_crst);
537 This->pcm_crst.DebugInfo->Spare[0] = 0;
538 DeleteCriticalSection(&This->pcm_crst);
540 snd_pcm_drop(This->pcm);
541 snd_pcm_close(This->pcm);
542 This->pcm = NULL;
543 HeapFree(GetProcessHeap(), 0, This->presented_buffer);
544 HeapFree(GetProcessHeap(), 0, This->sw_params);
545 HeapFree(GetProcessHeap(), 0, This->hw_params);
546 HeapFree(GetProcessHeap(), 0, This);
547 return 0;
550 static HRESULT WINAPI IDsCaptureDriverBufferImpl_Lock(PIDSCDRIVERBUFFER iface, LPVOID*ppvAudio1,LPDWORD pdwLen1,LPVOID*ppvAudio2,LPDWORD pdwLen2, DWORD dwWritePosition,DWORD dwWriteLen, DWORD dwFlags)
552 IDsCaptureDriverBufferImpl *This = (IDsCaptureDriverBufferImpl *)iface;
553 TRACE("(%p,%p,%p,%p,%p,%d,%d,0x%08x)\n", This, ppvAudio1, pdwLen1, ppvAudio2, pdwLen2, dwWritePosition, dwWriteLen, dwFlags);
555 if (ppvAudio1)
556 *ppvAudio1 = (LPBYTE)This->presented_buffer + dwWritePosition;
558 if (dwWritePosition + dwWriteLen < This->mmap_buflen_bytes) {
559 if (pdwLen1)
560 *pdwLen1 = dwWriteLen;
561 if (ppvAudio2)
562 *ppvAudio2 = 0;
563 if (pdwLen2)
564 *pdwLen2 = 0;
565 } else {
566 if (pdwLen1)
567 *pdwLen1 = This->mmap_buflen_bytes - dwWritePosition;
568 if (ppvAudio2)
569 *ppvAudio2 = This->presented_buffer;
570 if (pdwLen2)
571 *pdwLen2 = dwWriteLen - (This->mmap_buflen_bytes - dwWritePosition);
573 return DS_OK;
576 static HRESULT WINAPI IDsCaptureDriverBufferImpl_Unlock(PIDSCDRIVERBUFFER iface, LPVOID pvAudio1,DWORD dwLen1, LPVOID pvAudio2,DWORD dwLen2)
578 IDsCaptureDriverBufferImpl *This = (IDsCaptureDriverBufferImpl *)iface;
579 TRACE("(%p,%p,%d,%p,%d)\n",This,pvAudio1,dwLen1,pvAudio2,dwLen2);
580 return DS_OK;
583 static HRESULT WINAPI IDsCaptureDriverBufferImpl_SetFormat(PIDSCDRIVERBUFFER iface, LPWAVEFORMATEX pwfx)
585 IDsCaptureDriverBufferImpl *This = (IDsCaptureDriverBufferImpl *)iface;
586 WINE_WAVEDEV *wwi = &WInDev[This->drv->wDevID];
587 snd_pcm_t *pcm = NULL;
588 snd_pcm_hw_params_t *hw_params = This->hw_params;
589 snd_pcm_format_t format = -1;
590 snd_pcm_uframes_t buffer_size;
591 DWORD rate = pwfx->nSamplesPerSec;
592 int err=0;
594 TRACE("(%p, %p)\n", iface, pwfx);
596 switch (pwfx->wBitsPerSample)
598 case 8: format = SND_PCM_FORMAT_U8; break;
599 case 16: format = SND_PCM_FORMAT_S16_LE; break;
600 case 24: format = SND_PCM_FORMAT_S24_3LE; break;
601 case 32: format = SND_PCM_FORMAT_S32_LE; break;
602 default: FIXME("Unsupported bpp: %d\n", pwfx->wBitsPerSample); return DSERR_GENERIC;
605 /* **** */
606 EnterCriticalSection(&This->pcm_crst);
608 err = snd_pcm_open(&pcm, wwi->pcmname, SND_PCM_STREAM_CAPTURE, SND_PCM_NONBLOCK);
610 if (err < 0)
612 if (errno != EBUSY || !This->pcm)
614 /* **** */
615 LeaveCriticalSection(&This->pcm_crst);
616 WARN("Cannot open sound device: %s\n", snd_strerror(err));
617 return DSERR_GENERIC;
619 snd_pcm_drop(This->pcm);
620 snd_pcm_close(This->pcm);
621 This->pcm = NULL;
622 err = snd_pcm_open(&pcm, wwi->pcmname, SND_PCM_STREAM_CAPTURE, SND_PCM_NONBLOCK);
623 if (err < 0)
625 /* **** */
626 LeaveCriticalSection(&This->pcm_crst);
627 WARN("Cannot open sound device: %s\n", snd_strerror(err));
628 return DSERR_BUFFERLOST;
632 /* Set some defaults */
633 snd_pcm_hw_params_any(pcm, hw_params);
634 err = snd_pcm_hw_params_set_channels(pcm, hw_params, pwfx->nChannels);
635 if (err < 0) { WARN("Could not set channels to %d\n", pwfx->nChannels); goto err; }
637 err = snd_pcm_hw_params_set_format(pcm, hw_params, format);
638 if (err < 0) { WARN("Could not set format to %d bpp\n", pwfx->wBitsPerSample); goto err; }
640 err = snd_pcm_hw_params_set_rate_near(pcm, hw_params, &rate, NULL);
641 if (err < 0) { rate = pwfx->nSamplesPerSec; WARN("Could not set rate\n"); goto err; }
643 if (!ALSA_NearMatch(rate, pwfx->nSamplesPerSec))
645 WARN("Could not set sound rate to %d, but instead to %d\n", pwfx->nSamplesPerSec, rate);
646 pwfx->nSamplesPerSec = rate;
647 pwfx->nAvgBytesPerSec = rate * pwfx->nBlockAlign;
648 /* Let DirectSound detect this */
651 snd_pcm_hw_params_set_periods_integer(pcm, hw_params);
652 buffer_size = This->mmap_buflen_bytes / pwfx->nBlockAlign;
653 snd_pcm_hw_params_set_buffer_size_near(pcm, hw_params, &buffer_size);
654 buffer_size = 5000;
655 snd_pcm_hw_params_set_period_time_near(pcm, hw_params, (unsigned int*)&buffer_size, NULL);
656 err = snd_pcm_hw_params(pcm, hw_params);
657 err = snd_pcm_sw_params(pcm, This->sw_params);
658 snd_pcm_prepare(pcm);
660 if (This->pcm)
662 snd_pcm_drop(This->pcm);
663 snd_pcm_close(This->pcm);
665 This->pcm = pcm;
667 snd_pcm_prepare(This->pcm);
668 CreateMMAP(This);
670 /* **** */
671 LeaveCriticalSection(&This->pcm_crst);
672 return S_OK;
674 err:
675 if (err < 0)
676 WARN("Failed to apply changes: %s\n", snd_strerror(err));
678 if (!This->pcm)
679 This->pcm = pcm;
680 else
681 snd_pcm_close(pcm);
683 if (This->pcm)
684 snd_pcm_hw_params_current(This->pcm, This->hw_params);
686 /* **** */
687 LeaveCriticalSection(&This->pcm_crst);
688 return DSERR_BADFORMAT;
691 static HRESULT WINAPI IDsCaptureDriverBufferImpl_GetPosition(PIDSCDRIVERBUFFER iface, LPDWORD lpdwCappos, LPDWORD lpdwReadpos)
693 IDsCaptureDriverBufferImpl *This = (IDsCaptureDriverBufferImpl *)iface;
694 snd_pcm_uframes_t hw_pptr, hw_wptr;
696 EnterCriticalSection(&This->pcm_crst);
698 if (!This->pcm)
700 FIXME("Bad pointer for pcm: %p\n", This->pcm);
701 LeaveCriticalSection(&This->pcm_crst);
702 return DSERR_GENERIC;
705 if (snd_pcm_state(This->pcm) != SND_PCM_STATE_RUNNING)
707 hw_pptr = This->mmap_pos;
708 CheckXRUN(This);
710 else
712 /* FIXME: Unused at the moment */
713 snd_pcm_uframes_t used = CommitAll(This, FALSE);
715 if (This->mmap_pos > used)
716 hw_pptr = This->mmap_pos - used;
717 else
718 hw_pptr = This->mmap_buflen_frames - used + This->mmap_pos;
720 hw_wptr = This->mmap_pos;
722 if (lpdwCappos)
723 *lpdwCappos = realpos_to_fakepos(This, hw_pptr);
724 if (lpdwReadpos)
725 *lpdwReadpos = realpos_to_fakepos(This, hw_wptr);
727 LeaveCriticalSection(&This->pcm_crst);
729 TRACE("hw_pptr=0x%08x, hw_wptr=0x%08x playpos=%d, writepos=%d\n", (unsigned int)hw_pptr, (unsigned int)hw_wptr, lpdwCappos?*lpdwCappos:-1, lpdwReadpos?*lpdwReadpos:-1);
730 return DS_OK;
733 static HRESULT WINAPI IDsCaptureDriverBufferImpl_GetStatus(PIDSCDRIVERBUFFER iface, LPDWORD lpdwStatus)
735 IDsCaptureDriverBufferImpl *This = (IDsCaptureDriverBufferImpl *)iface;
736 snd_pcm_state_t state;
737 TRACE("(%p,%p)\n",iface,lpdwStatus);
739 state = snd_pcm_state(This->pcm);
740 switch (state)
742 case SND_PCM_STATE_XRUN:
743 case SND_PCM_STATE_SUSPENDED:
744 case SND_PCM_STATE_RUNNING:
745 *lpdwStatus = DSCBSTATUS_CAPTURING | (This->play_looping ? DSCBSTATUS_LOOPING : 0);
746 break;
747 default:
748 *lpdwStatus = 0;
749 break;
752 TRACE("State: %d, flags: 0x%08x\n", state, *lpdwStatus);
753 return DS_OK;
756 static HRESULT WINAPI IDsCaptureDriverBufferImpl_Start(PIDSCDRIVERBUFFER iface, DWORD dwFlags)
758 IDsCaptureDriverBufferImpl *This = (IDsCaptureDriverBufferImpl *)iface;
759 TRACE("(%p,%x)\n",iface,dwFlags);
761 /* **** */
762 EnterCriticalSection(&This->pcm_crst);
763 snd_pcm_start(This->pcm);
764 This->play_looping = !!(dwFlags & DSCBSTART_LOOPING);
765 if (!This->play_looping)
766 /* Not well supported because of the difference in ALSA size and DSOUND's notion of size
767 * what it does right now is fill the buffer once.. ALSA size */
768 FIXME("Non-looping buffers are not properly supported!\n");
769 CommitAll(This, TRUE);
771 if (This->notify && This->notify->nrofnotifies && This->notify->notifies)
773 DWORD playpos = realpos_to_fakepos(This, This->mmap_pos);
774 if (playpos)
775 Capture_CheckNotify(This->notify, 0, playpos);
776 This->notify->playpos = playpos;
779 /* **** */
780 LeaveCriticalSection(&This->pcm_crst);
781 return DS_OK;
784 static HRESULT WINAPI IDsCaptureDriverBufferImpl_Stop(PIDSCDRIVERBUFFER iface)
786 IDsCaptureDriverBufferImpl *This = (IDsCaptureDriverBufferImpl *)iface;
787 TRACE("(%p)\n",iface);
789 /* **** */
790 EnterCriticalSection(&This->pcm_crst);
791 This->play_looping = FALSE;
792 snd_pcm_drop(This->pcm);
793 snd_pcm_prepare(This->pcm);
795 if (This->notify && This->notify->notifies && This->notify->nrofnotifies)
796 Capture_CheckNotify(This->notify, 0, 0);
798 /* **** */
799 LeaveCriticalSection(&This->pcm_crst);
800 return DS_OK;
803 static const IDsCaptureDriverBufferVtbl dsdbvt =
805 IDsCaptureDriverBufferImpl_QueryInterface,
806 IDsCaptureDriverBufferImpl_AddRef,
807 IDsCaptureDriverBufferImpl_Release,
808 IDsCaptureDriverBufferImpl_Lock,
809 IDsCaptureDriverBufferImpl_Unlock,
810 IDsCaptureDriverBufferImpl_SetFormat,
811 IDsCaptureDriverBufferImpl_GetPosition,
812 IDsCaptureDriverBufferImpl_GetStatus,
813 IDsCaptureDriverBufferImpl_Start,
814 IDsCaptureDriverBufferImpl_Stop
817 static HRESULT WINAPI IDsCaptureDriverImpl_QueryInterface(PIDSCDRIVER iface, REFIID riid, LPVOID *ppobj)
819 /* IDsCaptureDriverImpl *This = (IDsCaptureDriverImpl *)iface; */
820 FIXME("(%p): stub!\n",iface);
821 return DSERR_UNSUPPORTED;
824 static ULONG WINAPI IDsCaptureDriverImpl_AddRef(PIDSCDRIVER iface)
826 IDsCaptureDriverImpl *This = (IDsCaptureDriverImpl *)iface;
827 ULONG refCount = InterlockedIncrement(&This->ref);
829 TRACE("(%p)->(ref before=%u)\n",This, refCount - 1);
831 return refCount;
834 static ULONG WINAPI IDsCaptureDriverImpl_Release(PIDSCDRIVER iface)
836 IDsCaptureDriverImpl *This = (IDsCaptureDriverImpl *)iface;
837 ULONG refCount = InterlockedDecrement(&This->ref);
839 TRACE("(%p)->(ref before=%u)\n",This, refCount + 1);
841 if (refCount)
842 return refCount;
844 HeapFree(GetProcessHeap(), 0, This);
845 return 0;
848 static HRESULT WINAPI IDsCaptureDriverImpl_GetDriverDesc(PIDSCDRIVER iface, PDSDRIVERDESC pDesc)
850 IDsCaptureDriverImpl *This = (IDsCaptureDriverImpl *)iface;
851 TRACE("(%p,%p)\n",iface,pDesc);
852 *pDesc = WInDev[This->wDevID].ds_desc;
853 pDesc->dwFlags = 0;
854 pDesc->dnDevNode = WInDev[This->wDevID].waveDesc.dnDevNode;
855 pDesc->wVxdId = 0;
856 pDesc->wReserved = 0;
857 pDesc->ulDeviceNum = This->wDevID;
858 pDesc->dwHeapType = DSDHEAP_NOHEAP;
859 pDesc->pvDirectDrawHeap = NULL;
860 pDesc->dwMemStartAddress = 0xDEAD0000;
861 pDesc->dwMemEndAddress = 0xDEAF0000;
862 pDesc->dwMemAllocExtra = 0;
863 pDesc->pvReserved1 = NULL;
864 pDesc->pvReserved2 = NULL;
865 return DS_OK;
868 static HRESULT WINAPI IDsCaptureDriverImpl_Open(PIDSCDRIVER iface)
870 HRESULT hr = S_OK;
871 IDsCaptureDriverImpl *This = (IDsCaptureDriverImpl *)iface;
872 int err=0;
873 snd_pcm_t *pcm = NULL;
874 snd_pcm_hw_params_t *hw_params;
876 /* While this is not really needed, it is a good idea to do this,
877 * to see if sound can be initialized */
879 hw_params = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, snd_pcm_hw_params_sizeof());
880 if (!hw_params)
882 hr = DSERR_OUTOFMEMORY;
883 WARN("--> %08x\n", hr);
884 return hr;
887 err = snd_pcm_open(&pcm, WInDev[This->wDevID].pcmname, SND_PCM_STREAM_CAPTURE, SND_PCM_NONBLOCK);
888 if (err < 0) goto err;
889 err = snd_pcm_hw_params_any(pcm, hw_params);
890 if (err < 0) goto err;
891 err = snd_pcm_hw_params_set_access (pcm, hw_params, SND_PCM_ACCESS_MMAP_INTERLEAVED);
892 if (err < 0) goto err;
894 TRACE("Success\n");
895 snd_pcm_close(pcm);
896 HeapFree(GetProcessHeap(), 0, hw_params);
897 return hr;
899 err:
900 hr = DSERR_GENERIC;
901 WARN("Failed to open device: %s\n", snd_strerror(err));
902 if (pcm)
903 snd_pcm_close(pcm);
904 HeapFree(GetProcessHeap(), 0, hw_params);
905 WARN("--> %08x\n", hr);
906 return hr;
909 static HRESULT WINAPI IDsCaptureDriverImpl_Close(PIDSCDRIVER iface)
911 IDsCaptureDriverImpl *This = (IDsCaptureDriverImpl *)iface;
912 TRACE("(%p) stub, harmless\n",This);
913 return DS_OK;
916 static HRESULT WINAPI IDsCaptureDriverImpl_GetCaps(PIDSCDRIVER iface, PDSCDRIVERCAPS pCaps)
918 IDsCaptureDriverImpl *This = (IDsCaptureDriverImpl *)iface;
919 WINE_WAVEDEV *wwi = &WInDev[This->wDevID];
920 TRACE("(%p,%p)\n",iface,pCaps);
921 pCaps->dwSize = sizeof(DSCDRIVERCAPS);
922 pCaps->dwFlags = wwi->ds_caps.dwFlags;
923 pCaps->dwFormats = wwi->incaps.dwFormats;
924 pCaps->dwChannels = wwi->incaps.wChannels;
925 return DS_OK;
928 static HRESULT WINAPI IDsCaptureDriverImpl_CreateCaptureBuffer(PIDSCDRIVER iface,
929 LPWAVEFORMATEX pwfx,
930 DWORD dwFlags, DWORD dwCardAddress,
931 LPDWORD pdwcbBufferSize,
932 LPBYTE *ppbBuffer,
933 LPVOID *ppvObj)
935 IDsCaptureDriverImpl *This = (IDsCaptureDriverImpl *)iface;
936 IDsCaptureDriverBufferImpl** ippdsdb = (IDsCaptureDriverBufferImpl**)ppvObj;
937 HRESULT err;
939 TRACE("(%p,%p,%x,%x)\n",iface,pwfx,dwFlags,dwCardAddress);
941 if (This->capture_buffer)
942 return DSERR_ALLOCATED;
944 This->capture_buffer = *ippdsdb = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDsCaptureDriverBufferImpl));
945 if (*ippdsdb == NULL)
946 return DSERR_OUTOFMEMORY;
948 (*ippdsdb)->hw_params = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, snd_pcm_hw_params_sizeof());
949 (*ippdsdb)->sw_params = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, snd_pcm_sw_params_sizeof());
950 (*ippdsdb)->presented_buffer = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, *pdwcbBufferSize);
951 if (!(*ippdsdb)->hw_params || !(*ippdsdb)->sw_params || !(*ippdsdb)->presented_buffer)
953 HeapFree(GetProcessHeap(), 0, (*ippdsdb)->sw_params);
954 HeapFree(GetProcessHeap(), 0, (*ippdsdb)->hw_params);
955 HeapFree(GetProcessHeap(), 0, (*ippdsdb)->presented_buffer);
956 return DSERR_OUTOFMEMORY;
958 (*ippdsdb)->lpVtbl = &dsdbvt;
959 (*ippdsdb)->ref = 1;
960 (*ippdsdb)->drv = This;
961 (*ippdsdb)->mmap_buflen_bytes = *pdwcbBufferSize;
962 InitializeCriticalSection(&(*ippdsdb)->pcm_crst);
963 (*ippdsdb)->pcm_crst.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": ALSA_DSCAPTURE.pcm_crst");
965 /* SetFormat initialises pcm */
966 err = IDsDriverBuffer_SetFormat((IDsDriverBuffer*)*ppvObj, pwfx);
967 if (FAILED(err))
969 WARN("Error occurred: %08x\n", err);
970 goto err;
972 *ppbBuffer = (*ippdsdb)->presented_buffer;
974 /* buffer is ready to go */
975 TRACE("buffer created at %p\n", *ippdsdb);
976 return err;
978 err:
979 HeapFree(GetProcessHeap(), 0, (*ippdsdb)->presented_buffer);
980 HeapFree(GetProcessHeap(), 0, (*ippdsdb)->sw_params);
981 HeapFree(GetProcessHeap(), 0, (*ippdsdb)->hw_params);
982 HeapFree(GetProcessHeap(), 0, *ippdsdb);
983 *ippdsdb = NULL;
984 return err;
987 static const IDsCaptureDriverVtbl dscdvt =
989 IDsCaptureDriverImpl_QueryInterface,
990 IDsCaptureDriverImpl_AddRef,
991 IDsCaptureDriverImpl_Release,
992 IDsCaptureDriverImpl_GetDriverDesc,
993 IDsCaptureDriverImpl_Open,
994 IDsCaptureDriverImpl_Close,
995 IDsCaptureDriverImpl_GetCaps,
996 IDsCaptureDriverImpl_CreateCaptureBuffer
999 /**************************************************************************
1000 * widDsCreate [internal]
1002 DWORD widDsCreate(UINT wDevID, PIDSCDRIVER* drv)
1004 IDsCaptureDriverImpl** idrv = (IDsCaptureDriverImpl**)drv;
1005 TRACE("(%d,%p)\n",wDevID,drv);
1007 if (!(WInDev[wDevID].dwSupport & WAVECAPS_DIRECTSOUND))
1009 WARN("Hardware accelerated capture not supported, falling back to wavein\n");
1010 return MMSYSERR_NOTSUPPORTED;
1013 *idrv = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(IDsCaptureDriverImpl));
1014 if (!*idrv)
1015 return MMSYSERR_NOMEM;
1016 (*idrv)->lpVtbl = &dscdvt;
1017 (*idrv)->ref = 1;
1019 (*idrv)->wDevID = wDevID;
1020 return MMSYSERR_NOERROR;
1023 /**************************************************************************
1024 * widDsDesc [internal]
1026 DWORD widDsDesc(UINT wDevID, PDSDRIVERDESC desc)
1028 *desc = WInDev[wDevID].ds_desc;
1029 return MMSYSERR_NOERROR;
1032 #endif /* HAVE_ALSA */