winealsa: Detach directsound implementation from waveout implementation.
[wine/multimedia.git] / dlls / winealsa.drv / waveout.c
blob7004e52b4f7beffe747a8ff85f1e933d6f8c80ac
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 WAVE OUT implementation *
27 *======================================================================*/
29 #include "config.h"
30 #include "wine/port.h"
32 #include <stdlib.h>
33 #include <stdarg.h>
34 #include <stdio.h>
35 #include <string.h>
36 #ifdef HAVE_UNISTD_H
37 # include <unistd.h>
38 #endif
39 #include <errno.h>
40 #include <limits.h>
41 #include <fcntl.h>
42 #ifdef HAVE_SYS_IOCTL_H
43 # include <sys/ioctl.h>
44 #endif
45 #ifdef HAVE_SYS_MMAN_H
46 # include <sys/mman.h>
47 #endif
48 #include "windef.h"
49 #include "winbase.h"
50 #include "wingdi.h"
51 #include "winuser.h"
52 #include "winnls.h"
53 #include "mmddk.h"
55 #include "alsa.h"
57 #include "wine/library.h"
58 #include "wine/unicode.h"
59 #include "wine/debug.h"
61 WINE_DEFAULT_DEBUG_CHANNEL(wave);
63 #ifdef HAVE_ALSA
65 WINE_WAVEDEV *WOutDev;
66 DWORD ALSA_WodNumMallocedDevs;
67 DWORD ALSA_WodNumDevs;
69 /**************************************************************************
70 * wodNotifyClient [internal]
72 static DWORD wodNotifyClient(WINE_WAVEDEV* wwo, WORD wMsg, DWORD dwParam1, DWORD dwParam2)
74 TRACE("wMsg = 0x%04x dwParm1 = %04X dwParam2 = %04X\n", wMsg, dwParam1, dwParam2);
76 switch (wMsg) {
77 case WOM_OPEN:
78 case WOM_CLOSE:
79 case WOM_DONE:
80 if (wwo->wFlags != DCB_NULL &&
81 !DriverCallback(wwo->waveDesc.dwCallback, wwo->wFlags, (HDRVR)wwo->waveDesc.hWave,
82 wMsg, wwo->waveDesc.dwInstance, dwParam1, dwParam2)) {
83 WARN("can't notify client !\n");
84 return MMSYSERR_ERROR;
86 break;
87 default:
88 FIXME("Unknown callback message %u\n", wMsg);
89 return MMSYSERR_INVALPARAM;
91 return MMSYSERR_NOERROR;
94 /**************************************************************************
95 * wodUpdatePlayedTotal [internal]
98 static BOOL wodUpdatePlayedTotal(WINE_WAVEDEV* wwo, snd_pcm_status_t* ps)
100 snd_pcm_sframes_t delay = 0;
101 snd_pcm_state_t state;
103 state = snd_pcm_state(wwo->pcm);
104 snd_pcm_delay(wwo->pcm, &delay);
106 /* A delay < 0 indicates an underrun; for our purposes that's 0. */
107 if ( (state != SND_PCM_STATE_RUNNING && state != SND_PCM_STATE_PREPARED) || (delay < 0))
109 WARN("Unexpected state (%d) or delay (%ld) while updating Total Played, resetting\n", state, delay);
110 delay=0;
112 wwo->dwPlayedTotal = wwo->dwWrittenTotal - snd_pcm_frames_to_bytes(wwo->pcm, delay);
113 return TRUE;
116 /**************************************************************************
117 * wodPlayer_BeginWaveHdr [internal]
119 * Makes the specified lpWaveHdr the currently playing wave header.
120 * If the specified wave header is a begin loop and we're not already in
121 * a loop, setup the loop.
123 static void wodPlayer_BeginWaveHdr(WINE_WAVEDEV* wwo, LPWAVEHDR lpWaveHdr)
125 wwo->lpPlayPtr = lpWaveHdr;
127 if (!lpWaveHdr) return;
129 if (lpWaveHdr->dwFlags & WHDR_BEGINLOOP) {
130 if (wwo->lpLoopPtr) {
131 WARN("Already in a loop. Discarding loop on this header (%p)\n", lpWaveHdr);
132 } else {
133 TRACE("Starting loop (%dx) with %p\n", lpWaveHdr->dwLoops, lpWaveHdr);
134 wwo->lpLoopPtr = lpWaveHdr;
135 /* Windows does not touch WAVEHDR.dwLoops,
136 * so we need to make an internal copy */
137 wwo->dwLoops = lpWaveHdr->dwLoops;
140 wwo->dwPartialOffset = 0;
143 /**************************************************************************
144 * wodPlayer_PlayPtrNext [internal]
146 * Advance the play pointer to the next waveheader, looping if required.
148 static LPWAVEHDR wodPlayer_PlayPtrNext(WINE_WAVEDEV* wwo)
150 LPWAVEHDR lpWaveHdr = wwo->lpPlayPtr;
152 wwo->dwPartialOffset = 0;
153 if ((lpWaveHdr->dwFlags & WHDR_ENDLOOP) && wwo->lpLoopPtr) {
154 /* We're at the end of a loop, loop if required */
155 if (--wwo->dwLoops > 0) {
156 wwo->lpPlayPtr = wwo->lpLoopPtr;
157 } else {
158 /* Handle overlapping loops correctly */
159 if (wwo->lpLoopPtr != lpWaveHdr && (lpWaveHdr->dwFlags & WHDR_BEGINLOOP)) {
160 FIXME("Correctly handled case ? (ending loop buffer also starts a new loop)\n");
161 /* shall we consider the END flag for the closing loop or for
162 * the opening one or for both ???
163 * code assumes for closing loop only
165 } else {
166 lpWaveHdr = lpWaveHdr->lpNext;
168 wwo->lpLoopPtr = NULL;
169 wodPlayer_BeginWaveHdr(wwo, lpWaveHdr);
171 } else {
172 /* We're not in a loop. Advance to the next wave header */
173 wodPlayer_BeginWaveHdr(wwo, lpWaveHdr = lpWaveHdr->lpNext);
176 return lpWaveHdr;
179 /**************************************************************************
180 * wodPlayer_DSPWait [internal]
181 * Returns the number of milliseconds to wait for the DSP buffer to play a
182 * period
184 static DWORD wodPlayer_DSPWait(const WINE_WAVEDEV *wwo)
186 /* time for one period to be played */
187 unsigned int val=0;
188 int dir=0;
189 int err=0;
190 err = snd_pcm_hw_params_get_period_time(wwo->hw_params, &val, &dir);
191 return val / 1000;
194 /**************************************************************************
195 * wodPlayer_NotifyWait [internal]
196 * Returns the number of milliseconds to wait before attempting to notify
197 * completion of the specified wavehdr.
198 * This is based on the number of bytes remaining to be written in the
199 * wave.
201 static DWORD wodPlayer_NotifyWait(const WINE_WAVEDEV* wwo, LPWAVEHDR lpWaveHdr)
203 DWORD dwMillis;
205 if (lpWaveHdr->reserved < wwo->dwPlayedTotal) {
206 dwMillis = 1;
207 } else {
208 dwMillis = (lpWaveHdr->reserved - wwo->dwPlayedTotal) * 1000 / wwo->format.Format.nAvgBytesPerSec;
209 if (!dwMillis) dwMillis = 1;
212 return dwMillis;
216 /**************************************************************************
217 * wodPlayer_WriteMaxFrags [internal]
218 * Writes the maximum number of frames possible to the DSP and returns
219 * the number of frames written.
221 static int wodPlayer_WriteMaxFrags(WINE_WAVEDEV* wwo, DWORD* frames)
223 /* Only attempt to write to free frames */
224 LPWAVEHDR lpWaveHdr = wwo->lpPlayPtr;
225 DWORD dwLength = snd_pcm_bytes_to_frames(wwo->pcm, lpWaveHdr->dwBufferLength - wwo->dwPartialOffset);
226 int toWrite = min(dwLength, *frames);
227 int written;
229 TRACE("Writing wavehdr %p.%u[%u]\n", lpWaveHdr, wwo->dwPartialOffset, lpWaveHdr->dwBufferLength);
231 if (toWrite > 0) {
232 written = (wwo->write)(wwo->pcm, lpWaveHdr->lpData + wwo->dwPartialOffset, toWrite);
233 if ( written < 0) {
234 /* XRUN occurred. let's try to recover */
235 ALSA_XRUNRecovery(wwo, written);
236 written = (wwo->write)(wwo->pcm, lpWaveHdr->lpData + wwo->dwPartialOffset, toWrite);
238 if (written <= 0) {
239 /* still in error */
240 ERR("Error in writing wavehdr. Reason: %s\n", snd_strerror(written));
241 return written;
243 } else
244 written = 0;
246 wwo->dwPartialOffset += snd_pcm_frames_to_bytes(wwo->pcm, written);
247 if ( wwo->dwPartialOffset >= lpWaveHdr->dwBufferLength) {
248 /* this will be used to check if the given wave header has been fully played or not... */
249 wwo->dwPartialOffset = lpWaveHdr->dwBufferLength;
250 /* If we wrote all current wavehdr, skip to the next one */
251 wodPlayer_PlayPtrNext(wwo);
253 *frames -= written;
254 wwo->dwWrittenTotal += snd_pcm_frames_to_bytes(wwo->pcm, written);
255 TRACE("dwWrittenTotal=%u\n", wwo->dwWrittenTotal);
257 return written;
261 /**************************************************************************
262 * wodPlayer_NotifyCompletions [internal]
264 * Notifies and remove from queue all wavehdrs which have been played to
265 * the speaker (ie. they have cleared the ALSA buffer). If force is true,
266 * we notify all wavehdrs and remove them all from the queue even if they
267 * are unplayed or part of a loop.
269 static DWORD wodPlayer_NotifyCompletions(WINE_WAVEDEV* wwo, BOOL force)
271 LPWAVEHDR lpWaveHdr;
273 /* Start from lpQueuePtr and keep notifying until:
274 * - we hit an unwritten wavehdr
275 * - we hit the beginning of a running loop
276 * - we hit a wavehdr which hasn't finished playing
278 for (;;)
280 lpWaveHdr = wwo->lpQueuePtr;
281 if (!lpWaveHdr) {TRACE("Empty queue\n"); break;}
282 if (!force)
284 if (lpWaveHdr == wwo->lpPlayPtr) {TRACE("play %p\n", lpWaveHdr); break;}
285 if (lpWaveHdr == wwo->lpLoopPtr) {TRACE("loop %p\n", lpWaveHdr); break;}
286 if (lpWaveHdr->reserved > wwo->dwPlayedTotal) {TRACE("still playing %p (%u/%u)\n", lpWaveHdr, lpWaveHdr->reserved, wwo->dwPlayedTotal);break;}
288 wwo->lpQueuePtr = lpWaveHdr->lpNext;
290 lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
291 lpWaveHdr->dwFlags |= WHDR_DONE;
293 wodNotifyClient(wwo, WOM_DONE, (DWORD)lpWaveHdr, 0);
295 return (lpWaveHdr && lpWaveHdr != wwo->lpPlayPtr && lpWaveHdr != wwo->lpLoopPtr) ?
296 wodPlayer_NotifyWait(wwo, lpWaveHdr) : INFINITE;
300 /**************************************************************************
301 * wodPlayer_Reset [internal]
303 * wodPlayer helper. Resets current output stream.
305 static void wodPlayer_Reset(WINE_WAVEDEV* wwo, BOOL reset)
307 int err;
308 TRACE("(%p)\n", wwo);
310 /* flush all possible output */
311 snd_pcm_drain(wwo->pcm);
313 wodUpdatePlayedTotal(wwo, NULL);
314 /* updates current notify list */
315 wodPlayer_NotifyCompletions(wwo, FALSE);
317 if ( (err = snd_pcm_drop(wwo->pcm)) < 0) {
318 FIXME("flush: %s\n", snd_strerror(err));
319 wwo->hThread = 0;
320 wwo->state = WINE_WS_STOPPED;
321 ExitThread(-1);
323 if ( (err = snd_pcm_prepare(wwo->pcm)) < 0 )
324 ERR("pcm prepare failed: %s\n", snd_strerror(err));
326 if (reset) {
327 enum win_wm_message msg;
328 DWORD param;
329 HANDLE ev;
331 /* remove any buffer */
332 wodPlayer_NotifyCompletions(wwo, TRUE);
334 wwo->lpPlayPtr = wwo->lpQueuePtr = wwo->lpLoopPtr = NULL;
335 wwo->state = WINE_WS_STOPPED;
336 wwo->dwPlayedTotal = wwo->dwWrittenTotal = 0;
337 /* Clear partial wavehdr */
338 wwo->dwPartialOffset = 0;
340 /* remove any existing message in the ring */
341 EnterCriticalSection(&wwo->msgRing.msg_crst);
342 /* return all pending headers in queue */
343 while (ALSA_RetrieveRingMessage(&wwo->msgRing, &msg, &param, &ev))
345 if (msg != WINE_WM_HEADER)
347 FIXME("shouldn't have headers left\n");
348 SetEvent(ev);
349 continue;
351 ((LPWAVEHDR)param)->dwFlags &= ~WHDR_INQUEUE;
352 ((LPWAVEHDR)param)->dwFlags |= WHDR_DONE;
354 wodNotifyClient(wwo, WOM_DONE, param, 0);
356 ALSA_ResetRingMessage(&wwo->msgRing);
357 LeaveCriticalSection(&wwo->msgRing.msg_crst);
358 } else {
359 if (wwo->lpLoopPtr) {
360 /* complicated case, not handled yet (could imply modifying the loop counter */
361 FIXME("Pausing while in loop isn't correctly handled yet, except strange results\n");
362 wwo->lpPlayPtr = wwo->lpLoopPtr;
363 wwo->dwPartialOffset = 0;
364 wwo->dwWrittenTotal = wwo->dwPlayedTotal; /* this is wrong !!! */
365 } else {
366 LPWAVEHDR ptr;
367 DWORD sz = wwo->dwPartialOffset;
369 /* reset all the data as if we had written only up to lpPlayedTotal bytes */
370 /* compute the max size playable from lpQueuePtr */
371 for (ptr = wwo->lpQueuePtr; ptr != wwo->lpPlayPtr; ptr = ptr->lpNext) {
372 sz += ptr->dwBufferLength;
374 /* because the reset lpPlayPtr will be lpQueuePtr */
375 if (wwo->dwWrittenTotal > wwo->dwPlayedTotal + sz) ERR("grin\n");
376 wwo->dwPartialOffset = sz - (wwo->dwWrittenTotal - wwo->dwPlayedTotal);
377 wwo->dwWrittenTotal = wwo->dwPlayedTotal;
378 wwo->lpPlayPtr = wwo->lpQueuePtr;
380 wwo->state = WINE_WS_PAUSED;
384 /**************************************************************************
385 * wodPlayer_ProcessMessages [internal]
387 static void wodPlayer_ProcessMessages(WINE_WAVEDEV* wwo)
389 LPWAVEHDR lpWaveHdr;
390 enum win_wm_message msg;
391 DWORD param;
392 HANDLE ev;
393 int err;
395 while (ALSA_RetrieveRingMessage(&wwo->msgRing, &msg, &param, &ev)) {
396 TRACE("Received %s %x\n", ALSA_getCmdString(msg), param);
398 switch (msg) {
399 case WINE_WM_PAUSING:
400 if ( snd_pcm_state(wwo->pcm) == SND_PCM_STATE_RUNNING )
402 if ( snd_pcm_hw_params_can_pause(wwo->hw_params) )
404 err = snd_pcm_pause(wwo->pcm, 1);
405 if ( err < 0 )
406 ERR("pcm_pause failed: %s\n", snd_strerror(err));
407 wwo->state = WINE_WS_PAUSED;
409 else
411 wodPlayer_Reset(wwo,FALSE);
414 SetEvent(ev);
415 break;
416 case WINE_WM_RESTARTING:
417 if (wwo->state == WINE_WS_PAUSED)
419 if ( snd_pcm_state(wwo->pcm) == SND_PCM_STATE_PAUSED )
421 err = snd_pcm_pause(wwo->pcm, 0);
422 if ( err < 0 )
423 ERR("pcm_pause failed: %s\n", snd_strerror(err));
425 wwo->state = WINE_WS_PLAYING;
427 SetEvent(ev);
428 break;
429 case WINE_WM_HEADER:
430 lpWaveHdr = (LPWAVEHDR)param;
432 /* insert buffer at the end of queue */
434 LPWAVEHDR* wh;
435 for (wh = &(wwo->lpQueuePtr); *wh; wh = &((*wh)->lpNext));
436 *wh = lpWaveHdr;
438 if (!wwo->lpPlayPtr)
439 wodPlayer_BeginWaveHdr(wwo,lpWaveHdr);
440 if (wwo->state == WINE_WS_STOPPED)
441 wwo->state = WINE_WS_PLAYING;
442 break;
443 case WINE_WM_RESETTING:
444 wodPlayer_Reset(wwo,TRUE);
445 SetEvent(ev);
446 break;
447 case WINE_WM_UPDATE:
448 wodUpdatePlayedTotal(wwo, NULL);
449 SetEvent(ev);
450 break;
451 case WINE_WM_BREAKLOOP:
452 if (wwo->state == WINE_WS_PLAYING && wwo->lpLoopPtr != NULL) {
453 /* ensure exit at end of current loop */
454 wwo->dwLoops = 1;
456 SetEvent(ev);
457 break;
458 case WINE_WM_CLOSING:
459 /* sanity check: this should not happen since the device must have been reset before */
460 if (wwo->lpQueuePtr || wwo->lpPlayPtr) ERR("out of sync\n");
461 wwo->hThread = 0;
462 wwo->state = WINE_WS_CLOSED;
463 SetEvent(ev);
464 ExitThread(0);
465 /* shouldn't go here */
466 default:
467 FIXME("unknown message %d\n", msg);
468 break;
473 /**************************************************************************
474 * wodPlayer_FeedDSP [internal]
475 * Feed as much sound data as we can into the DSP and return the number of
476 * milliseconds before it will be necessary to feed the DSP again.
478 static DWORD wodPlayer_FeedDSP(WINE_WAVEDEV* wwo)
480 DWORD availInQ;
482 wodUpdatePlayedTotal(wwo, NULL);
483 availInQ = snd_pcm_avail_update(wwo->pcm);
485 /* no more room... no need to try to feed */
486 if (availInQ > 0) {
487 /* Feed from partial wavehdr */
488 if (wwo->lpPlayPtr && wwo->dwPartialOffset != 0) {
489 wodPlayer_WriteMaxFrags(wwo, &availInQ);
492 /* Feed wavehdrs until we run out of wavehdrs or DSP space */
493 if (wwo->dwPartialOffset == 0 && wwo->lpPlayPtr) {
494 do {
495 TRACE("Setting time to elapse for %p to %u\n",
496 wwo->lpPlayPtr, wwo->dwWrittenTotal + wwo->lpPlayPtr->dwBufferLength);
497 /* note the value that dwPlayedTotal will return when this wave finishes playing */
498 wwo->lpPlayPtr->reserved = wwo->dwWrittenTotal + wwo->lpPlayPtr->dwBufferLength;
499 } while (wodPlayer_WriteMaxFrags(wwo, &availInQ) && wwo->lpPlayPtr && availInQ > 0);
503 return wodPlayer_DSPWait(wwo);
506 /**************************************************************************
507 * wodPlayer [internal]
509 static DWORD CALLBACK wodPlayer(LPVOID pmt)
511 WORD uDevID = (DWORD)pmt;
512 WINE_WAVEDEV* wwo = (WINE_WAVEDEV*)&WOutDev[uDevID];
513 DWORD dwNextFeedTime = INFINITE; /* Time before DSP needs feeding */
514 DWORD dwNextNotifyTime = INFINITE; /* Time before next wave completion */
515 DWORD dwSleepTime;
517 wwo->state = WINE_WS_STOPPED;
518 SetEvent(wwo->hStartUpEvent);
520 for (;;) {
521 /** Wait for the shortest time before an action is required. If there
522 * are no pending actions, wait forever for a command.
524 dwSleepTime = min(dwNextFeedTime, dwNextNotifyTime);
525 TRACE("waiting %ums (%u,%u)\n", dwSleepTime, dwNextFeedTime, dwNextNotifyTime);
526 ALSA_WaitRingMessage(&wwo->msgRing, dwSleepTime);
527 wodPlayer_ProcessMessages(wwo);
528 if (wwo->state == WINE_WS_PLAYING) {
529 dwNextFeedTime = wodPlayer_FeedDSP(wwo);
530 dwNextNotifyTime = wodPlayer_NotifyCompletions(wwo, FALSE);
531 if (dwNextFeedTime == INFINITE) {
532 /* FeedDSP ran out of data, but before giving up, */
533 /* check that a notification didn't give us more */
534 wodPlayer_ProcessMessages(wwo);
535 if (wwo->lpPlayPtr) {
536 TRACE("recovering\n");
537 dwNextFeedTime = wodPlayer_FeedDSP(wwo);
540 } else {
541 dwNextFeedTime = dwNextNotifyTime = INFINITE;
546 /**************************************************************************
547 * wodGetDevCaps [internal]
549 static DWORD wodGetDevCaps(WORD wDevID, LPWAVEOUTCAPSW lpCaps, DWORD dwSize)
551 TRACE("(%u, %p, %u);\n", wDevID, lpCaps, dwSize);
553 if (lpCaps == NULL) return MMSYSERR_NOTENABLED;
555 if (wDevID >= ALSA_WodNumDevs) {
556 TRACE("Asked for device %d, but only %d known!\n", wDevID, ALSA_WodNumDevs);
557 return MMSYSERR_BADDEVICEID;
560 memcpy(lpCaps, &WOutDev[wDevID].outcaps, min(dwSize, sizeof(*lpCaps)));
561 return MMSYSERR_NOERROR;
564 /**************************************************************************
565 * wodOpen [internal]
567 static DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
569 WINE_WAVEDEV* wwo;
570 snd_pcm_t * pcm = NULL;
571 snd_hctl_t * hctl = NULL;
572 snd_pcm_hw_params_t * hw_params = NULL;
573 snd_pcm_sw_params_t * sw_params;
574 snd_pcm_access_t access;
575 snd_pcm_format_t format = -1;
576 unsigned int rate;
577 unsigned int buffer_time = 500000;
578 unsigned int period_time = 10000;
579 snd_pcm_uframes_t buffer_size;
580 snd_pcm_uframes_t period_size;
581 int flags;
582 int err=0;
583 int dir=0;
584 DWORD retcode = 0;
586 snd_pcm_sw_params_alloca(&sw_params);
588 TRACE("(%u, %p, %08X);\n", wDevID, lpDesc, dwFlags);
589 if (lpDesc == NULL) {
590 WARN("Invalid Parameter !\n");
591 return MMSYSERR_INVALPARAM;
593 if (wDevID >= ALSA_WodNumDevs) {
594 TRACE("Asked for device %d, but only %d known!\n", wDevID, ALSA_WodNumDevs);
595 return MMSYSERR_BADDEVICEID;
598 /* only PCM format is supported so far... */
599 if (!ALSA_supportedFormat(lpDesc->lpFormat)) {
600 WARN("Bad format: tag=%04X nChannels=%d nSamplesPerSec=%d !\n",
601 lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
602 lpDesc->lpFormat->nSamplesPerSec);
603 return WAVERR_BADFORMAT;
606 if (dwFlags & WAVE_FORMAT_QUERY) {
607 TRACE("Query format: tag=%04X nChannels=%d nSamplesPerSec=%d !\n",
608 lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
609 lpDesc->lpFormat->nSamplesPerSec);
610 return MMSYSERR_NOERROR;
613 wwo = &WOutDev[wDevID];
615 if (wwo->pcm != NULL) {
616 WARN("%d already allocated\n", wDevID);
617 return MMSYSERR_ALLOCATED;
620 if (dwFlags & WAVE_DIRECTSOUND)
621 FIXME("Why are we called with DirectSound flag? It doesn't use MMSYSTEM any more\n");
622 /* not supported, ignore it */
623 dwFlags &= ~WAVE_DIRECTSOUND;
625 flags = SND_PCM_NONBLOCK;
627 if ( (err = snd_pcm_open(&pcm, wwo->pcmname, SND_PCM_STREAM_PLAYBACK, flags)) < 0)
629 ERR("Error open: %s\n", snd_strerror(err));
630 return MMSYSERR_NOTENABLED;
633 if (wwo->ctlname)
635 err = snd_hctl_open(&hctl, wwo->ctlname, 0);
636 if (err >= 0)
638 snd_hctl_load(hctl);
640 else
642 WARN("Could not open hctl for [%s]: %s\n", wwo->ctlname, snd_strerror(err));
643 hctl = NULL;
647 wwo->wFlags = HIWORD(dwFlags & CALLBACK_TYPEMASK);
649 memcpy(&wwo->waveDesc, lpDesc, sizeof(WAVEOPENDESC));
650 ALSA_copyFormat(lpDesc->lpFormat, &wwo->format);
652 TRACE("Requested this format: %dx%dx%d %s\n",
653 wwo->format.Format.nSamplesPerSec,
654 wwo->format.Format.wBitsPerSample,
655 wwo->format.Format.nChannels,
656 ALSA_getFormat(wwo->format.Format.wFormatTag));
658 if (wwo->format.Format.wBitsPerSample == 0) {
659 WARN("Resetting zeroed wBitsPerSample\n");
660 wwo->format.Format.wBitsPerSample = 8 *
661 (wwo->format.Format.nAvgBytesPerSec /
662 wwo->format.Format.nSamplesPerSec) /
663 wwo->format.Format.nChannels;
666 #define EXIT_ON_ERROR(f,e,txt) do \
668 int err; \
669 if ( (err = (f) ) < 0) \
671 WARN(txt ": %s\n", snd_strerror(err)); \
672 retcode=e; \
673 goto errexit; \
675 } while(0)
677 snd_pcm_hw_params_malloc(&hw_params);
678 if (! hw_params)
680 retcode = MMSYSERR_NOMEM;
681 goto errexit;
683 snd_pcm_hw_params_any(pcm, hw_params);
685 access = SND_PCM_ACCESS_MMAP_INTERLEAVED;
686 if ( ( err = snd_pcm_hw_params_set_access(pcm, hw_params, access ) ) < 0) {
687 WARN("mmap not available. switching to standard write.\n");
688 access = SND_PCM_ACCESS_RW_INTERLEAVED;
689 EXIT_ON_ERROR( snd_pcm_hw_params_set_access(pcm, hw_params, access ), MMSYSERR_INVALPARAM, "unable to set access for playback");
690 wwo->write = snd_pcm_writei;
692 else
693 wwo->write = snd_pcm_mmap_writei;
695 if ((err = snd_pcm_hw_params_set_channels(pcm, hw_params, wwo->format.Format.nChannels)) < 0) {
696 WARN("unable to set required channels: %d\n", wwo->format.Format.nChannels);
697 EXIT_ON_ERROR( snd_pcm_hw_params_set_channels(pcm, hw_params, wwo->format.Format.nChannels ), WAVERR_BADFORMAT, "unable to set required channels" );
700 if ((wwo->format.Format.wFormatTag == WAVE_FORMAT_PCM) ||
701 ((wwo->format.Format.wFormatTag == WAVE_FORMAT_EXTENSIBLE) &&
702 IsEqualGUID(&wwo->format.SubFormat, &KSDATAFORMAT_SUBTYPE_PCM))) {
703 format = (wwo->format.Format.wBitsPerSample == 8) ? SND_PCM_FORMAT_U8 :
704 (wwo->format.Format.wBitsPerSample == 16) ? SND_PCM_FORMAT_S16_LE :
705 (wwo->format.Format.wBitsPerSample == 24) ? SND_PCM_FORMAT_S24_LE :
706 (wwo->format.Format.wBitsPerSample == 32) ? SND_PCM_FORMAT_S32_LE : -1;
707 } else if ((wwo->format.Format.wFormatTag == WAVE_FORMAT_EXTENSIBLE) &&
708 IsEqualGUID(&wwo->format.SubFormat, &KSDATAFORMAT_SUBTYPE_IEEE_FLOAT)){
709 format = (wwo->format.Format.wBitsPerSample == 32) ? SND_PCM_FORMAT_FLOAT_LE : -1;
710 } else if (wwo->format.Format.wFormatTag == WAVE_FORMAT_MULAW) {
711 FIXME("unimplemented format: WAVE_FORMAT_MULAW\n");
712 retcode = WAVERR_BADFORMAT;
713 goto errexit;
714 } else if (wwo->format.Format.wFormatTag == WAVE_FORMAT_ALAW) {
715 FIXME("unimplemented format: WAVE_FORMAT_ALAW\n");
716 retcode = WAVERR_BADFORMAT;
717 goto errexit;
718 } else if (wwo->format.Format.wFormatTag == WAVE_FORMAT_ADPCM) {
719 FIXME("unimplemented format: WAVE_FORMAT_ADPCM\n");
720 retcode = WAVERR_BADFORMAT;
721 goto errexit;
722 } else {
723 ERR("invalid format: %0x04x\n", wwo->format.Format.wFormatTag);
724 retcode = WAVERR_BADFORMAT;
725 goto errexit;
728 if ((err = snd_pcm_hw_params_set_format(pcm, hw_params, format)) < 0) {
729 WARN("unable to set required format: %s\n", snd_pcm_format_name(format));
730 EXIT_ON_ERROR( snd_pcm_hw_params_set_format(pcm, hw_params, format), WAVERR_BADFORMAT, "unable to set required format" );
733 rate = wwo->format.Format.nSamplesPerSec;
734 dir=0;
735 err = snd_pcm_hw_params_set_rate_near(pcm, hw_params, &rate, &dir);
736 if (err < 0) {
737 WARN("Rate %d Hz not available for playback: %s\n", wwo->format.Format.nSamplesPerSec, snd_strerror(rate));
738 retcode = WAVERR_BADFORMAT;
739 goto errexit;
741 if (!ALSA_NearMatch(rate, wwo->format.Format.nSamplesPerSec)) {
742 WARN("Rate doesn't match (requested %d Hz, got %d Hz)\n", wwo->format.Format.nSamplesPerSec, rate);
743 retcode = WAVERR_BADFORMAT;
744 goto errexit;
747 TRACE("Got this format: %dx%dx%d %s\n",
748 wwo->format.Format.nSamplesPerSec,
749 wwo->format.Format.wBitsPerSample,
750 wwo->format.Format.nChannels,
751 ALSA_getFormat(wwo->format.Format.wFormatTag));
753 dir=0;
754 EXIT_ON_ERROR( snd_pcm_hw_params_set_buffer_time_near(pcm, hw_params, &buffer_time, &dir), MMSYSERR_INVALPARAM, "unable to set buffer time");
755 dir=0;
756 EXIT_ON_ERROR( snd_pcm_hw_params_set_period_time_near(pcm, hw_params, &period_time, &dir), MMSYSERR_INVALPARAM, "unable to set period time");
758 EXIT_ON_ERROR( snd_pcm_hw_params(pcm, hw_params), MMSYSERR_INVALPARAM, "unable to set hw params for playback");
760 err = snd_pcm_hw_params_get_period_size(hw_params, &period_size, &dir);
761 err = snd_pcm_hw_params_get_buffer_size(hw_params, &buffer_size);
763 snd_pcm_sw_params_current(pcm, sw_params);
764 EXIT_ON_ERROR( snd_pcm_sw_params_set_start_threshold(pcm, sw_params, 1), MMSYSERR_ERROR, "unable to set start threshold");
765 EXIT_ON_ERROR( snd_pcm_sw_params_set_silence_size(pcm, sw_params, 0), MMSYSERR_ERROR, "unable to set silence size");
766 EXIT_ON_ERROR( snd_pcm_sw_params_set_avail_min(pcm, sw_params, period_size), MMSYSERR_ERROR, "unable to set avail min");
767 EXIT_ON_ERROR( snd_pcm_sw_params_set_xfer_align(pcm, sw_params, 1), MMSYSERR_ERROR, "unable to set xfer align");
768 EXIT_ON_ERROR( snd_pcm_sw_params_set_silence_threshold(pcm, sw_params, 0), MMSYSERR_ERROR, "unable to set silence threshold");
769 EXIT_ON_ERROR( snd_pcm_sw_params_set_xrun_mode(pcm, sw_params, SND_PCM_XRUN_NONE), MMSYSERR_ERROR, "unable to set xrun mode");
770 EXIT_ON_ERROR( snd_pcm_sw_params(pcm, sw_params), MMSYSERR_ERROR, "unable to set sw params for playback");
771 #undef EXIT_ON_ERROR
773 snd_pcm_prepare(pcm);
775 if (TRACE_ON(wave))
776 ALSA_TraceParameters(hw_params, sw_params, FALSE);
778 /* now, we can save all required data for later use... */
780 wwo->dwBufferSize = snd_pcm_frames_to_bytes(pcm, buffer_size);
781 wwo->lpQueuePtr = wwo->lpPlayPtr = wwo->lpLoopPtr = NULL;
782 wwo->dwPlayedTotal = wwo->dwWrittenTotal = 0;
783 wwo->dwPartialOffset = 0;
785 ALSA_InitRingMessage(&wwo->msgRing);
787 wwo->hStartUpEvent = CreateEventW(NULL, FALSE, FALSE, NULL);
788 wwo->hThread = CreateThread(NULL, 0, wodPlayer, (LPVOID)(DWORD)wDevID, 0, &(wwo->dwThreadID));
789 if (wwo->hThread)
790 SetThreadPriority(wwo->hThread, THREAD_PRIORITY_TIME_CRITICAL);
791 else
793 ERR("Thread creation for the wodPlayer failed!\n");
794 CloseHandle(wwo->hStartUpEvent);
795 retcode = MMSYSERR_NOMEM;
796 goto errexit;
798 WaitForSingleObject(wwo->hStartUpEvent, INFINITE);
799 CloseHandle(wwo->hStartUpEvent);
800 wwo->hStartUpEvent = INVALID_HANDLE_VALUE;
802 TRACE("handle=%p\n", pcm);
803 TRACE("wBitsPerSample=%u, nAvgBytesPerSec=%u, nSamplesPerSec=%u, nChannels=%u nBlockAlign=%u!\n",
804 wwo->format.Format.wBitsPerSample, wwo->format.Format.nAvgBytesPerSec,
805 wwo->format.Format.nSamplesPerSec, wwo->format.Format.nChannels,
806 wwo->format.Format.nBlockAlign);
808 wwo->pcm = pcm;
809 wwo->hctl = hctl;
810 if ( wwo->hw_params )
811 snd_pcm_hw_params_free(wwo->hw_params);
812 wwo->hw_params = hw_params;
814 return wodNotifyClient(wwo, WOM_OPEN, 0L, 0L);
816 errexit:
817 if (pcm)
818 snd_pcm_close(pcm);
820 if (hctl)
822 snd_hctl_free(hctl);
823 snd_hctl_close(hctl);
826 if ( hw_params )
827 snd_pcm_hw_params_free(hw_params);
829 if (wwo->msgRing.ring_buffer_size > 0)
830 ALSA_DestroyRingMessage(&wwo->msgRing);
832 return retcode;
836 /**************************************************************************
837 * wodClose [internal]
839 static DWORD wodClose(WORD wDevID)
841 DWORD ret = MMSYSERR_NOERROR;
842 WINE_WAVEDEV* wwo;
844 TRACE("(%u);\n", wDevID);
846 if (wDevID >= ALSA_WodNumDevs) {
847 TRACE("Asked for device %d, but only %d known!\n", wDevID, ALSA_WodNumDevs);
848 return MMSYSERR_BADDEVICEID;
851 if (WOutDev[wDevID].pcm == NULL) {
852 WARN("Requested to close already closed device %d!\n", wDevID);
853 return MMSYSERR_BADDEVICEID;
856 wwo = &WOutDev[wDevID];
857 if (wwo->lpQueuePtr) {
858 WARN("buffers still playing !\n");
859 ret = WAVERR_STILLPLAYING;
860 } else {
861 if (wwo->hThread != INVALID_HANDLE_VALUE) {
862 ALSA_AddRingMessage(&wwo->msgRing, WINE_WM_CLOSING, 0, TRUE);
864 ALSA_DestroyRingMessage(&wwo->msgRing);
866 if (wwo->hw_params)
867 snd_pcm_hw_params_free(wwo->hw_params);
868 wwo->hw_params = NULL;
870 if (wwo->pcm)
871 snd_pcm_close(wwo->pcm);
872 wwo->pcm = NULL;
874 if (wwo->hctl)
876 snd_hctl_free(wwo->hctl);
877 snd_hctl_close(wwo->hctl);
879 wwo->hctl = NULL;
881 ret = wodNotifyClient(wwo, WOM_CLOSE, 0L, 0L);
884 return ret;
888 /**************************************************************************
889 * wodWrite [internal]
892 static DWORD wodWrite(WORD wDevID, LPWAVEHDR lpWaveHdr, DWORD dwSize)
894 TRACE("(%u, %p, %08X);\n", wDevID, lpWaveHdr, dwSize);
896 if (wDevID >= ALSA_WodNumDevs) {
897 TRACE("Asked for device %d, but only %d known!\n", wDevID, ALSA_WodNumDevs);
898 return MMSYSERR_BADDEVICEID;
901 if (WOutDev[wDevID].pcm == NULL) {
902 WARN("Requested to write to closed device %d!\n", wDevID);
903 return MMSYSERR_BADDEVICEID;
906 if (lpWaveHdr->lpData == NULL || !(lpWaveHdr->dwFlags & WHDR_PREPARED))
907 return WAVERR_UNPREPARED;
909 if (lpWaveHdr->dwFlags & WHDR_INQUEUE)
910 return WAVERR_STILLPLAYING;
912 lpWaveHdr->dwFlags &= ~WHDR_DONE;
913 lpWaveHdr->dwFlags |= WHDR_INQUEUE;
914 lpWaveHdr->lpNext = 0;
916 ALSA_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_HEADER, (DWORD)lpWaveHdr, FALSE);
918 return MMSYSERR_NOERROR;
921 /**************************************************************************
922 * wodPause [internal]
924 static DWORD wodPause(WORD wDevID)
926 TRACE("(%u);!\n", wDevID);
928 if (wDevID >= ALSA_WodNumDevs) {
929 TRACE("Asked for device %d, but only %d known!\n", wDevID, ALSA_WodNumDevs);
930 return MMSYSERR_BADDEVICEID;
933 if (WOutDev[wDevID].pcm == NULL) {
934 WARN("Requested to pause closed device %d!\n", wDevID);
935 return MMSYSERR_BADDEVICEID;
938 ALSA_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_PAUSING, 0, TRUE);
940 return MMSYSERR_NOERROR;
943 /**************************************************************************
944 * wodRestart [internal]
946 static DWORD wodRestart(WORD wDevID)
948 TRACE("(%u);\n", wDevID);
950 if (wDevID >= ALSA_WodNumDevs) {
951 TRACE("Asked for device %d, but only %d known!\n", wDevID, ALSA_WodNumDevs);
952 return MMSYSERR_BADDEVICEID;
955 if (WOutDev[wDevID].pcm == NULL) {
956 WARN("Requested to restart closed device %d!\n", wDevID);
957 return MMSYSERR_BADDEVICEID;
960 if (WOutDev[wDevID].state == WINE_WS_PAUSED) {
961 ALSA_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_RESTARTING, 0, TRUE);
964 /* FIXME: is NotifyClient with WOM_DONE right ? (Comet Busters 1.3.3 needs this notification) */
965 /* FIXME: Myst crashes with this ... hmm -MM
966 return wodNotifyClient(wwo, WOM_DONE, 0L, 0L);
969 return MMSYSERR_NOERROR;
972 /**************************************************************************
973 * wodReset [internal]
975 static DWORD wodReset(WORD wDevID)
977 TRACE("(%u);\n", wDevID);
979 if (wDevID >= ALSA_WodNumDevs) {
980 TRACE("Asked for device %d, but only %d known!\n", wDevID, ALSA_WodNumDevs);
981 return MMSYSERR_BADDEVICEID;
984 if (WOutDev[wDevID].pcm == NULL) {
985 WARN("Requested to reset closed device %d!\n", wDevID);
986 return MMSYSERR_BADDEVICEID;
989 ALSA_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_RESETTING, 0, TRUE);
991 return MMSYSERR_NOERROR;
994 /**************************************************************************
995 * wodGetPosition [internal]
997 static DWORD wodGetPosition(WORD wDevID, LPMMTIME lpTime, DWORD uSize)
999 WINE_WAVEDEV* wwo;
1001 TRACE("(%u, %p, %u);\n", wDevID, lpTime, uSize);
1003 if (wDevID >= ALSA_WodNumDevs) {
1004 TRACE("Asked for device %d, but only %d known!\n", wDevID, ALSA_WodNumDevs);
1005 return MMSYSERR_BADDEVICEID;
1008 if (WOutDev[wDevID].pcm == NULL) {
1009 WARN("Requested to get position of closed device %d!\n", wDevID);
1010 return MMSYSERR_BADDEVICEID;
1013 if (lpTime == NULL) return MMSYSERR_INVALPARAM;
1015 wwo = &WOutDev[wDevID];
1016 ALSA_AddRingMessage(&wwo->msgRing, WINE_WM_UPDATE, 0, TRUE);
1018 return ALSA_bytes_to_mmtime(lpTime, wwo->dwPlayedTotal, &wwo->format);
1021 /**************************************************************************
1022 * wodBreakLoop [internal]
1024 static DWORD wodBreakLoop(WORD wDevID)
1026 TRACE("(%u);\n", wDevID);
1028 if (wDevID >= ALSA_WodNumDevs) {
1029 TRACE("Asked for device %d, but only %d known!\n", wDevID, ALSA_WodNumDevs);
1030 return MMSYSERR_BADDEVICEID;
1033 if (WOutDev[wDevID].pcm == NULL) {
1034 WARN("Requested to breakloop of closed device %d!\n", wDevID);
1035 return MMSYSERR_BADDEVICEID;
1038 ALSA_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_BREAKLOOP, 0, TRUE);
1039 return MMSYSERR_NOERROR;
1042 /**************************************************************************
1043 * wodGetVolume [internal]
1045 static DWORD wodGetVolume(WORD wDevID, LPDWORD lpdwVol)
1047 WORD wleft, wright;
1048 WINE_WAVEDEV* wwo;
1049 int min, max;
1050 int left, right;
1051 DWORD rc;
1053 TRACE("(%u, %p);\n", wDevID, lpdwVol);
1054 if (wDevID >= ALSA_WodNumDevs) {
1055 TRACE("Asked for device %d, but only %d known!\n", wDevID, ALSA_WodNumDevs);
1056 return MMSYSERR_BADDEVICEID;
1059 if (lpdwVol == NULL)
1060 return MMSYSERR_NOTENABLED;
1062 wwo = &WOutDev[wDevID];
1064 if (lpdwVol == NULL)
1065 return MMSYSERR_NOTENABLED;
1067 rc = ALSA_CheckSetVolume(wwo->hctl, &left, &right, &min, &max, NULL, NULL, NULL);
1068 if (rc == MMSYSERR_NOERROR)
1070 #define VOLUME_ALSA_TO_WIN(x) ( ( (((x)-min) * 65535) + (max-min)/2 ) /(max-min))
1071 wleft = VOLUME_ALSA_TO_WIN(left);
1072 wright = VOLUME_ALSA_TO_WIN(right);
1073 #undef VOLUME_ALSA_TO_WIN
1074 TRACE("left=%d,right=%d,converted to windows left %d, right %d\n", left, right, wleft, wright);
1075 *lpdwVol = MAKELONG( wleft, wright );
1077 else
1078 TRACE("CheckSetVolume failed; rc %d\n", rc);
1080 return rc;
1083 /**************************************************************************
1084 * wodSetVolume [internal]
1086 DWORD wodSetVolume(WORD wDevID, DWORD dwParam)
1088 WORD wleft, wright;
1089 WINE_WAVEDEV* wwo;
1090 int min, max;
1091 int left, right;
1092 DWORD rc;
1094 TRACE("(%u, %08X);\n", wDevID, dwParam);
1095 if (wDevID >= ALSA_WodNumDevs) {
1096 TRACE("Asked for device %d, but only %d known!\n", wDevID, ALSA_WodNumDevs);
1097 return MMSYSERR_BADDEVICEID;
1100 wwo = &WOutDev[wDevID];
1102 rc = ALSA_CheckSetVolume(wwo->hctl, NULL, NULL, &min, &max, NULL, NULL, NULL);
1103 if (rc == MMSYSERR_NOERROR)
1105 wleft = LOWORD(dwParam);
1106 wright = HIWORD(dwParam);
1107 #define VOLUME_WIN_TO_ALSA(x) ( ( ( ((x) * (max-min)) + 32767) / 65535) + min )
1108 left = VOLUME_WIN_TO_ALSA(wleft);
1109 right = VOLUME_WIN_TO_ALSA(wright);
1110 #undef VOLUME_WIN_TO_ALSA
1111 rc = ALSA_CheckSetVolume(wwo->hctl, NULL, NULL, NULL, NULL, NULL, &left, &right);
1112 if (rc == MMSYSERR_NOERROR)
1113 TRACE("set volume: wleft=%d, wright=%d, converted to alsa left %d, right %d\n", wleft, wright, left, right);
1114 else
1115 TRACE("SetVolume failed; rc %d\n", rc);
1118 return rc;
1121 /**************************************************************************
1122 * wodGetNumDevs [internal]
1124 static DWORD wodGetNumDevs(void)
1126 return ALSA_WodNumDevs;
1129 /**************************************************************************
1130 * wodDevInterfaceSize [internal]
1132 static DWORD wodDevInterfaceSize(UINT wDevID, LPDWORD dwParam1)
1134 TRACE("(%u, %p)\n", wDevID, dwParam1);
1136 *dwParam1 = MultiByteToWideChar(CP_ACP, 0, WOutDev[wDevID].interface_name, -1,
1137 NULL, 0 ) * sizeof(WCHAR);
1138 return MMSYSERR_NOERROR;
1141 /**************************************************************************
1142 * wodDevInterface [internal]
1144 static DWORD wodDevInterface(UINT wDevID, PWCHAR dwParam1, DWORD dwParam2)
1146 if (dwParam2 >= MultiByteToWideChar(CP_ACP, 0, WOutDev[wDevID].interface_name, -1,
1147 NULL, 0 ) * sizeof(WCHAR))
1149 MultiByteToWideChar(CP_ACP, 0, WOutDev[wDevID].interface_name, -1,
1150 dwParam1, dwParam2 / sizeof(WCHAR));
1151 return MMSYSERR_NOERROR;
1153 return MMSYSERR_INVALPARAM;
1156 /**************************************************************************
1157 * wodMessage (WINEALSA.@)
1159 DWORD WINAPI ALSA_wodMessage(UINT wDevID, UINT wMsg, DWORD dwUser,
1160 DWORD dwParam1, DWORD dwParam2)
1162 TRACE("(%u, %s, %08X, %08X, %08X);\n",
1163 wDevID, ALSA_getMessage(wMsg), dwUser, dwParam1, dwParam2);
1165 switch (wMsg) {
1166 case DRVM_INIT:
1167 case DRVM_EXIT:
1168 case DRVM_ENABLE:
1169 case DRVM_DISABLE:
1170 /* FIXME: Pretend this is supported */
1171 return 0;
1172 case WODM_OPEN: return wodOpen (wDevID, (LPWAVEOPENDESC)dwParam1, dwParam2);
1173 case WODM_CLOSE: return wodClose (wDevID);
1174 case WODM_GETDEVCAPS: return wodGetDevCaps (wDevID, (LPWAVEOUTCAPSW)dwParam1, dwParam2);
1175 case WODM_GETNUMDEVS: return wodGetNumDevs ();
1176 case WODM_GETPITCH: return MMSYSERR_NOTSUPPORTED;
1177 case WODM_SETPITCH: return MMSYSERR_NOTSUPPORTED;
1178 case WODM_GETPLAYBACKRATE: return MMSYSERR_NOTSUPPORTED;
1179 case WODM_SETPLAYBACKRATE: return MMSYSERR_NOTSUPPORTED;
1180 case WODM_WRITE: return wodWrite (wDevID, (LPWAVEHDR)dwParam1, dwParam2);
1181 case WODM_PAUSE: return wodPause (wDevID);
1182 case WODM_GETPOS: return wodGetPosition (wDevID, (LPMMTIME)dwParam1, dwParam2);
1183 case WODM_BREAKLOOP: return wodBreakLoop (wDevID);
1184 case WODM_PREPARE: return MMSYSERR_NOTSUPPORTED;
1185 case WODM_UNPREPARE: return MMSYSERR_NOTSUPPORTED;
1186 case WODM_GETVOLUME: return wodGetVolume (wDevID, (LPDWORD)dwParam1);
1187 case WODM_SETVOLUME: return wodSetVolume (wDevID, dwParam1);
1188 case WODM_RESTART: return wodRestart (wDevID);
1189 case WODM_RESET: return wodReset (wDevID);
1190 case DRV_QUERYDEVICEINTERFACESIZE: return wodDevInterfaceSize (wDevID, (LPDWORD)dwParam1);
1191 case DRV_QUERYDEVICEINTERFACE: return wodDevInterface (wDevID, (PWCHAR)dwParam1, dwParam2);
1192 case DRV_QUERYDSOUNDIFACE: return wodDsCreate (wDevID, (PIDSDRIVER*)dwParam1);
1193 case DRV_QUERYDSOUNDDESC: return wodDsDesc (wDevID, (PDSDRIVERDESC)dwParam1);
1195 default:
1196 FIXME("unknown message %d!\n", wMsg);
1198 return MMSYSERR_NOTSUPPORTED;
1201 #else /* HAVE_ALSA */
1203 /**************************************************************************
1204 * wodMessage (WINEALSA.@)
1206 DWORD WINAPI ALSA_wodMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
1207 DWORD dwParam1, DWORD dwParam2)
1209 FIXME("(%u, %04X, %08X, %08X, %08X):stub\n", wDevID, wMsg, dwUser, dwParam1, dwParam2);
1210 return MMSYSERR_NOTENABLED;
1213 #endif /* HAVE_ALSA */