1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
3 * Wine Driver for aRts Sound Server
4 * http://www.arts-project.org
6 * Copyright 1994 Martin Ayotte
7 * 1999 Eric Pouech (async playing in waveOut/waveIn)
8 * 2000 Eric Pouech (loops in waveOut)
9 * 2002 Chris Morgan (aRts version of this file)
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 * with arts we cannot stop the audio that is already in
27 * the servers buffer, so to reduce delays during starting
28 * and stoppping of audio streams adjust the
29 * audio buffer size in the kde control center or in the
30 * artsd startup script
33 * pause in waveOut does not work correctly in loop mode
36 * implement wave-in support with artsc
39 /*#define EMULATE_SB16*/
53 #include "wine/winuser16.h"
58 #include "wine/debug.h"
60 WINE_DEFAULT_DEBUG_CHANNEL(wave);
66 #define BUFFER_SIZE 16 * 1024
67 #define SPACE_THRESHOLD 5 * 1024
69 #define MAX_WAVEOUTDRV (10)
71 /* state diagram for waveOut writing:
73 * +---------+-------------+---------------+---------------------------------+
74 * | state | function | event | new state |
75 * +---------+-------------+---------------+---------------------------------+
76 * | | open() | | STOPPED |
77 * | PAUSED | write() | | PAUSED |
78 * | STOPPED | write() | <thrd create> | PLAYING |
79 * | PLAYING | write() | HEADER | PLAYING |
80 * | (other) | write() | <error> | |
81 * | (any) | pause() | PAUSING | PAUSED |
82 * | PAUSED | restart() | RESTARTING | PLAYING (if no thrd => STOPPED) |
83 * | (any) | reset() | RESETTING | STOPPED |
84 * | (any) | close() | CLOSING | CLOSED |
85 * +---------+-------------+---------------+---------------------------------+
88 /* states of the playing device */
89 #define WINE_WS_PLAYING 0
90 #define WINE_WS_PAUSED 1
91 #define WINE_WS_STOPPED 2
92 #define WINE_WS_CLOSED 3
94 /* events to be send to device */
96 WINE_WM_PAUSING = WM_USER + 1, WINE_WM_RESTARTING, WINE_WM_RESETTING, WINE_WM_HEADER,
97 WINE_WM_UPDATE, WINE_WM_BREAKLOOP, WINE_WM_CLOSING
101 enum win_wm_message msg; /* message identifier */
102 DWORD param; /* parameter for this message */
103 HANDLE hEvent; /* if message is synchronous, handle of event for synchro */
106 /* implement an in-process message ring for better performance
107 * (compared to passing thru the server)
108 * this ring will be used by the input (resp output) record (resp playback) routine
111 #define ARTS_RING_BUFFER_SIZE 30
112 RING_MSG messages[ARTS_RING_BUFFER_SIZE];
116 CRITICAL_SECTION msg_crst;
120 volatile int state; /* one of the WINE_WS_ manifest constants */
121 WAVEOPENDESC waveDesc;
123 PCMWAVEFORMAT format;
126 /* arts information */
127 arts_stream_t play_stream; /* the stream structure we get from arts when opening a stream for playing */
128 DWORD dwBufferSize; /* size of whole buffer in bytes */
134 DWORD volume_left; /* volume control information */
137 LPWAVEHDR lpQueuePtr; /* start of queued WAVEHDRs (waiting to be notified) */
138 LPWAVEHDR lpPlayPtr; /* start of not yet fully played buffers */
139 DWORD dwPartialOffset; /* Offset of not yet written bytes in lpPlayPtr */
141 LPWAVEHDR lpLoopPtr; /* pointer of first buffer in loop, if any */
142 DWORD dwLoops; /* private copy of loop counter */
144 DWORD dwPlayedTotal; /* number of bytes actually played since opening */
145 DWORD dwWrittenTotal; /* number of bytes written to the audio device since opening */
147 /* synchronization stuff */
148 HANDLE hStartUpEvent;
151 ARTS_MSG_RING msgRing;
154 static WINE_WAVEOUT WOutDev [MAX_WAVEOUTDRV];
156 static DWORD wodDsCreate(UINT wDevID, PIDSDRIVER* drv);
158 /* These strings used only for tracing */
159 static const char *wodPlayerCmdString[] = {
161 "WINE_WM_RESTARTING",
169 /*======================================================================*
170 * Low level WAVE implementation *
171 *======================================================================*/
173 /* Volume functions derived from Alsaplayer source */
174 /* length is the number of 16 bit samples */
175 void volume_effect16(void *bufin, void* bufout, int length, int left,
176 int right, int nChannels)
178 short *d_out = (short *)bufout;
179 short *d_in = (short *)bufin;
183 TRACE("length == %d, nChannels == %d\n", length, nChannels);
186 if (right == -1) right = left;
188 for(i = 0; i < length; i+=(nChannels))
190 v = (int) ((*(d_in++) * left) / 100);
191 *(d_out++) = (v>32767) ? 32767 : ((v<-32768) ? -32768 : v);
194 v = (int) ((*(d_in++) * right) / 100);
195 *(d_out++) = (v>32767) ? 32767 : ((v<-32768) ? -32768 : v);
200 /* length is the number of 8 bit samples */
201 void volume_effect8(void *bufin, void* bufout, int length, int left,
202 int right, int nChannels)
204 BYTE *d_out = (BYTE *)bufout;
205 BYTE *d_in = (BYTE *)bufin;
209 TRACE("length == %d, nChannels == %d\n", length, nChannels);
212 if (right == -1) right = left;
214 for(i = 0; i < length; i+=(nChannels))
216 v = (BYTE) ((*(d_in++) * left) / 100);
217 *(d_out++) = (v>255) ? 255 : ((v<0) ? 0 : v);
220 v = (BYTE) ((*(d_in++) * right) / 100);
221 *(d_out++) = (v>255) ? 255 : ((v<0) ? 0 : v);
226 /******************************************************************
230 void ARTS_CloseDevice(WINE_WAVEOUT* wwo)
232 arts_close_stream(wwo->play_stream); /* close the arts stream */
233 wwo->play_stream = (arts_stream_t*)-1;
235 /* free up the buffer we use for volume and reset the size */
236 if(wwo->sound_buffer)
237 HeapFree(GetProcessHeap(), 0, wwo->sound_buffer);
239 wwo->buffer_size = 0;
242 /******************************************************************
245 static int ARTS_Init(void)
247 return arts_init(); /* initialize arts and return errorcode */
250 /******************************************************************
253 LONG ARTS_WaveClose(void)
257 /* close all open devices */
258 for(iDevice = 0; iDevice < MAX_WAVEOUTDRV; iDevice++)
260 if(WOutDev[iDevice].play_stream != (arts_stream_t*)-1)
262 ARTS_CloseDevice(&WOutDev[iDevice]);
266 arts_free(); /* free up arts */
270 /******************************************************************
273 * Initialize internal structures from ARTS server info
275 LONG ARTS_WaveInit(void)
282 if ((errorcode = ARTS_Init()) < 0)
284 ERR("arts_init() failed (%d)\n", errorcode);
288 /* initialize all device handles to -1 */
289 for (i = 0; i < MAX_WAVEOUTDRV; ++i)
291 WOutDev[i].play_stream = (arts_stream_t*)-1;
292 memset(&WOutDev[i].caps, 0, sizeof(WOutDev[i].caps)); /* zero out
294 /* FIXME: some programs compare this string against the content of the registry
295 * for MM drivers. The names have to match in order for the program to work
296 * (e.g. MS win9x mplayer.exe)
299 WOutDev[i].caps.wMid = 0x0002;
300 WOutDev[i].caps.wPid = 0x0104;
301 strcpy(WOutDev[i].caps.szPname, "SB16 Wave Out");
303 WOutDev[i].caps.wMid = 0x00FF; /* Manufac ID */
304 WOutDev[i].caps.wPid = 0x0001; /* Product ID */
305 /* strcpy(WOutDev[i].caps.szPname, "OpenSoundSystem WAVOUT Driver");*/
306 strcpy(WOutDev[i].caps.szPname, "CS4236/37/38");
308 WOutDev[i].caps.vDriverVersion = 0x0100;
309 WOutDev[i].caps.dwFormats = 0x00000000;
310 WOutDev[i].caps.dwSupport = WAVECAPS_VOLUME;
312 WOutDev[i].caps.wChannels = 2;
313 WOutDev[i].caps.dwSupport |= WAVECAPS_LRVOLUME;
315 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_4M08;
316 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_4S08;
317 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_4S16;
318 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_4M16;
319 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_2M08;
320 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_2S08;
321 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_2M16;
322 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_2S16;
323 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_1M08;
324 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_1S08;
325 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_1M16;
326 WOutDev[i].caps.dwFormats |= WAVE_FORMAT_1S16;
333 /******************************************************************
334 * ARTS_InitRingMessage
336 * Initialize the ring of messages for passing between driver's caller and playback/record
339 static int ARTS_InitRingMessage(ARTS_MSG_RING* mr)
343 mr->msg_event = CreateEventA(NULL, FALSE, FALSE, NULL);
344 memset(mr->messages, 0, sizeof(RING_MSG) * ARTS_RING_BUFFER_SIZE);
345 InitializeCriticalSection(&mr->msg_crst);
349 /******************************************************************
350 * ARTS_DestroyRingMessage
353 static int ARTS_DestroyRingMessage(ARTS_MSG_RING* mr)
355 CloseHandle(mr->msg_event);
356 DeleteCriticalSection(&mr->msg_crst);
360 /******************************************************************
361 * ARTS_AddRingMessage
363 * Inserts a new message into the ring (should be called from DriverProc derivated routines)
365 static int ARTS_AddRingMessage(ARTS_MSG_RING* mr, enum win_wm_message msg, DWORD param, BOOL wait)
367 HANDLE hEvent = INVALID_HANDLE_VALUE;
369 EnterCriticalSection(&mr->msg_crst);
370 if ((mr->msg_toget == ((mr->msg_tosave + 1) % ARTS_RING_BUFFER_SIZE))) /* buffer overflow? */
372 ERR("buffer overflow !?\n");
373 LeaveCriticalSection(&mr->msg_crst);
378 hEvent = CreateEventA(NULL, FALSE, FALSE, NULL);
379 if (hEvent == INVALID_HANDLE_VALUE)
381 ERR("can't create event !?\n");
382 LeaveCriticalSection(&mr->msg_crst);
385 if (mr->msg_toget != mr->msg_tosave && mr->messages[mr->msg_toget].msg != WINE_WM_HEADER)
386 FIXME("two fast messages in the queue!!!!\n");
388 /* fast messages have to be added at the start of the queue */
389 mr->msg_toget = (mr->msg_toget + ARTS_RING_BUFFER_SIZE - 1) % ARTS_RING_BUFFER_SIZE;
391 mr->messages[mr->msg_toget].msg = msg;
392 mr->messages[mr->msg_toget].param = param;
393 mr->messages[mr->msg_toget].hEvent = hEvent;
397 mr->messages[mr->msg_tosave].msg = msg;
398 mr->messages[mr->msg_tosave].param = param;
399 mr->messages[mr->msg_tosave].hEvent = INVALID_HANDLE_VALUE;
400 mr->msg_tosave = (mr->msg_tosave + 1) % ARTS_RING_BUFFER_SIZE;
403 LeaveCriticalSection(&mr->msg_crst);
405 SetEvent(mr->msg_event); /* signal a new message */
409 /* wait for playback/record thread to have processed the message */
410 WaitForSingleObject(hEvent, INFINITE);
417 /******************************************************************
418 * ARTS_RetrieveRingMessage
420 * Get a message from the ring. Should be called by the playback/record thread.
422 static int ARTS_RetrieveRingMessage(ARTS_MSG_RING* mr,
423 enum win_wm_message *msg, DWORD *param, HANDLE *hEvent)
425 EnterCriticalSection(&mr->msg_crst);
427 if (mr->msg_toget == mr->msg_tosave) /* buffer empty ? */
429 LeaveCriticalSection(&mr->msg_crst);
433 *msg = mr->messages[mr->msg_toget].msg;
434 mr->messages[mr->msg_toget].msg = 0;
435 *param = mr->messages[mr->msg_toget].param;
436 *hEvent = mr->messages[mr->msg_toget].hEvent;
437 mr->msg_toget = (mr->msg_toget + 1) % ARTS_RING_BUFFER_SIZE;
438 LeaveCriticalSection(&mr->msg_crst);
442 /*======================================================================*
443 * Low level WAVE OUT implementation *
444 *======================================================================*/
446 /**************************************************************************
447 * wodNotifyClient [internal]
449 static DWORD wodNotifyClient(WINE_WAVEOUT* wwo, WORD wMsg, DWORD dwParam1, DWORD dwParam2)
451 TRACE("wMsg = 0x%04x dwParm1 = %04lX dwParam2 = %04lX\n", wMsg, dwParam1, dwParam2);
457 if (wwo->wFlags != DCB_NULL &&
458 !DriverCallback(wwo->waveDesc.dwCallback, wwo->wFlags, (HDRVR)wwo->waveDesc.hWave,
459 wMsg, wwo->waveDesc.dwInstance, dwParam1, dwParam2)) {
460 WARN("can't notify client !\n");
461 return MMSYSERR_ERROR;
465 FIXME("Unknown callback message %u\n", wMsg);
466 return MMSYSERR_INVALPARAM;
468 return MMSYSERR_NOERROR;
471 /**************************************************************************
472 * wodUpdatePlayedTotal [internal]
475 static BOOL wodUpdatePlayedTotal(WINE_WAVEOUT* wwo)
477 /* total played is the bytes written less the bytes to write ;-) */
478 wwo->dwPlayedTotal = wwo->dwWrittenTotal -
480 arts_stream_get(wwo->play_stream, ARTS_P_BUFFER_SPACE));
485 /**************************************************************************
486 * wodPlayer_BeginWaveHdr [internal]
488 * Makes the specified lpWaveHdr the currently playing wave header.
489 * If the specified wave header is a begin loop and we're not already in
490 * a loop, setup the loop.
492 static void wodPlayer_BeginWaveHdr(WINE_WAVEOUT* wwo, LPWAVEHDR lpWaveHdr)
494 wwo->lpPlayPtr = lpWaveHdr;
496 if (!lpWaveHdr) return;
498 if (lpWaveHdr->dwFlags & WHDR_BEGINLOOP) {
499 if (wwo->lpLoopPtr) {
500 WARN("Already in a loop. Discarding loop on this header (%p)\n", lpWaveHdr);
501 TRACE("Already in a loop. Discarding loop on this header (%p)\n", lpWaveHdr);
503 TRACE("Starting loop (%ldx) with %p\n", lpWaveHdr->dwLoops, lpWaveHdr);
504 wwo->lpLoopPtr = lpWaveHdr;
505 /* Windows does not touch WAVEHDR.dwLoops,
506 * so we need to make an internal copy */
507 wwo->dwLoops = lpWaveHdr->dwLoops;
510 wwo->dwPartialOffset = 0;
513 /**************************************************************************
514 * wodPlayer_PlayPtrNext [internal]
516 * Advance the play pointer to the next waveheader, looping if required.
518 static LPWAVEHDR wodPlayer_PlayPtrNext(WINE_WAVEOUT* wwo)
520 LPWAVEHDR lpWaveHdr = wwo->lpPlayPtr;
522 wwo->dwPartialOffset = 0;
523 if ((lpWaveHdr->dwFlags & WHDR_ENDLOOP) && wwo->lpLoopPtr) {
524 /* We're at the end of a loop, loop if required */
525 if (--wwo->dwLoops > 0) {
526 wwo->lpPlayPtr = wwo->lpLoopPtr;
528 /* Handle overlapping loops correctly */
529 if (wwo->lpLoopPtr != lpWaveHdr && (lpWaveHdr->dwFlags & WHDR_BEGINLOOP)) {
530 FIXME("Correctly handled case ? (ending loop buffer also starts a new loop)\n");
531 /* shall we consider the END flag for the closing loop or for
532 * the opening one or for both ???
533 * code assumes for closing loop only
536 lpWaveHdr = lpWaveHdr->lpNext;
538 wwo->lpLoopPtr = NULL;
539 wodPlayer_BeginWaveHdr(wwo, lpWaveHdr);
542 /* We're not in a loop. Advance to the next wave header */
543 wodPlayer_BeginWaveHdr(wwo, lpWaveHdr = lpWaveHdr->lpNext);
549 /**************************************************************************
550 * wodPlayer_DSPWait [internal]
551 * Returns the number of milliseconds to wait for the DSP buffer to clear.
552 * This is based on the number of fragments we want to be clear before
553 * writing and the number of free fragments we already have.
555 static DWORD wodPlayer_DSPWait(const WINE_WAVEOUT *wwo)
557 int waitvalue = (wwo->dwBufferSize - arts_stream_get(wwo->play_stream,
558 ARTS_P_BUFFER_SPACE)) / ((wwo->format.wf.nSamplesPerSec *
559 wwo->format.wBitsPerSample * wwo->format.wf.nChannels)
562 TRACE("wait value of %d\n", waitvalue);
564 /* return the time left to play the buffer */
568 /**************************************************************************
569 * wodPlayer_NotifyWait [internal]
570 * Returns the number of milliseconds to wait before attempting to notify
571 * completion of the specified wavehdr.
572 * This is based on the number of bytes remaining to be written in the
575 static DWORD wodPlayer_NotifyWait(const WINE_WAVEOUT* wwo, LPWAVEHDR lpWaveHdr)
579 if(lpWaveHdr->reserved < wwo->dwPlayedTotal)
585 dwMillis = (lpWaveHdr->reserved - wwo->dwPlayedTotal) * 1000 / wwo->format.wf.nAvgBytesPerSec;
586 if(!dwMillis) dwMillis = 1;
589 TRACE("dwMillis = %ld\n", dwMillis);
595 /**************************************************************************
596 * wodPlayer_WriteMaxFrags [internal]
597 * Writes the maximum number of bytes possible to the DSP and returns
598 * the number of bytes written.
600 static int wodPlayer_WriteMaxFrags(WINE_WAVEOUT* wwo, DWORD* bytes)
602 /* Only attempt to write to free bytes */
603 DWORD dwLength = wwo->lpPlayPtr->dwBufferLength - wwo->dwPartialOffset;
604 int toWrite = min(dwLength, *bytes);
607 TRACE("Writing wavehdr %p.%lu[%lu]\n",
608 wwo->lpPlayPtr, wwo->dwPartialOffset, wwo->lpPlayPtr->dwBufferLength);
610 /* see if our buffer isn't large enough for the data we are writing */
611 if(wwo->buffer_size < toWrite)
613 if(wwo->sound_buffer)
614 HeapFree(GetProcessHeap(), 0, wwo->sound_buffer);
617 /* if we don't have a buffer then get one */
618 if(!wwo->sound_buffer)
620 /* allocate some memory for the buffer */
621 wwo->sound_buffer = HeapAlloc(GetProcessHeap(), 0, toWrite);
622 wwo->buffer_size = toWrite;
625 /* if we don't have a buffer then error out */
626 if(!wwo->sound_buffer)
628 ERR("error allocating sound_buffer memory\n");
632 TRACE("toWrite == %d\n", toWrite);
634 /* apply volume to the bits */
635 /* for single channel audio streams we only use the LEFT volume */
636 if(wwo->format.wBitsPerSample == 16)
638 /* apply volume to the buffer we are about to send */
639 /* divide toWrite(bytes) by 2 as volume processes by 16 bits */
640 volume_effect16(wwo->lpPlayPtr->lpData + wwo->dwPartialOffset,
641 wwo->sound_buffer, toWrite>>1, wwo->volume_left,
642 wwo->volume_right, wwo->format.wf.nChannels);
643 } else if(wwo->format.wBitsPerSample == 8)
645 /* apply volume to the buffer we are about to send */
646 volume_effect8(wwo->lpPlayPtr->lpData + wwo->dwPartialOffset,
647 wwo->sound_buffer, toWrite, wwo->volume_left,
648 wwo->volume_right, wwo->format.wf.nChannels);
651 FIXME("unsupported wwo->format.wBitsPerSample of %d\n",
652 wwo->format.wBitsPerSample);
655 /* send the audio data to arts for playing */
656 written = arts_write(wwo->play_stream, wwo->sound_buffer, toWrite);
658 TRACE("written = %d\n", written);
660 if (written <= 0) return written; /* if we wrote nothing just return */
662 if (written >= dwLength)
663 wodPlayer_PlayPtrNext(wwo); /* If we wrote all current wavehdr, skip to the next one */
665 wwo->dwPartialOffset += written; /* Remove the amount written */
668 wwo->dwWrittenTotal += written; /* update stats on this wave device */
670 return written; /* return the number of bytes written */
674 /**************************************************************************
675 * wodPlayer_NotifyCompletions [internal]
677 * Notifies and remove from queue all wavehdrs which have been played to
678 * the speaker (ie. they have cleared the audio device). If force is true,
679 * we notify all wavehdrs and remove them all from the queue even if they
680 * are unplayed or part of a loop.
682 static DWORD wodPlayer_NotifyCompletions(WINE_WAVEOUT* wwo, BOOL force)
686 /* Start from lpQueuePtr and keep notifying until:
687 * - we hit an unwritten wavehdr
688 * - we hit the beginning of a running loop
689 * - we hit a wavehdr which hasn't finished playing
691 while ((lpWaveHdr = wwo->lpQueuePtr) &&
693 (lpWaveHdr != wwo->lpPlayPtr &&
694 lpWaveHdr != wwo->lpLoopPtr &&
695 lpWaveHdr->reserved <= wwo->dwPlayedTotal))) {
697 wwo->lpQueuePtr = lpWaveHdr->lpNext;
699 lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
700 lpWaveHdr->dwFlags |= WHDR_DONE;
702 wodNotifyClient(wwo, WOM_DONE, (DWORD)lpWaveHdr, 0);
704 return (lpWaveHdr && lpWaveHdr != wwo->lpPlayPtr && lpWaveHdr != wwo->lpLoopPtr) ?
705 wodPlayer_NotifyWait(wwo, lpWaveHdr) : INFINITE;
708 /**************************************************************************
709 * wodPlayer_Reset [internal]
711 * wodPlayer helper. Resets current output stream.
713 static void wodPlayer_Reset(WINE_WAVEOUT* wwo, BOOL reset)
715 wodUpdatePlayedTotal(wwo);
717 wodPlayer_NotifyCompletions(wwo, FALSE); /* updates current notify list */
719 /* we aren't able to flush any data that has already been written */
720 /* to arts, otherwise we would do the flushing here */
723 enum win_wm_message msg;
727 /* remove any buffer */
728 wodPlayer_NotifyCompletions(wwo, TRUE);
730 wwo->lpPlayPtr = wwo->lpQueuePtr = wwo->lpLoopPtr = NULL;
731 wwo->state = WINE_WS_STOPPED;
732 wwo->dwPlayedTotal = wwo->dwWrittenTotal = 0;
734 wwo->dwPartialOffset = 0; /* Clear partial wavehdr */
736 /* remove any existing message in the ring */
737 EnterCriticalSection(&wwo->msgRing.msg_crst);
739 /* return all pending headers in queue */
740 while (ARTS_RetrieveRingMessage(&wwo->msgRing, &msg, ¶m, &ev))
742 TRACE("flushing msg\n");
743 if (msg != WINE_WM_HEADER)
745 FIXME("shouldn't have headers left\n");
749 ((LPWAVEHDR)param)->dwFlags &= ~WHDR_INQUEUE;
750 ((LPWAVEHDR)param)->dwFlags |= WHDR_DONE;
752 wodNotifyClient(wwo, WOM_DONE, param, 0);
754 ResetEvent(wwo->msgRing.msg_event);
755 LeaveCriticalSection(&wwo->msgRing.msg_crst);
757 if (wwo->lpLoopPtr) {
758 /* complicated case, not handled yet (could imply modifying the loop counter */
759 FIXME("Pausing while in loop isn't correctly handled yet, except strange results\n");
760 wwo->lpPlayPtr = wwo->lpLoopPtr;
761 wwo->dwPartialOffset = 0;
762 wwo->dwWrittenTotal = wwo->dwPlayedTotal; /* this is wrong !!! */
764 /* the data already written is going to be played, so take */
765 /* this fact into account here */
766 wwo->dwPlayedTotal = wwo->dwWrittenTotal;
768 wwo->state = WINE_WS_PAUSED;
772 /**************************************************************************
773 * wodPlayer_ProcessMessages [internal]
775 static void wodPlayer_ProcessMessages(WINE_WAVEOUT* wwo)
778 enum win_wm_message msg;
782 while (ARTS_RetrieveRingMessage(&wwo->msgRing, &msg, ¶m, &ev)) {
783 TRACE("Received %s %lx\n", wodPlayerCmdString[msg - WM_USER - 1], param);
785 case WINE_WM_PAUSING:
786 wodPlayer_Reset(wwo, FALSE);
789 case WINE_WM_RESTARTING:
790 wwo->state = WINE_WS_PLAYING;
794 lpWaveHdr = (LPWAVEHDR)param;
796 /* insert buffer at the end of queue */
799 for (wh = &(wwo->lpQueuePtr); *wh; wh = &((*wh)->lpNext));
803 wodPlayer_BeginWaveHdr(wwo,lpWaveHdr);
804 if (wwo->state == WINE_WS_STOPPED)
805 wwo->state = WINE_WS_PLAYING;
807 case WINE_WM_RESETTING:
808 wodPlayer_Reset(wwo, TRUE);
812 wodUpdatePlayedTotal(wwo);
815 case WINE_WM_BREAKLOOP:
816 if (wwo->state == WINE_WS_PLAYING && wwo->lpLoopPtr != NULL) {
817 /* ensure exit at end of current loop */
822 case WINE_WM_CLOSING:
823 /* sanity check: this should not happen since the device must have been reset before */
824 if (wwo->lpQueuePtr || wwo->lpPlayPtr) ERR("out of sync\n");
826 wwo->state = WINE_WS_CLOSED;
829 /* shouldn't go here */
831 FIXME("unknown message %d\n", msg);
837 /**************************************************************************
838 * wodPlayer_FeedDSP [internal]
839 * Feed as much sound data as we can into the DSP and return the number of
840 * milliseconds before it will be necessary to feed the DSP again.
842 static DWORD wodPlayer_FeedDSP(WINE_WAVEOUT* wwo)
846 wodUpdatePlayedTotal(wwo);
847 availInQ = arts_stream_get(wwo->play_stream, ARTS_P_BUFFER_SPACE);
848 TRACE("availInQ = %ld\n", availInQ);
850 /* input queue empty and output buffer with no space */
851 if (!wwo->lpPlayPtr && availInQ) {
852 TRACE("Run out of wavehdr:s... flushing\n");
853 wwo->dwPlayedTotal = wwo->dwWrittenTotal;
857 /* no more room... no need to try to feed */
860 TRACE("no more room, no need to try to feed\n");
861 return wodPlayer_DSPWait(wwo);
864 /* Feed from partial wavehdr */
865 if (wwo->lpPlayPtr && wwo->dwPartialOffset != 0)
867 TRACE("feeding from partial wavehdr\n");
868 wodPlayer_WriteMaxFrags(wwo, &availInQ);
871 /* Feed wavehdrs until we run out of wavehdrs or DSP space */
872 if (!wwo->dwPartialOffset)
874 while(wwo->lpPlayPtr && availInQ > SPACE_THRESHOLD)
876 TRACE("feeding waveheaders until we run out of space\n");
877 /* note the value that dwPlayedTotal will return when this wave finishes playing */
878 wwo->lpPlayPtr->reserved = wwo->dwWrittenTotal + wwo->lpPlayPtr->dwBufferLength;
879 wodPlayer_WriteMaxFrags(wwo, &availInQ);
883 return wodPlayer_DSPWait(wwo);
887 /**************************************************************************
888 * wodPlayer [internal]
890 static DWORD CALLBACK wodPlayer(LPVOID pmt)
892 WORD uDevID = (DWORD)pmt;
893 WINE_WAVEOUT* wwo = (WINE_WAVEOUT*)&WOutDev[uDevID];
894 DWORD dwNextFeedTime = INFINITE; /* Time before DSP needs feeding */
895 DWORD dwNextNotifyTime = INFINITE; /* Time before next wave completion */
898 wwo->state = WINE_WS_STOPPED;
899 SetEvent(wwo->hStartUpEvent);
902 /** Wait for the shortest time before an action is required. If there
903 * are no pending actions, wait forever for a command.
905 dwSleepTime = min(dwNextFeedTime, dwNextNotifyTime);
906 TRACE("waiting %lums (%lu,%lu)\n", dwSleepTime, dwNextFeedTime, dwNextNotifyTime);
907 WaitForSingleObject(wwo->msgRing.msg_event, dwSleepTime);
908 wodPlayer_ProcessMessages(wwo);
909 if (wwo->state == WINE_WS_PLAYING) {
910 dwNextFeedTime = wodPlayer_FeedDSP(wwo);
911 dwNextNotifyTime = wodPlayer_NotifyCompletions(wwo, FALSE);
913 dwNextFeedTime = dwNextNotifyTime = INFINITE;
918 /**************************************************************************
919 * wodGetDevCaps [internal]
921 static DWORD wodGetDevCaps(WORD wDevID, LPWAVEOUTCAPSA lpCaps, DWORD dwSize)
923 TRACE("(%u, %p, %lu);\n", wDevID, lpCaps, dwSize);
925 if (lpCaps == NULL) return MMSYSERR_NOTENABLED;
927 if (wDevID >= MAX_WAVEOUTDRV) {
928 TRACE("MAX_WAVOUTDRV reached !\n");
929 return MMSYSERR_BADDEVICEID;
932 memcpy(lpCaps, &WOutDev[wDevID].caps, min(dwSize, sizeof(*lpCaps)));
933 return MMSYSERR_NOERROR;
936 /**************************************************************************
939 static DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
943 TRACE("(%u, %p, %08lX);\n", wDevID, lpDesc, dwFlags);
944 if (lpDesc == NULL) {
945 WARN("Invalid Parameter !\n");
946 return MMSYSERR_INVALPARAM;
948 if (wDevID >= MAX_WAVEOUTDRV) {
949 TRACE("MAX_WAVOUTDRV reached !\n");
950 return MMSYSERR_BADDEVICEID;
953 /* if this device is already open tell the app that it is allocated */
954 if(WOutDev[wDevID].play_stream != (arts_stream_t*)-1)
956 TRACE("device already allocated\n");
957 return MMSYSERR_ALLOCATED;
960 /* only PCM format is supported so far... */
961 if (lpDesc->lpFormat->wFormatTag != WAVE_FORMAT_PCM ||
962 lpDesc->lpFormat->nChannels == 0 ||
963 lpDesc->lpFormat->nSamplesPerSec == 0) {
964 WARN("Bad format: tag=%04X nChannels=%d nSamplesPerSec=%ld !\n",
965 lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
966 lpDesc->lpFormat->nSamplesPerSec);
967 return WAVERR_BADFORMAT;
970 if (dwFlags & WAVE_FORMAT_QUERY) {
971 TRACE("Query format: tag=%04X nChannels=%d nSamplesPerSec=%ld !\n",
972 lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
973 lpDesc->lpFormat->nSamplesPerSec);
974 return MMSYSERR_NOERROR;
977 wwo = &WOutDev[wDevID];
979 /* direct sound not supported, ignore the flag */
980 dwFlags &= ~WAVE_DIRECTSOUND;
982 wwo->wFlags = HIWORD(dwFlags & CALLBACK_TYPEMASK);
984 memcpy(&wwo->waveDesc, lpDesc, sizeof(WAVEOPENDESC));
985 memcpy(&wwo->format, lpDesc->lpFormat, sizeof(PCMWAVEFORMAT));
987 if (wwo->format.wBitsPerSample == 0) {
988 WARN("Resetting zeroed wBitsPerSample\n");
989 wwo->format.wBitsPerSample = 8 *
990 (wwo->format.wf.nAvgBytesPerSec /
991 wwo->format.wf.nSamplesPerSec) /
992 wwo->format.wf.nChannels;
995 wwo->play_stream = arts_play_stream(wwo->format.wf.nSamplesPerSec,
996 wwo->format.wBitsPerSample, wwo->format.wf.nChannels, "winearts");
998 /* clear these so we don't have any confusion ;-) */
999 wwo->sound_buffer = 0;
1000 wwo->buffer_size = 0;
1002 arts_stream_set(wwo->play_stream, ARTS_P_BLOCKING, 0); /* disable blocking on this stream */
1004 if(!wwo->play_stream) return MMSYSERR_ALLOCATED;
1006 /* Try to set buffer size from constant and store the value that it
1007 was set to for future use */
1008 wwo->dwBufferSize = arts_stream_set(wwo->play_stream,
1009 ARTS_P_BUFFER_SIZE, BUFFER_SIZE);
1010 TRACE("Tried to set BUFFER_SIZE of %d, wwo->dwBufferSize is actually %ld\n", BUFFER_SIZE, wwo->dwBufferSize);
1011 wwo->dwPlayedTotal = 0;
1012 wwo->dwWrittenTotal = 0;
1014 /* Initialize volume to full level */
1015 wwo->volume_left = 100;
1016 wwo->volume_right = 100;
1018 ARTS_InitRingMessage(&wwo->msgRing);
1020 /* create player thread */
1021 if (!(dwFlags & WAVE_DIRECTSOUND)) {
1022 wwo->hStartUpEvent = CreateEventA(NULL, FALSE, FALSE, NULL);
1023 wwo->hThread = CreateThread(NULL, 0, wodPlayer, (LPVOID)(DWORD)wDevID, 0, &(wwo->dwThreadID));
1024 WaitForSingleObject(wwo->hStartUpEvent, INFINITE);
1025 CloseHandle(wwo->hStartUpEvent);
1027 wwo->hThread = INVALID_HANDLE_VALUE;
1028 wwo->dwThreadID = 0;
1030 wwo->hStartUpEvent = INVALID_HANDLE_VALUE;
1032 TRACE("stream=0x%lx, dwBufferSize=%ld\n",
1033 (long)wwo->play_stream, wwo->dwBufferSize);
1035 TRACE("wBitsPerSample=%u, nAvgBytesPerSec=%lu, nSamplesPerSec=%lu, nChannels=%u nBlockAlign=%u!\n",
1036 wwo->format.wBitsPerSample, wwo->format.wf.nAvgBytesPerSec,
1037 wwo->format.wf.nSamplesPerSec, wwo->format.wf.nChannels,
1038 wwo->format.wf.nBlockAlign);
1040 return wodNotifyClient(wwo, WOM_OPEN, 0L, 0L);
1043 /**************************************************************************
1044 * wodClose [internal]
1046 static DWORD wodClose(WORD wDevID)
1048 DWORD ret = MMSYSERR_NOERROR;
1051 TRACE("(%u);\n", wDevID);
1053 if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].play_stream ==
1056 WARN("bad device ID !\n");
1057 return MMSYSERR_BADDEVICEID;
1060 wwo = &WOutDev[wDevID];
1061 if (wwo->lpQueuePtr) {
1062 WARN("buffers still playing !\n");
1063 ret = WAVERR_STILLPLAYING;
1065 TRACE("imhere[3-close]\n");
1066 if (wwo->hThread != INVALID_HANDLE_VALUE) {
1067 ARTS_AddRingMessage(&wwo->msgRing, WINE_WM_CLOSING, 0, TRUE);
1070 ARTS_DestroyRingMessage(&wwo->msgRing);
1072 ARTS_CloseDevice(wwo); /* close the stream and clean things up */
1074 ret = wodNotifyClient(wwo, WOM_CLOSE, 0L, 0L);
1079 /**************************************************************************
1080 * wodWrite [internal]
1083 static DWORD wodWrite(WORD wDevID, LPWAVEHDR lpWaveHdr, DWORD dwSize)
1085 TRACE("(%u, %p, %08lX);\n", wDevID, lpWaveHdr, dwSize);
1087 /* first, do the sanity checks... */
1088 if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].play_stream ==
1091 WARN("bad dev ID !\n");
1092 return MMSYSERR_BADDEVICEID;
1095 if (lpWaveHdr->lpData == NULL || !(lpWaveHdr->dwFlags & WHDR_PREPARED))
1097 TRACE("unprepared\n");
1098 return WAVERR_UNPREPARED;
1101 if (lpWaveHdr->dwFlags & WHDR_INQUEUE)
1103 TRACE("still playing\n");
1104 return WAVERR_STILLPLAYING;
1107 lpWaveHdr->dwFlags &= ~WHDR_DONE;
1108 lpWaveHdr->dwFlags |= WHDR_INQUEUE;
1109 lpWaveHdr->lpNext = 0;
1111 TRACE("adding ring message\n");
1112 ARTS_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_HEADER, (DWORD)lpWaveHdr, FALSE);
1114 return MMSYSERR_NOERROR;
1117 /**************************************************************************
1118 * wodPrepare [internal]
1120 static DWORD wodPrepare(WORD wDevID, LPWAVEHDR lpWaveHdr, DWORD dwSize)
1122 TRACE("(%u, %p, %08lX);\n", wDevID, lpWaveHdr, dwSize);
1124 if (wDevID >= MAX_WAVEOUTDRV) {
1125 WARN("bad device ID !\n");
1126 return MMSYSERR_BADDEVICEID;
1129 if (lpWaveHdr->dwFlags & WHDR_INQUEUE)
1130 return WAVERR_STILLPLAYING;
1132 lpWaveHdr->dwFlags |= WHDR_PREPARED;
1133 lpWaveHdr->dwFlags &= ~WHDR_DONE;
1134 return MMSYSERR_NOERROR;
1137 /**************************************************************************
1138 * wodUnprepare [internal]
1140 static DWORD wodUnprepare(WORD wDevID, LPWAVEHDR lpWaveHdr, DWORD dwSize)
1142 TRACE("(%u, %p, %08lX);\n", wDevID, lpWaveHdr, dwSize);
1144 if (wDevID >= MAX_WAVEOUTDRV) {
1145 WARN("bad device ID !\n");
1146 return MMSYSERR_BADDEVICEID;
1149 if (lpWaveHdr->dwFlags & WHDR_INQUEUE)
1150 return WAVERR_STILLPLAYING;
1152 lpWaveHdr->dwFlags &= ~WHDR_PREPARED;
1153 lpWaveHdr->dwFlags |= WHDR_DONE;
1155 return MMSYSERR_NOERROR;
1158 /**************************************************************************
1159 * wodPause [internal]
1161 static DWORD wodPause(WORD wDevID)
1163 TRACE("(%u);!\n", wDevID);
1165 if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].play_stream ==
1168 WARN("bad device ID !\n");
1169 return MMSYSERR_BADDEVICEID;
1172 TRACE("imhere[3-PAUSING]\n");
1173 ARTS_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_PAUSING, 0, TRUE);
1175 return MMSYSERR_NOERROR;
1178 /**************************************************************************
1179 * wodRestart [internal]
1181 static DWORD wodRestart(WORD wDevID)
1183 TRACE("(%u);\n", wDevID);
1185 if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].play_stream ==
1188 WARN("bad device ID !\n");
1189 return MMSYSERR_BADDEVICEID;
1192 if (WOutDev[wDevID].state == WINE_WS_PAUSED) {
1193 TRACE("imhere[3-RESTARTING]\n");
1194 ARTS_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_RESTARTING, 0, TRUE);
1197 /* FIXME: is NotifyClient with WOM_DONE right ? (Comet Busters 1.3.3 needs this notification) */
1198 /* FIXME: Myst crashes with this ... hmm -MM
1199 return wodNotifyClient(wwo, WOM_DONE, 0L, 0L);
1202 return MMSYSERR_NOERROR;
1205 /**************************************************************************
1206 * wodReset [internal]
1208 static DWORD wodReset(WORD wDevID)
1210 TRACE("(%u);\n", wDevID);
1212 if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].play_stream ==
1215 WARN("bad device ID !\n");
1216 return MMSYSERR_BADDEVICEID;
1219 TRACE("imhere[3-RESET]\n");
1220 ARTS_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_RESETTING, 0, TRUE);
1222 return MMSYSERR_NOERROR;
1225 /**************************************************************************
1226 * wodGetPosition [internal]
1228 static DWORD wodGetPosition(WORD wDevID, LPMMTIME lpTime, DWORD uSize)
1234 TRACE("(%u, %p, %lu);\n", wDevID, lpTime, uSize);
1236 if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].play_stream ==
1239 WARN("bad device ID !\n");
1240 return MMSYSERR_BADDEVICEID;
1243 if (lpTime == NULL) return MMSYSERR_INVALPARAM;
1245 wwo = &WOutDev[wDevID];
1246 ARTS_AddRingMessage(&wwo->msgRing, WINE_WM_UPDATE, 0, TRUE);
1247 val = wwo->dwPlayedTotal;
1249 TRACE("wType=%04X wBitsPerSample=%u nSamplesPerSec=%lu nChannels=%u nAvgBytesPerSec=%lu\n",
1250 lpTime->wType, wwo->format.wBitsPerSample,
1251 wwo->format.wf.nSamplesPerSec, wwo->format.wf.nChannels,
1252 wwo->format.wf.nAvgBytesPerSec);
1253 TRACE("dwPlayedTotal=%lu\n", val);
1255 switch (lpTime->wType) {
1258 TRACE("TIME_BYTES=%lu\n", lpTime->u.cb);
1261 lpTime->u.sample = val * 8 / wwo->format.wBitsPerSample /wwo->format.wf.nChannels;
1262 TRACE("TIME_SAMPLES=%lu\n", lpTime->u.sample);
1265 time = val / (wwo->format.wf.nAvgBytesPerSec / 1000);
1266 lpTime->u.smpte.hour = time / 108000;
1267 time -= lpTime->u.smpte.hour * 108000;
1268 lpTime->u.smpte.min = time / 1800;
1269 time -= lpTime->u.smpte.min * 1800;
1270 lpTime->u.smpte.sec = time / 30;
1271 time -= lpTime->u.smpte.sec * 30;
1272 lpTime->u.smpte.frame = time;
1273 lpTime->u.smpte.fps = 30;
1274 TRACE("TIME_SMPTE=%02u:%02u:%02u:%02u\n",
1275 lpTime->u.smpte.hour, lpTime->u.smpte.min,
1276 lpTime->u.smpte.sec, lpTime->u.smpte.frame);
1279 FIXME("Format %d not supported ! use TIME_MS !\n", lpTime->wType);
1280 lpTime->wType = TIME_MS;
1282 lpTime->u.ms = val / (wwo->format.wf.nAvgBytesPerSec / 1000);
1283 TRACE("TIME_MS=%lu\n", lpTime->u.ms);
1286 return MMSYSERR_NOERROR;
1289 /**************************************************************************
1290 * wodBreakLoop [internal]
1292 static DWORD wodBreakLoop(WORD wDevID)
1294 TRACE("(%u);\n", wDevID);
1296 if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].play_stream ==
1299 WARN("bad device ID !\n");
1300 return MMSYSERR_BADDEVICEID;
1302 ARTS_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_BREAKLOOP, 0, TRUE);
1303 return MMSYSERR_NOERROR;
1306 /**************************************************************************
1307 * wodGetVolume [internal]
1309 static DWORD wodGetVolume(WORD wDevID, LPDWORD lpdwVol)
1313 left = WOutDev[wDevID].volume_left;
1314 right = WOutDev[wDevID].volume_right;
1316 TRACE("(%u, %p);\n", wDevID, lpdwVol);
1318 *lpdwVol = ((left * 0xFFFFl) / 100) + (((right * 0xFFFFl) / 100) <<
1321 return MMSYSERR_NOERROR;
1324 /**************************************************************************
1325 * wodSetVolume [internal]
1327 static DWORD wodSetVolume(WORD wDevID, DWORD dwParam)
1331 left = (LOWORD(dwParam) * 100) / 0xFFFFl;
1332 right = (HIWORD(dwParam) * 100) / 0xFFFFl;
1334 TRACE("(%u, %08lX);\n", wDevID, dwParam);
1336 WOutDev[wDevID].volume_left = left;
1337 WOutDev[wDevID].volume_right = right;
1339 return MMSYSERR_NOERROR;
1342 /**************************************************************************
1343 * wodGetNumDevs [internal]
1345 static DWORD wodGetNumDevs(void)
1347 return MAX_WAVEOUTDRV;
1350 /**************************************************************************
1351 * wodMessage (WINEARTS.@)
1353 DWORD WINAPI ARTS_wodMessage(UINT wDevID, UINT wMsg, DWORD dwUser,
1354 DWORD dwParam1, DWORD dwParam2)
1356 TRACE("(%u, %04X, %08lX, %08lX, %08lX);\n",
1357 wDevID, wMsg, dwUser, dwParam1, dwParam2);
1364 /* FIXME: Pretend this is supported */
1366 case WODM_OPEN: return wodOpen (wDevID, (LPWAVEOPENDESC)dwParam1, dwParam2);
1367 case WODM_CLOSE: return wodClose (wDevID);
1368 case WODM_WRITE: return wodWrite (wDevID, (LPWAVEHDR)dwParam1, dwParam2);
1369 case WODM_PAUSE: return wodPause (wDevID);
1370 case WODM_GETPOS: return wodGetPosition (wDevID, (LPMMTIME)dwParam1, dwParam2);
1371 case WODM_BREAKLOOP: return wodBreakLoop (wDevID);
1372 case WODM_PREPARE: return wodPrepare (wDevID, (LPWAVEHDR)dwParam1, dwParam2);
1373 case WODM_UNPREPARE: return wodUnprepare (wDevID, (LPWAVEHDR)dwParam1, dwParam2);
1374 case WODM_GETDEVCAPS: return wodGetDevCaps (wDevID, (LPWAVEOUTCAPSA)dwParam1, dwParam2);
1375 case WODM_GETNUMDEVS: return wodGetNumDevs ();
1376 case WODM_GETPITCH: return MMSYSERR_NOTSUPPORTED;
1377 case WODM_SETPITCH: return MMSYSERR_NOTSUPPORTED;
1378 case WODM_GETPLAYBACKRATE: return MMSYSERR_NOTSUPPORTED;
1379 case WODM_SETPLAYBACKRATE: return MMSYSERR_NOTSUPPORTED;
1380 case WODM_GETVOLUME: return wodGetVolume (wDevID, (LPDWORD)dwParam1);
1381 case WODM_SETVOLUME: return wodSetVolume (wDevID, dwParam1);
1382 case WODM_RESTART: return wodRestart (wDevID);
1383 case WODM_RESET: return wodReset (wDevID);
1385 case DRV_QUERYDSOUNDIFACE: return wodDsCreate(wDevID, (PIDSDRIVER*)dwParam1);
1387 FIXME("unknown message %d!\n", wMsg);
1389 return MMSYSERR_NOTSUPPORTED;
1392 /*======================================================================*
1393 * Low level DSOUND implementation *
1394 *======================================================================*/
1395 static DWORD wodDsCreate(UINT wDevID, PIDSDRIVER* drv)
1397 /* we can't perform memory mapping as we don't have a file stream
1398 interface with arts like we do with oss */
1399 MESSAGE("This sound card's driver does not support direct access\n");
1400 MESSAGE("The (slower) DirectSound HEL mode will be used instead.\n");
1401 return MMSYSERR_NOTSUPPORTED;
1404 #else /* !HAVE_ARTS */
1406 /**************************************************************************
1407 * wodMessage (WINEARTS.@)
1409 DWORD WINAPI ARTS_wodMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
1410 DWORD dwParam1, DWORD dwParam2)
1412 FIXME("(%u, %04X, %08lX, %08lX, %08lX):stub\n", wDevID, wMsg, dwUser, dwParam1, dwParam2);
1413 return MMSYSERR_NOTENABLED;
1416 #endif /* HAVE_ARTS */