Improve winealsa dsound driver by accessing sound driver's buffer
[wine] / dlls / winmm / winealsa / audio.c
1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
2 /*
3  * Sample Wine Driver for Advanced Linux Sound System (ALSA)
4  *      Based on version <final> of the ALSA API
5  *
6  * Copyright    2002 Eric Pouech
7  *              2002 Marco Pietrobono
8  *              2003 Christian Costa : WaveIn support
9  *
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.
14  *
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.
19  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  */
24
25 /* unless someone makes a wineserver kernel module, Unix pipes are faster than win32 events */
26 #define USE_PIPE_SYNC
27
28 #include "config.h"
29 #include "wine/port.h"
30
31 #include <stdlib.h>
32 #include <stdarg.h>
33 #include <stdio.h>
34 #include <string.h>
35 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif
38 #include <errno.h>
39 #include <limits.h>
40 #include <fcntl.h>
41 #ifdef HAVE_SYS_IOCTL_H
42 # include <sys/ioctl.h>
43 #endif
44 #ifdef HAVE_SYS_MMAN_H
45 # include <sys/mman.h>
46 #endif
47 #include "windef.h"
48 #include "winbase.h"
49 #include "wingdi.h"
50 #include "winerror.h"
51 #include "winuser.h"
52 #include "winnls.h"
53 #include "winreg.h"
54 #include "mmddk.h"
55 #include "mmreg.h"
56 #include "dsound.h"
57 #include "dsdriver.h"
58 #include "ks.h"
59 #include "ksguid.h"
60 #include "ksmedia.h"
61 #define ALSA_PCM_NEW_HW_PARAMS_API
62 #define ALSA_PCM_NEW_SW_PARAMS_API
63 #include "alsa.h"
64 #include "wine/library.h"
65 #include "wine/unicode.h"
66 #include "wine/debug.h"
67
68 WINE_DEFAULT_DEBUG_CHANNEL(wave);
69
70
71 #ifdef HAVE_ALSA
72
73 /* internal ALSALIB functions */
74 snd_pcm_uframes_t _snd_pcm_mmap_hw_ptr(snd_pcm_t *pcm);
75
76
77 #define MAX_WAVEOUTDRV  (6)
78 #define MAX_WAVEINDRV   (6)
79
80 /* state diagram for waveOut writing:
81  *
82  * +---------+-------------+---------------+---------------------------------+
83  * |  state  |  function   |     event     |            new state            |
84  * +---------+-------------+---------------+---------------------------------+
85  * |         | open()      |               | STOPPED                         |
86  * | PAUSED  | write()     |               | PAUSED                          |
87  * | STOPPED | write()     | <thrd create> | PLAYING                         |
88  * | PLAYING | write()     | HEADER        | PLAYING                         |
89  * | (other) | write()     | <error>       |                                 |
90  * | (any)   | pause()     | PAUSING       | PAUSED                          |
91  * | PAUSED  | restart()   | RESTARTING    | PLAYING (if no thrd => STOPPED) |
92  * | (any)   | reset()     | RESETTING     | STOPPED                         |
93  * | (any)   | close()     | CLOSING       | CLOSED                          |
94  * +---------+-------------+---------------+---------------------------------+
95  */
96
97 /* states of the playing device */
98 #define WINE_WS_PLAYING         0
99 #define WINE_WS_PAUSED          1
100 #define WINE_WS_STOPPED         2
101 #define WINE_WS_CLOSED          3
102
103 /* events to be send to device */
104 enum win_wm_message {
105     WINE_WM_PAUSING = WM_USER + 1, WINE_WM_RESTARTING, WINE_WM_RESETTING, WINE_WM_HEADER,
106     WINE_WM_UPDATE, WINE_WM_BREAKLOOP, WINE_WM_CLOSING, WINE_WM_STARTING, WINE_WM_STOPPING
107 };
108
109 #ifdef USE_PIPE_SYNC
110 #define SIGNAL_OMR(omr) do { int x = 0; write((omr)->msg_pipe[1], &x, sizeof(x)); } while (0)
111 #define CLEAR_OMR(omr) do { int x = 0; read((omr)->msg_pipe[0], &x, sizeof(x)); } while (0)
112 #define RESET_OMR(omr) do { } while (0)
113 #define WAIT_OMR(omr, sleep) \
114   do { struct pollfd pfd; pfd.fd = (omr)->msg_pipe[0]; \
115        pfd.events = POLLIN; poll(&pfd, 1, sleep); } while (0)
116 #else
117 #define SIGNAL_OMR(omr) do { SetEvent((omr)->msg_event); } while (0)
118 #define CLEAR_OMR(omr) do { } while (0)
119 #define RESET_OMR(omr) do { ResetEvent((omr)->msg_event); } while (0)
120 #define WAIT_OMR(omr, sleep) \
121   do { WaitForSingleObject((omr)->msg_event, sleep); } while (0)
122 #endif
123
124 typedef struct {
125     enum win_wm_message         msg;    /* message identifier */
126     DWORD                       param;  /* parameter for this message */
127     HANDLE                      hEvent; /* if message is synchronous, handle of event for synchro */
128 } ALSA_MSG;
129
130 /* implement an in-process message ring for better performance
131  * (compared to passing thru the server)
132  * this ring will be used by the input (resp output) record (resp playback) routine
133  */
134 #define ALSA_RING_BUFFER_INCREMENT      64
135 typedef struct {
136     ALSA_MSG                    * messages;
137     int                         ring_buffer_size;
138     int                         msg_tosave;
139     int                         msg_toget;
140 #ifdef USE_PIPE_SYNC
141     int                         msg_pipe[2];
142 #else
143     HANDLE                      msg_event;
144 #endif
145     CRITICAL_SECTION            msg_crst;
146 } ALSA_MSG_RING;
147
148 typedef struct {
149     /* Windows information */
150     volatile int                state;                  /* one of the WINE_WS_ manifest constants */
151     WAVEOPENDESC                waveDesc;
152     WORD                        wFlags;
153     WAVEFORMATPCMEX             format;
154     WAVEOUTCAPSW                caps;
155
156     /* ALSA information (ALSA 0.9/1.x uses two different devices for playback/capture) */
157     char*                       device;
158     char                        interface_name[64];
159     snd_pcm_t*                  handle;                 /* handle to ALSA playback device */
160     snd_pcm_hw_params_t *       hw_params;              /* ALSA Hw params */
161
162     snd_hctl_t *                hctl;                    /* control handle for the playback volume */
163
164     snd_pcm_sframes_t           (*write)(snd_pcm_t *, const void *, snd_pcm_uframes_t );
165
166     struct pollfd               *ufds;
167     int                         count;
168
169     DWORD                       dwBufferSize;           /* size of whole ALSA buffer in bytes */
170     LPWAVEHDR                   lpQueuePtr;             /* start of queued WAVEHDRs (waiting to be notified) */
171     LPWAVEHDR                   lpPlayPtr;              /* start of not yet fully played buffers */
172     DWORD                       dwPartialOffset;        /* Offset of not yet written bytes in lpPlayPtr */
173
174     LPWAVEHDR                   lpLoopPtr;              /* pointer of first buffer in loop, if any */
175     DWORD                       dwLoops;                /* private copy of loop counter */
176
177     DWORD                       dwPlayedTotal;          /* number of bytes actually played since opening */
178     DWORD                       dwWrittenTotal;         /* number of bytes written to ALSA buffer since opening */
179
180     /* synchronization stuff */
181     HANDLE                      hStartUpEvent;
182     HANDLE                      hThread;
183     DWORD                       dwThreadID;
184     ALSA_MSG_RING               msgRing;
185
186     /* DirectSound stuff */
187     DSDRIVERDESC                ds_desc;
188     DSDRIVERCAPS                ds_caps;
189 } WINE_WAVEOUT;
190
191 typedef struct {
192     /* Windows information */
193     volatile int                state;                  /* one of the WINE_WS_ manifest constants */
194     WAVEOPENDESC                waveDesc;
195     WORD                        wFlags;
196     WAVEFORMATPCMEX             format;
197     WAVEINCAPSW                 caps;
198     DWORD                       dwSupport;
199
200     /* ALSA information (ALSA 0.9/1.x uses two different devices for playback/capture) */
201     char*                       device;
202     char                        interface_name[64];
203     snd_pcm_t*                  handle;                 /* handle to ALSA capture device */
204     snd_pcm_hw_params_t *       hw_params;              /* ALSA Hw params */
205
206     snd_pcm_sframes_t           (*read)(snd_pcm_t *, void *, snd_pcm_uframes_t );
207
208     struct pollfd               *ufds;
209     int                         count;
210
211     DWORD                       dwPeriodSize;           /* size of OSS buffer period */
212     DWORD                       dwBufferSize;           /* size of whole ALSA buffer in bytes */
213     LPWAVEHDR                   lpQueuePtr;             /* start of queued WAVEHDRs (waiting to be notified) */
214     LPWAVEHDR                   lpPlayPtr;              /* start of not yet fully played buffers */
215
216     LPWAVEHDR                   lpLoopPtr;              /* pointer of first buffer in loop, if any */
217     DWORD                       dwLoops;                /* private copy of loop counter */
218
219     /*DWORD                     dwPlayedTotal; */
220     DWORD                       dwTotalRecorded;
221
222     /* synchronization stuff */
223     HANDLE                      hStartUpEvent;
224     HANDLE                      hThread;
225     DWORD                       dwThreadID;
226     ALSA_MSG_RING               msgRing;
227
228     /* DirectSound stuff */
229     DSDRIVERDESC                ds_desc;
230     DSCDRIVERCAPS               ds_caps;
231 } WINE_WAVEIN;
232
233 static WINE_WAVEOUT     WOutDev   [MAX_WAVEOUTDRV];
234 static DWORD            ALSA_WodNumDevs;
235 static WINE_WAVEIN      WInDev   [MAX_WAVEINDRV];
236 static DWORD            ALSA_WidNumDevs;
237
238 static DWORD wodDsCreate(UINT wDevID, PIDSDRIVER* drv);
239 static DWORD wodDsDesc(UINT wDevID, PDSDRIVERDESC desc);
240
241 /* These strings used only for tracing */
242 static const char * getCmdString(enum win_wm_message msg)
243 {
244     static char unknown[32];
245 #define MSG_TO_STR(x) case x: return #x
246     switch(msg) {
247     MSG_TO_STR(WINE_WM_PAUSING);
248     MSG_TO_STR(WINE_WM_RESTARTING);
249     MSG_TO_STR(WINE_WM_RESETTING);
250     MSG_TO_STR(WINE_WM_HEADER);
251     MSG_TO_STR(WINE_WM_UPDATE);
252     MSG_TO_STR(WINE_WM_BREAKLOOP);
253     MSG_TO_STR(WINE_WM_CLOSING);
254     MSG_TO_STR(WINE_WM_STARTING);
255     MSG_TO_STR(WINE_WM_STOPPING);
256     }
257 #undef MSG_TO_STR
258     sprintf(unknown, "UNKNOWN(0x%08x)", msg);
259     return unknown;
260 }
261
262 static const char * getMessage(UINT msg)
263 {
264     static char unknown[32];
265 #define MSG_TO_STR(x) case x: return #x
266     switch(msg) {
267     MSG_TO_STR(DRVM_INIT);
268     MSG_TO_STR(DRVM_EXIT);
269     MSG_TO_STR(DRVM_ENABLE);
270     MSG_TO_STR(DRVM_DISABLE);
271     MSG_TO_STR(WIDM_OPEN);
272     MSG_TO_STR(WIDM_CLOSE);
273     MSG_TO_STR(WIDM_ADDBUFFER);
274     MSG_TO_STR(WIDM_PREPARE);
275     MSG_TO_STR(WIDM_UNPREPARE);
276     MSG_TO_STR(WIDM_GETDEVCAPS);
277     MSG_TO_STR(WIDM_GETNUMDEVS);
278     MSG_TO_STR(WIDM_GETPOS);
279     MSG_TO_STR(WIDM_RESET);
280     MSG_TO_STR(WIDM_START);
281     MSG_TO_STR(WIDM_STOP);
282     MSG_TO_STR(WODM_OPEN);
283     MSG_TO_STR(WODM_CLOSE);
284     MSG_TO_STR(WODM_WRITE);
285     MSG_TO_STR(WODM_PAUSE);
286     MSG_TO_STR(WODM_GETPOS);
287     MSG_TO_STR(WODM_BREAKLOOP);
288     MSG_TO_STR(WODM_PREPARE);
289     MSG_TO_STR(WODM_UNPREPARE);
290     MSG_TO_STR(WODM_GETDEVCAPS);
291     MSG_TO_STR(WODM_GETNUMDEVS);
292     MSG_TO_STR(WODM_GETPITCH);
293     MSG_TO_STR(WODM_SETPITCH);
294     MSG_TO_STR(WODM_GETPLAYBACKRATE);
295     MSG_TO_STR(WODM_SETPLAYBACKRATE);
296     MSG_TO_STR(WODM_GETVOLUME);
297     MSG_TO_STR(WODM_SETVOLUME);
298     MSG_TO_STR(WODM_RESTART);
299     MSG_TO_STR(WODM_RESET);
300     MSG_TO_STR(DRV_QUERYDEVICEINTERFACESIZE);
301     MSG_TO_STR(DRV_QUERYDEVICEINTERFACE);
302     MSG_TO_STR(DRV_QUERYDSOUNDIFACE);
303     MSG_TO_STR(DRV_QUERYDSOUNDDESC);
304     }
305 #undef MSG_TO_STR
306     sprintf(unknown, "UNKNOWN(0x%04x)", msg);
307     return unknown;
308 }
309
310 static const char * getFormat(WORD wFormatTag)
311 {
312     static char unknown[32];
313 #define FMT_TO_STR(x) case x: return #x
314     switch(wFormatTag) {
315     FMT_TO_STR(WAVE_FORMAT_PCM);
316     FMT_TO_STR(WAVE_FORMAT_EXTENSIBLE);
317     FMT_TO_STR(WAVE_FORMAT_MULAW);
318     FMT_TO_STR(WAVE_FORMAT_ALAW);
319     FMT_TO_STR(WAVE_FORMAT_ADPCM);
320     }
321 #undef FMT_TO_STR
322     sprintf(unknown, "UNKNOWN(0x%04x)", wFormatTag);
323     return unknown;
324 }
325
326 static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position,
327                              WAVEFORMATPCMEX* format)
328 {
329     TRACE("wType=%04X wBitsPerSample=%u nSamplesPerSec=%lu nChannels=%u nAvgBytesPerSec=%lu\n",
330           lpTime->wType, format->Format.wBitsPerSample, format->Format.nSamplesPerSec,
331           format->Format.nChannels, format->Format.nAvgBytesPerSec);
332     TRACE("Position in bytes=%lu\n", position);
333
334     switch (lpTime->wType) {
335     case TIME_SAMPLES:
336         lpTime->u.sample = position / (format->Format.wBitsPerSample / 8 * format->Format.nChannels);
337         TRACE("TIME_SAMPLES=%lu\n", lpTime->u.sample);
338         break;
339     case TIME_MS:
340         lpTime->u.ms = 1000.0 * position / (format->Format.wBitsPerSample / 8 * format->Format.nChannels * format->Format.nSamplesPerSec);
341         TRACE("TIME_MS=%lu\n", lpTime->u.ms);
342         break;
343     case TIME_SMPTE:
344         lpTime->u.smpte.fps = 30;
345         position = position / (format->Format.wBitsPerSample / 8 * format->Format.nChannels);
346         position += (format->Format.nSamplesPerSec / lpTime->u.smpte.fps) - 1; /* round up */
347         lpTime->u.smpte.sec = position / format->Format.nSamplesPerSec;
348         position -= lpTime->u.smpte.sec * format->Format.nSamplesPerSec;
349         lpTime->u.smpte.min = lpTime->u.smpte.sec / 60;
350         lpTime->u.smpte.sec -= 60 * lpTime->u.smpte.min;
351         lpTime->u.smpte.hour = lpTime->u.smpte.min / 60;
352         lpTime->u.smpte.min -= 60 * lpTime->u.smpte.hour;
353         lpTime->u.smpte.fps = 30;
354         lpTime->u.smpte.frame = position * lpTime->u.smpte.fps / format->Format.nSamplesPerSec;
355         TRACE("TIME_SMPTE=%02u:%02u:%02u:%02u\n",
356               lpTime->u.smpte.hour, lpTime->u.smpte.min,
357               lpTime->u.smpte.sec, lpTime->u.smpte.frame);
358         break;
359     default:
360         WARN("Format %d not supported, using TIME_BYTES !\n", lpTime->wType);
361         lpTime->wType = TIME_BYTES;
362         /* fall through */
363     case TIME_BYTES:
364         lpTime->u.cb = position;
365         TRACE("TIME_BYTES=%lu\n", lpTime->u.cb);
366         break;
367     }
368     return MMSYSERR_NOERROR;
369 }
370
371 static BOOL supportedFormat(LPWAVEFORMATEX wf)
372 {
373     TRACE("(%p)\n",wf);
374
375     if (wf->nSamplesPerSec<DSBFREQUENCY_MIN||wf->nSamplesPerSec>DSBFREQUENCY_MAX)
376         return FALSE;
377
378     if (wf->wFormatTag == WAVE_FORMAT_PCM) {
379         if (wf->nChannels==1||wf->nChannels==2) {
380             if (wf->wBitsPerSample==8||wf->wBitsPerSample==16)
381                 return TRUE;
382         }
383     } else if (wf->wFormatTag == WAVE_FORMAT_EXTENSIBLE) {
384         WAVEFORMATEXTENSIBLE    * wfex = (WAVEFORMATEXTENSIBLE *)wf;
385
386         if (wf->cbSize == 22 &&
387             (IsEqualGUID(&wfex->SubFormat, &KSDATAFORMAT_SUBTYPE_PCM) ||
388              IsEqualGUID(&wfex->SubFormat, &KSDATAFORMAT_SUBTYPE_IEEE_FLOAT))) {
389             if (wf->nChannels>=1 && wf->nChannels<=6) {
390                 if (wf->wBitsPerSample==wfex->Samples.wValidBitsPerSample) {
391                     if (wf->wBitsPerSample==8||wf->wBitsPerSample==16||
392                         wf->wBitsPerSample==24||wf->wBitsPerSample==32) {
393                         return TRUE;
394                     }
395                 } else
396                     WARN("wBitsPerSample != wValidBitsPerSample not supported yet\n");
397             }
398         } else
399             WARN("only KSDATAFORMAT_SUBTYPE_PCM and KSDATAFORMAT_SUBTYPE_IEEE_FLOAT "
400                  "supported\n");
401     } else if (wf->wFormatTag == WAVE_FORMAT_MULAW || wf->wFormatTag == WAVE_FORMAT_ALAW) {
402         if (wf->wBitsPerSample==8)
403             return TRUE;
404         else
405             ERR("WAVE_FORMAT_MULAW and WAVE_FORMAT_ALAW wBitsPerSample must = 8\n");
406
407     } else if (wf->wFormatTag == WAVE_FORMAT_ADPCM) {
408         if (wf->wBitsPerSample==4)
409             return TRUE;
410         else
411             ERR("WAVE_FORMAT_ADPCM wBitsPerSample must = 4\n");
412     } else
413         WARN("only WAVE_FORMAT_PCM and WAVE_FORMAT_EXTENSIBLE supported\n");
414
415     return FALSE;
416 }
417
418 static void copy_format(LPWAVEFORMATEX wf1, LPWAVEFORMATPCMEX wf2)
419 {
420     ZeroMemory(wf2, sizeof(wf2));
421     if (wf1->wFormatTag == WAVE_FORMAT_PCM)
422         memcpy(wf2, wf1, sizeof(PCMWAVEFORMAT));
423     else if (wf1->wFormatTag == WAVE_FORMAT_EXTENSIBLE)
424         memcpy(wf2, wf1, sizeof(WAVEFORMATPCMEX));
425     else
426         memcpy(wf2, wf1, sizeof(WAVEFORMATEX) + wf1->cbSize);
427 }
428
429 /*======================================================================*
430  *                  Low level WAVE implementation                       *
431  *======================================================================*/
432
433 /**************************************************************************
434  *                      ALSA_CheckSetVolume             [internal]
435  *
436  *  Helper function for Alsa volume queries.  This tries to simplify 
437  * the process of managing the volume.  All parameters are optional
438  * (pass NULL to ignore or not use).
439  *  Return values are MMSYSERR_NOERROR on success, or !0 on failure;
440  * error codes are normalized into the possible documented return
441  * values from waveOutGetVolume.
442  */
443 static int ALSA_CheckSetVolume(snd_hctl_t *hctl, int *out_left, int *out_right, 
444             int *out_min, int *out_max, int *out_step,
445             int *new_left, int *new_right)
446 {
447     int rc = MMSYSERR_NOERROR;
448     int value_count = 0;
449     snd_hctl_elem_t *           elem = NULL;
450     snd_ctl_elem_info_t *       eleminfop = NULL;
451     snd_ctl_elem_value_t *      elemvaluep = NULL;
452     snd_ctl_elem_id_t *         elemidp = NULL;
453
454
455 #define EXIT_ON_ERROR(f,txt,exitcode) do \
456 { \
457     int err; \
458     if ( (err = (f) ) < 0) \
459     { \
460         ERR(txt " failed: %s\n", snd_strerror(err)); \
461         rc = exitcode; \
462         goto out; \
463     } \
464 } while(0)
465
466     if (! hctl)
467         return MMSYSERR_NOTSUPPORTED;
468
469     /* Allocate areas to return information about the volume */
470     EXIT_ON_ERROR(snd_ctl_elem_id_malloc(&elemidp), "snd_ctl_elem_id_malloc", MMSYSERR_NOMEM);
471     EXIT_ON_ERROR(snd_ctl_elem_value_malloc (&elemvaluep), "snd_ctl_elem_value_malloc", MMSYSERR_NOMEM);
472     EXIT_ON_ERROR(snd_ctl_elem_info_malloc (&eleminfop), "snd_ctl_elem_info_malloc", MMSYSERR_NOMEM);
473     snd_ctl_elem_id_clear(elemidp);
474     snd_ctl_elem_value_clear(elemvaluep);
475     snd_ctl_elem_info_clear(eleminfop);
476
477     /* Setup and find an element id that exactly matches the characteristic we want
478     ** FIXME:  It is probably short sighted to hard code and fixate on PCM Playback Volume */
479     snd_ctl_elem_id_set_name(elemidp, "PCM Playback Volume");
480     snd_ctl_elem_id_set_interface(elemidp, SND_CTL_ELEM_IFACE_MIXER);
481     elem = snd_hctl_find_elem(hctl, elemidp);
482     if (elem)
483     {
484         /* Read and return volume information */
485         EXIT_ON_ERROR(snd_hctl_elem_info(elem, eleminfop), "snd_hctl_elem_info", MMSYSERR_NOTSUPPORTED);
486         value_count = snd_ctl_elem_info_get_count(eleminfop);
487         if (out_min || out_max || out_step)
488         {
489             if (!snd_ctl_elem_info_is_readable(eleminfop))
490             {
491                 ERR("snd_ctl_elem_info_is_readable returned false; cannot return info\n");
492                 rc = MMSYSERR_NOTSUPPORTED;
493                 goto out;
494             }
495
496             if (out_min)
497                 *out_min = snd_ctl_elem_info_get_min(eleminfop);
498
499             if (out_max)
500                 *out_max = snd_ctl_elem_info_get_max(eleminfop);
501
502             if (out_step)
503                 *out_step = snd_ctl_elem_info_get_step(eleminfop);
504         }
505
506         if (out_left || out_right)
507         {
508             EXIT_ON_ERROR(snd_hctl_elem_read(elem, elemvaluep), "snd_hctl_elem_read", MMSYSERR_NOTSUPPORTED);
509
510             if (out_left)
511                 *out_left = snd_ctl_elem_value_get_integer(elemvaluep, 0);
512
513             if (out_right)
514             {
515                 if (value_count == 1)
516                     *out_right = snd_ctl_elem_value_get_integer(elemvaluep, 0);
517                 else if (value_count == 2)
518                     *out_right = snd_ctl_elem_value_get_integer(elemvaluep, 1);
519                 else
520                 {
521                     ERR("Unexpected value count %d from snd_ctl_elem_info_get_count while getting volume info\n", value_count);
522                     rc = -1;
523                     goto out;
524                 }
525             }
526         }
527
528         /* Set the volume */
529         if (new_left || new_right)
530         {
531             EXIT_ON_ERROR(snd_hctl_elem_read(elem, elemvaluep), "snd_hctl_elem_read", MMSYSERR_NOTSUPPORTED);
532             if (new_left)
533                 snd_ctl_elem_value_set_integer(elemvaluep, 0, *new_left);
534             if (new_right)
535             {
536                 if (value_count == 1)
537                     snd_ctl_elem_value_set_integer(elemvaluep, 0, *new_right);
538                 else if (value_count == 2)
539                     snd_ctl_elem_value_set_integer(elemvaluep, 1, *new_right);
540                 else
541                 {
542                     ERR("Unexpected value count %d from snd_ctl_elem_info_get_count while setting volume info\n", value_count);
543                     rc = -1;
544                     goto out;
545                 }
546             }
547
548             EXIT_ON_ERROR(snd_hctl_elem_write(elem, elemvaluep), "snd_hctl_elem_write", MMSYSERR_NOTSUPPORTED);
549         }
550     }
551     else
552     {
553         ERR("Could not find 'PCM Playback Volume' element\n");
554         rc = MMSYSERR_NOTSUPPORTED;
555     }
556
557
558 #undef EXIT_ON_ERROR
559
560 out:
561
562     if (elemvaluep)
563         snd_ctl_elem_value_free(elemvaluep);
564     if (eleminfop)
565         snd_ctl_elem_info_free(eleminfop);
566     if (elemidp)
567         snd_ctl_elem_id_free(elemidp);
568
569     return rc;
570 }
571
572
573 /**************************************************************************
574  *                      ALSA_XRUNRecovery               [internal]
575  *
576  * used to recovery from XRUN errors (buffer underflow/overflow)
577  */
578 static int ALSA_XRUNRecovery(WINE_WAVEOUT * wwo, int err)
579 {
580     if (err == -EPIPE) {    /* under-run */
581         err = snd_pcm_prepare(wwo->handle);
582         if (err < 0)
583              ERR( "underrun recovery failed. prepare failed: %s\n", snd_strerror(err));
584         return 0;
585     } else if (err == -ESTRPIPE) {
586         while ((err = snd_pcm_resume(wwo->handle)) == -EAGAIN)
587             sleep(1);       /* wait until the suspend flag is released */
588         if (err < 0) {
589             err = snd_pcm_prepare(wwo->handle);
590             if (err < 0)
591                 ERR("recovery from suspend failed, prepare failed: %s\n", snd_strerror(err));
592         }
593         return 0;
594     }
595     return err;
596 }
597
598 /**************************************************************************
599  *                      ALSA_TraceParameters            [internal]
600  *
601  * used to trace format changes, hw and sw parameters
602  */
603 static void ALSA_TraceParameters(snd_pcm_hw_params_t * hw_params, snd_pcm_sw_params_t * sw, int full)
604 {
605     int err;
606     snd_pcm_format_t   format;
607     snd_pcm_access_t   access;
608
609     err = snd_pcm_hw_params_get_access(hw_params, &access);
610     err = snd_pcm_hw_params_get_format(hw_params, &format);
611
612 #define X(x) ((x)? "true" : "false")
613     if (full)
614         TRACE("FLAGS: sampleres=%s overrng=%s pause=%s resume=%s syncstart=%s batch=%s block=%s double=%s "
615               "halfd=%s joint=%s \n",
616               X(snd_pcm_hw_params_can_mmap_sample_resolution(hw_params)),
617               X(snd_pcm_hw_params_can_overrange(hw_params)),
618               X(snd_pcm_hw_params_can_pause(hw_params)),
619               X(snd_pcm_hw_params_can_resume(hw_params)),
620               X(snd_pcm_hw_params_can_sync_start(hw_params)),
621               X(snd_pcm_hw_params_is_batch(hw_params)),
622               X(snd_pcm_hw_params_is_block_transfer(hw_params)),
623               X(snd_pcm_hw_params_is_double(hw_params)),
624               X(snd_pcm_hw_params_is_half_duplex(hw_params)),
625               X(snd_pcm_hw_params_is_joint_duplex(hw_params)));
626 #undef X
627
628     if (access >= 0)
629         TRACE("access=%s\n", snd_pcm_access_name(access));
630     else
631     {
632         snd_pcm_access_mask_t * acmask;
633         snd_pcm_access_mask_alloca(&acmask);
634         snd_pcm_hw_params_get_access_mask(hw_params, acmask);
635         for ( access = SND_PCM_ACCESS_MMAP_INTERLEAVED; access <= SND_PCM_ACCESS_LAST; access++)
636             if (snd_pcm_access_mask_test(acmask, access))
637                 TRACE("access=%s\n", snd_pcm_access_name(access));
638     }
639
640     if (format >= 0)
641     {
642         TRACE("format=%s\n", snd_pcm_format_name(format));
643
644     }
645     else
646     {
647         snd_pcm_format_mask_t *     fmask;
648
649         snd_pcm_format_mask_alloca(&fmask);
650         snd_pcm_hw_params_get_format_mask(hw_params, fmask);
651         for ( format = SND_PCM_FORMAT_S8; format <= SND_PCM_FORMAT_LAST ; format++)
652             if ( snd_pcm_format_mask_test(fmask, format) )
653                 TRACE("format=%s\n", snd_pcm_format_name(format));
654     }
655
656     do {
657       int err=0;
658       unsigned int val=0;
659       err = snd_pcm_hw_params_get_channels(hw_params, &val); 
660       if (err<0) {
661         unsigned int min = 0;
662         unsigned int max = 0;
663         err = snd_pcm_hw_params_get_channels_min(hw_params, &min), 
664         err = snd_pcm_hw_params_get_channels_max(hw_params, &max); 
665         TRACE("channels_min=%u, channels_min_max=%u\n", min, max);
666       } else {
667         TRACE("channels=%d\n", val);
668       }
669     } while(0);
670     do {
671       int err=0;
672       snd_pcm_uframes_t val=0;
673       err = snd_pcm_hw_params_get_buffer_size(hw_params, &val); 
674       if (err<0) {
675         snd_pcm_uframes_t min = 0;
676         snd_pcm_uframes_t max = 0;
677         err = snd_pcm_hw_params_get_buffer_size_min(hw_params, &min), 
678         err = snd_pcm_hw_params_get_buffer_size_max(hw_params, &max); 
679         TRACE("buffer_size_min=%lu, buffer_size_min_max=%lu\n", min, max);
680       } else {
681         TRACE("buffer_size=%lu\n", val);
682       }
683     } while(0);
684
685 #define X(x) do { \
686 int err=0; \
687 int dir=0; \
688 unsigned int val=0; \
689 err = snd_pcm_hw_params_get_##x(hw_params,&val, &dir); \
690 if (err<0) { \
691   unsigned int min = 0; \
692   unsigned int max = 0; \
693   err = snd_pcm_hw_params_get_##x##_min(hw_params, &min, &dir); \
694   err = snd_pcm_hw_params_get_##x##_max(hw_params, &max, &dir); \
695   TRACE(#x "_min=%u " #x "_max=%u\n", min, max); \
696 } else \
697     TRACE(#x "=%d\n", val); \
698 } while(0)
699
700     X(rate);
701     X(buffer_time);
702     X(periods);
703     do {
704       int err=0;
705       int dir=0;
706       snd_pcm_uframes_t val=0;
707       err = snd_pcm_hw_params_get_period_size(hw_params, &val, &dir); 
708       if (err<0) {
709         snd_pcm_uframes_t min = 0;
710         snd_pcm_uframes_t max = 0;
711         err = snd_pcm_hw_params_get_period_size_min(hw_params, &min, &dir), 
712         err = snd_pcm_hw_params_get_period_size_max(hw_params, &max, &dir); 
713         TRACE("period_size_min=%lu, period_size_min_max=%lu\n", min, max);
714       } else {
715         TRACE("period_size=%lu\n", val);
716       }
717     } while(0);
718
719     X(period_time);
720     X(tick_time);
721 #undef X
722
723     if (!sw)
724         return;
725 }
726
727 /* return a string duplicated on the win32 process heap, free with HeapFree */
728 static char* ALSA_strdup(char *s) {
729     char *result = HeapAlloc(GetProcessHeap(), 0, strlen(s)+1);
730     strcpy(result, s);
731     return result;
732 }
733
734 /******************************************************************
735  *             ALSA_GetDeviceFromReg
736  *
737  * Returns either "plug:hw" or reads the registry so the user can
738  * override the playback/record device used.
739  */
740 static char *ALSA_GetDeviceFromReg(const char *value)
741 {
742     DWORD res;
743     DWORD type;
744     HKEY key = 0;
745     char *result = NULL;
746     DWORD resultSize;
747
748     res = RegOpenKeyExA(HKEY_LOCAL_MACHINE, "Software\\Wine\\Wine\\Config\\ALSA", 0, KEY_QUERY_VALUE, &key);
749     if (res != ERROR_SUCCESS) goto end;
750
751     res = RegQueryValueExA(key, value, NULL, &type, NULL, &resultSize);
752     if (res != ERROR_SUCCESS) goto end;
753
754     if (type != REG_SZ) {
755        ERR("Registry key [HKEY_LOCAL_MACHINE\\Software\\Wine\\Wine\\ALSA\\%s] must be a string\n", value);
756        goto end;
757     }
758
759     result = HeapAlloc(GetProcessHeap(), 0, resultSize);
760     res = RegQueryValueExA(key, value, NULL, NULL, result, &resultSize);
761
762 end:
763     if (!result)
764         result = ALSA_strdup("plug:hw");
765
766     if (key)
767         RegCloseKey(key);
768
769     return result;
770 }
771
772 /******************************************************************
773  *              ALSA_WaveInit
774  *
775  * Initialize internal structures from ALSA information
776  */
777 LONG ALSA_WaveInit(void)
778 {
779     snd_pcm_t*                  h;
780     snd_pcm_info_t *            info;
781     snd_pcm_hw_params_t *       hw_params;
782     unsigned int ratemin=0;
783     unsigned int ratemax=0;
784     unsigned int chmin=0;
785     unsigned int chmax=0;
786     int dir=0;
787     int err=0;
788     WINE_WAVEOUT*               wwo;
789     WINE_WAVEIN*                wwi;
790     int i;
791
792     if (!wine_dlopen("libasound.so.2", RTLD_LAZY|RTLD_GLOBAL, NULL, 0))
793     {
794         ERR("Error: ALSA lib needs to be loaded with flags RTLD_LAZY and RTLD_GLOBAL.\n");
795         return -1;
796     }
797
798     ALSA_WodNumDevs = 0;
799
800     for (i = 0; i < MAX_WAVEOUTDRV; i++)
801     {
802         char device[64];
803         char * regdev;
804         WCHAR nameW[64];
805         snd_pcm_format_mask_t * fmask;
806         snd_pcm_access_mask_t * acmask;
807
808         wwo = &WOutDev[ALSA_WodNumDevs];
809
810         regdev = ALSA_GetDeviceFromReg("PlaybackDevice");
811         sprintf(device, "%s:%d", regdev, i);
812         HeapFree(GetProcessHeap(), 0, regdev);
813         wwo->device = HeapAlloc(GetProcessHeap(), 0, strlen(device));
814         strcpy(wwo->device, device);
815         TRACE("using waveout device \"%s\"\n", wwo->device);
816
817         snprintf(wwo->interface_name, sizeof(wwo->interface_name), "winealsa: %s", wwo->device);
818
819         wwo->caps.wMid = 0x0002;
820         wwo->caps.wPid = 0x0104;
821         wwo->caps.vDriverVersion = 0x0100;
822         wwo->caps.dwFormats = 0x00000000;
823         wwo->caps.dwSupport = 0;
824         strcpy(wwo->ds_desc.szDrvname, "winealsa.drv");
825
826         snd_pcm_info_alloca(&info);
827         snd_pcm_hw_params_alloca(&hw_params);
828
829 #define EXIT_ON_ERROR(f,txt) do { int err; if ( (err = (f) ) < 0) { ERR(txt ": %s\n", snd_strerror(err)); if (h) snd_pcm_close(h); return -1; } } while(0)
830
831         h = NULL;
832         snd_pcm_open(&h, wwo->device, SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
833         if (!h)
834             break;
835
836         EXIT_ON_ERROR( snd_pcm_info(h, info) , "pcm info" );
837
838         TRACE("dev=%d id=%s name=%s subdev=%d subdev_name=%s subdev_avail=%d subdev_num=%d stream=%s subclass=%s \n",
839            snd_pcm_info_get_device(info),
840            snd_pcm_info_get_id(info),
841            snd_pcm_info_get_name(info),
842            snd_pcm_info_get_subdevice(info),
843            snd_pcm_info_get_subdevice_name(info),
844            snd_pcm_info_get_subdevices_avail(info),
845            snd_pcm_info_get_subdevices_count(info),
846            snd_pcm_stream_name(snd_pcm_info_get_stream(info)),
847            (snd_pcm_info_get_subclass(info) == SND_PCM_SUBCLASS_GENERIC_MIX ? "GENERIC MIX": "MULTI MIX"));
848
849         strcpy(wwo->ds_desc.szDesc, snd_pcm_info_get_name(info));
850         MultiByteToWideChar(CP_ACP, 0, wwo->ds_desc.szDesc, -1, nameW, sizeof(nameW)/sizeof(WCHAR));
851         strcpyW(wwo->caps.szPname, nameW);
852         EXIT_ON_ERROR( snd_pcm_hw_params_any(h, hw_params) , "pcm hw params" );
853 #undef EXIT_ON_ERROR
854
855         err = snd_pcm_hw_params_get_rate_min(hw_params, &ratemin, &dir);
856         err = snd_pcm_hw_params_get_rate_max(hw_params, &ratemax, &dir);
857         err = snd_pcm_hw_params_get_channels_min(hw_params, &chmin);
858         err = snd_pcm_hw_params_get_channels_max(hw_params, &chmax);
859         if (TRACE_ON(wave))
860             ALSA_TraceParameters(hw_params, NULL, TRUE);
861
862         snd_pcm_format_mask_alloca(&fmask);
863         snd_pcm_hw_params_get_format_mask(hw_params, fmask);
864
865 #define X(r,v) \
866         if ( (r) >= ratemin && ( (r) <= ratemax || ratemax == -1) ) \
867         { \
868            if (snd_pcm_format_mask_test( fmask, SND_PCM_FORMAT_U8)) \
869            { \
870               if (chmin <= 1 && 1 <= chmax) \
871                   wwo->caps.dwFormats |= WAVE_FORMAT_##v##M08; \
872               if (chmin <= 2 && 2 <= chmax) \
873                   wwo->caps.dwFormats |= WAVE_FORMAT_##v##S08; \
874            } \
875            if (snd_pcm_format_mask_test( fmask, SND_PCM_FORMAT_S16_LE)) \
876            { \
877               if (chmin <= 1 && 1 <= chmax) \
878                   wwo->caps.dwFormats |= WAVE_FORMAT_##v##M16; \
879               if (chmin <= 2 && 2 <= chmax) \
880                   wwo->caps.dwFormats |= WAVE_FORMAT_##v##S16; \
881            } \
882         }
883         X(11025,1);
884         X(22050,2);
885         X(44100,4);
886         X(48000,48);
887         X(96000,96);
888 #undef X
889
890         if (chmin > 1)
891             FIXME("-\n");
892         wwo->caps.wChannels = chmax;
893
894         /* FIXME: always true ? */
895         wwo->caps.dwSupport |= WAVECAPS_SAMPLEACCURATE;
896
897         snd_pcm_access_mask_alloca(&acmask);
898         snd_pcm_hw_params_get_access_mask(hw_params, acmask);
899
900         /* FIXME: NONITERLEAVED and COMPLEX are not supported right now */
901         if ( snd_pcm_access_mask_test( acmask, SND_PCM_ACCESS_MMAP_INTERLEAVED ) )
902             wwo->caps.dwSupport |= WAVECAPS_DIRECTSOUND;
903
904         TRACE("Configured with dwFmts=%08lx dwSupport=%08lx\n",
905               wwo->caps.dwFormats, wwo->caps.dwSupport);
906
907         snd_pcm_close(h);
908
909         /* Get a high level control handle for volume operations */
910         /* FIXME:  This is never freed! (there are other things done in this function similarly not freed) */
911         if (snd_hctl_open(&wwo->hctl, wwo->device, 0) >= 0)
912             snd_hctl_load(wwo->hctl);
913         else
914             wwo->hctl = NULL;
915
916         /* check for volume control support */
917         if (wwo->hctl) {
918             wwo->caps.dwSupport |= WAVECAPS_VOLUME;
919
920             if (chmin <= 2 && 2 <= chmax)
921                 wwo->caps.dwSupport |= WAVECAPS_LRVOLUME;
922         }
923
924         if (wwo->caps.dwFormats & (WAVE_FORMAT_1M08  | WAVE_FORMAT_2M08  |
925                                    WAVE_FORMAT_4M08  | WAVE_FORMAT_48M08 |
926                                    WAVE_FORMAT_96M08 | WAVE_FORMAT_1M16  |
927                                    WAVE_FORMAT_2M16  | WAVE_FORMAT_4M16  |
928                                    WAVE_FORMAT_48M16 | WAVE_FORMAT_96M16) )
929             wwo->ds_caps.dwFlags |= DSCAPS_PRIMARYMONO;
930
931         if (wwo->caps.dwFormats & (WAVE_FORMAT_1S08  | WAVE_FORMAT_2S08  |
932                                    WAVE_FORMAT_4S08  | WAVE_FORMAT_48S08 |
933                                    WAVE_FORMAT_96S08 | WAVE_FORMAT_1S16  |
934                                    WAVE_FORMAT_2S16  | WAVE_FORMAT_4S16  |
935                                    WAVE_FORMAT_48S16 | WAVE_FORMAT_96S16) )
936             wwo->ds_caps.dwFlags |= DSCAPS_PRIMARYSTEREO;
937
938         if (wwo->caps.dwFormats & (WAVE_FORMAT_1M08  | WAVE_FORMAT_2M08  |
939                                    WAVE_FORMAT_4M08  | WAVE_FORMAT_48M08 |
940                                    WAVE_FORMAT_96M08 | WAVE_FORMAT_1S08  |
941                                    WAVE_FORMAT_2S08  | WAVE_FORMAT_4S08  |
942                                    WAVE_FORMAT_48S08 | WAVE_FORMAT_96S08) )
943             wwo->ds_caps.dwFlags |= DSCAPS_PRIMARY8BIT;
944
945         if (wwo->caps.dwFormats & (WAVE_FORMAT_1M16  | WAVE_FORMAT_2M16  |
946                                    WAVE_FORMAT_4M16  | WAVE_FORMAT_48M16 |
947                                    WAVE_FORMAT_96M16 | WAVE_FORMAT_1S16  |
948                                    WAVE_FORMAT_2S16  | WAVE_FORMAT_4S16  |
949                                    WAVE_FORMAT_48S16 | WAVE_FORMAT_96S16) )
950             wwo->ds_caps.dwFlags |= DSCAPS_PRIMARY16BIT;
951
952         wwo->ds_caps.dwMinSecondarySampleRate = DSBFREQUENCY_MIN;
953         wwo->ds_caps.dwMaxSecondarySampleRate = DSBFREQUENCY_MAX;
954         wwo->ds_caps.dwPrimaryBuffers = 1;
955
956         ALSA_WodNumDevs++;
957     }
958
959     ALSA_WidNumDevs = 0;
960
961     for (i = 0; i < MAX_WAVEINDRV; i++)
962     {
963         char device[64];
964         char * regdev;
965         WCHAR nameW[64];
966         snd_pcm_format_mask_t * fmask;
967         snd_pcm_access_mask_t * acmask;
968
969         wwi = &WInDev[ALSA_WidNumDevs];
970
971         regdev = ALSA_GetDeviceFromReg("CaptureDevice");
972         sprintf(device, "%s:%d", regdev, i);
973         HeapFree(GetProcessHeap(), 0, regdev);
974         wwi->device = HeapAlloc(GetProcessHeap(), 0, strlen(device));
975         strcpy(wwi->device, device);
976
977         TRACE("using wavein device \"%s\"\n", wwi->device);
978
979         snprintf(wwi->interface_name, sizeof(wwi->interface_name), "winealsa: %s", wwi->device);
980
981         wwi->caps.wMid = 0x0002;
982         wwi->caps.wPid = 0x0104;
983         wwi->caps.vDriverVersion = 0x0100;
984         wwi->caps.dwFormats = 0x00000000;
985         strcpy(wwi->ds_desc.szDrvname, "winealsa.drv");
986         wwi->dwSupport = 0;
987
988         snd_pcm_info_alloca(&info);
989         snd_pcm_hw_params_alloca(&hw_params);
990
991 #define EXIT_ON_ERROR(f,txt) do { int err; if ( (err = (f) ) < 0) { ERR(txt ": %s\n", snd_strerror(err)); if (h) snd_pcm_close(h); return -1; } } while(0)
992
993         h = NULL;
994         snd_pcm_open(&h, wwi->device, SND_PCM_STREAM_CAPTURE, SND_PCM_NONBLOCK);
995         if (!h)
996             break;
997
998         EXIT_ON_ERROR( snd_pcm_info(h, info) , "pcm info" );
999
1000         TRACE("dev=%d id=%s name=%s subdev=%d subdev_name=%s subdev_avail=%d subdev_num=%d stream=%s subclass=%s \n",
1001            snd_pcm_info_get_device(info),
1002            snd_pcm_info_get_id(info),
1003            snd_pcm_info_get_name(info),
1004            snd_pcm_info_get_subdevice(info),
1005            snd_pcm_info_get_subdevice_name(info),
1006            snd_pcm_info_get_subdevices_avail(info),
1007            snd_pcm_info_get_subdevices_count(info),
1008            snd_pcm_stream_name(snd_pcm_info_get_stream(info)),
1009            (snd_pcm_info_get_subclass(info) == SND_PCM_SUBCLASS_GENERIC_MIX ? "GENERIC MIX": "MULTI MIX"));
1010
1011         strcpy(wwi->ds_desc.szDesc, snd_pcm_info_get_name(info));
1012         MultiByteToWideChar(CP_ACP, 0, wwi->ds_desc.szDesc, -1, nameW, sizeof(nameW)/sizeof(WCHAR));
1013         strcpyW(wwi->caps.szPname, nameW);
1014         EXIT_ON_ERROR( snd_pcm_hw_params_any(h, hw_params) , "pcm hw params" );
1015 #undef EXIT_ON_ERROR
1016         err = snd_pcm_hw_params_get_rate_min(hw_params, &ratemin, &dir);
1017         err = snd_pcm_hw_params_get_rate_max(hw_params, &ratemax, &dir);
1018         err = snd_pcm_hw_params_get_channels_min(hw_params, &chmin);
1019         err = snd_pcm_hw_params_get_channels_max(hw_params, &chmax);
1020
1021         if (TRACE_ON(wave))
1022             ALSA_TraceParameters(hw_params, NULL, TRUE);
1023
1024         snd_pcm_format_mask_alloca(&fmask);
1025         snd_pcm_hw_params_get_format_mask(hw_params, fmask);
1026
1027 #define X(r,v) \
1028         if ( (r) >= ratemin && ( (r) <= ratemax || ratemax == -1) ) \
1029         { \
1030            if (snd_pcm_format_mask_test( fmask, SND_PCM_FORMAT_U8)) \
1031            { \
1032               if (chmin <= 1 && 1 <= chmax) \
1033                   wwi->caps.dwFormats |= WAVE_FORMAT_##v##M08; \
1034               if (chmin <= 2 && 2 <= chmax) \
1035                   wwi->caps.dwFormats |= WAVE_FORMAT_##v##S08; \
1036            } \
1037            if (snd_pcm_format_mask_test( fmask, SND_PCM_FORMAT_S16_LE)) \
1038            { \
1039               if (chmin <= 1 && 1 <= chmax) \
1040                   wwi->caps.dwFormats |= WAVE_FORMAT_##v##M16; \
1041               if (chmin <= 2 && 2 <= chmax) \
1042                   wwi->caps.dwFormats |= WAVE_FORMAT_##v##S16; \
1043            } \
1044         }
1045         X(11025,1);
1046         X(22050,2);
1047         X(44100,4);
1048         X(48000,48);
1049         X(96000,96);
1050 #undef X
1051
1052         if (chmin > 1)
1053             FIXME("-\n");
1054         wwi->caps.wChannels = chmax;
1055
1056         snd_pcm_access_mask_alloca(&acmask);
1057         snd_pcm_hw_params_get_access_mask(hw_params, acmask);
1058
1059         /* FIXME: NONITERLEAVED and COMPLEX are not supported right now */
1060         if ( snd_pcm_access_mask_test( acmask, SND_PCM_ACCESS_MMAP_INTERLEAVED ) ) {
1061 #if 0
1062             wwi->dwSupport |= WAVECAPS_DIRECTSOUND;
1063 #endif
1064         }
1065
1066         TRACE("Configured with dwFmts=%08lx\n", wwi->caps.dwFormats);
1067
1068         snd_pcm_close(h);
1069
1070         ALSA_WidNumDevs++;
1071     }
1072
1073     return 0;
1074 }
1075
1076 /******************************************************************
1077  *              ALSA_InitRingMessage
1078  *
1079  * Initialize the ring of messages for passing between driver's caller and playback/record
1080  * thread
1081  */
1082 static int ALSA_InitRingMessage(ALSA_MSG_RING* omr)
1083 {
1084     omr->msg_toget = 0;
1085     omr->msg_tosave = 0;
1086 #ifdef USE_PIPE_SYNC
1087     if (pipe(omr->msg_pipe) < 0) {
1088         omr->msg_pipe[0] = -1;
1089         omr->msg_pipe[1] = -1;
1090         ERR("could not create pipe, error=%s\n", strerror(errno));
1091     }
1092 #else
1093     omr->msg_event = CreateEventW(NULL, FALSE, FALSE, NULL);
1094 #endif
1095     omr->ring_buffer_size = ALSA_RING_BUFFER_INCREMENT;
1096     omr->messages = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,omr->ring_buffer_size * sizeof(ALSA_MSG));
1097
1098     InitializeCriticalSection(&omr->msg_crst);
1099     return 0;
1100 }
1101
1102 /******************************************************************
1103  *              ALSA_DestroyRingMessage
1104  *
1105  */
1106 static int ALSA_DestroyRingMessage(ALSA_MSG_RING* omr)
1107 {
1108 #ifdef USE_PIPE_SYNC
1109     close(omr->msg_pipe[0]);
1110     close(omr->msg_pipe[1]);
1111 #else
1112     CloseHandle(omr->msg_event);
1113 #endif
1114     HeapFree(GetProcessHeap(),0,omr->messages);
1115     DeleteCriticalSection(&omr->msg_crst);
1116     return 0;
1117 }
1118
1119 /******************************************************************
1120  *              ALSA_AddRingMessage
1121  *
1122  * Inserts a new message into the ring (should be called from DriverProc derivated routines)
1123  */
1124 static int ALSA_AddRingMessage(ALSA_MSG_RING* omr, enum win_wm_message msg, DWORD param, BOOL wait)
1125 {
1126     HANDLE      hEvent = INVALID_HANDLE_VALUE;
1127
1128     EnterCriticalSection(&omr->msg_crst);
1129     if ((omr->msg_toget == ((omr->msg_tosave + 1) % omr->ring_buffer_size)))
1130     {
1131         int old_ring_buffer_size = omr->ring_buffer_size;
1132         omr->ring_buffer_size += ALSA_RING_BUFFER_INCREMENT;
1133         TRACE("omr->ring_buffer_size=%d\n",omr->ring_buffer_size);
1134         omr->messages = HeapReAlloc(GetProcessHeap(),0,omr->messages, omr->ring_buffer_size * sizeof(ALSA_MSG));
1135         /* Now we need to rearrange the ring buffer so that the new
1136            buffers just allocated are in between omr->msg_tosave and
1137            omr->msg_toget.
1138         */
1139         if (omr->msg_tosave < omr->msg_toget)
1140         {
1141             memmove(&(omr->messages[omr->msg_toget + ALSA_RING_BUFFER_INCREMENT]),
1142                     &(omr->messages[omr->msg_toget]),
1143                     sizeof(ALSA_MSG)*(old_ring_buffer_size - omr->msg_toget)
1144                     );
1145             omr->msg_toget += ALSA_RING_BUFFER_INCREMENT;
1146         }
1147     }
1148     if (wait)
1149     {
1150         hEvent = CreateEventW(NULL, FALSE, FALSE, NULL);
1151         if (hEvent == INVALID_HANDLE_VALUE)
1152         {
1153             ERR("can't create event !?\n");
1154             LeaveCriticalSection(&omr->msg_crst);
1155             return 0;
1156         }
1157         if (omr->msg_toget != omr->msg_tosave && omr->messages[omr->msg_toget].msg != WINE_WM_HEADER)
1158             FIXME("two fast messages in the queue!!!! toget = %d(%s), tosave=%d(%s)\n",
1159                   omr->msg_toget,getCmdString(omr->messages[omr->msg_toget].msg),
1160                   omr->msg_tosave,getCmdString(omr->messages[omr->msg_tosave].msg));
1161
1162         /* fast messages have to be added at the start of the queue */
1163         omr->msg_toget = (omr->msg_toget + omr->ring_buffer_size - 1) % omr->ring_buffer_size;
1164
1165         omr->messages[omr->msg_toget].msg = msg;
1166         omr->messages[omr->msg_toget].param = param;
1167         omr->messages[omr->msg_toget].hEvent = hEvent;
1168     }
1169     else
1170     {
1171         omr->messages[omr->msg_tosave].msg = msg;
1172         omr->messages[omr->msg_tosave].param = param;
1173         omr->messages[omr->msg_tosave].hEvent = INVALID_HANDLE_VALUE;
1174         omr->msg_tosave = (omr->msg_tosave + 1) % omr->ring_buffer_size;
1175     }
1176     LeaveCriticalSection(&omr->msg_crst);
1177     /* signal a new message */
1178     SIGNAL_OMR(omr);
1179     if (wait)
1180     {
1181         /* wait for playback/record thread to have processed the message */
1182         WaitForSingleObject(hEvent, INFINITE);
1183         CloseHandle(hEvent);
1184     }
1185     return 1;
1186 }
1187
1188 /******************************************************************
1189  *              ALSA_RetrieveRingMessage
1190  *
1191  * Get a message from the ring. Should be called by the playback/record thread.
1192  */
1193 static int ALSA_RetrieveRingMessage(ALSA_MSG_RING* omr,
1194                                    enum win_wm_message *msg, DWORD *param, HANDLE *hEvent)
1195 {
1196     EnterCriticalSection(&omr->msg_crst);
1197
1198     if (omr->msg_toget == omr->msg_tosave) /* buffer empty ? */
1199     {
1200         LeaveCriticalSection(&omr->msg_crst);
1201         return 0;
1202     }
1203
1204     *msg = omr->messages[omr->msg_toget].msg;
1205     omr->messages[omr->msg_toget].msg = 0;
1206     *param = omr->messages[omr->msg_toget].param;
1207     *hEvent = omr->messages[omr->msg_toget].hEvent;
1208     omr->msg_toget = (omr->msg_toget + 1) % omr->ring_buffer_size;
1209     CLEAR_OMR(omr);
1210     LeaveCriticalSection(&omr->msg_crst);
1211     return 1;
1212 }
1213
1214 /******************************************************************
1215  *              ALSA_PeekRingMessage
1216  *
1217  * Peek at a message from the ring but do not remove it.
1218  * Should be called by the playback/record thread.
1219  */
1220 static int ALSA_PeekRingMessage(ALSA_MSG_RING* omr,
1221                                enum win_wm_message *msg,
1222                                DWORD *param, HANDLE *hEvent)
1223 {
1224     EnterCriticalSection(&omr->msg_crst);
1225
1226     if (omr->msg_toget == omr->msg_tosave) /* buffer empty ? */
1227     {
1228         LeaveCriticalSection(&omr->msg_crst);
1229         return 0;
1230     }
1231
1232     *msg = omr->messages[omr->msg_toget].msg;
1233     *param = omr->messages[omr->msg_toget].param;
1234     *hEvent = omr->messages[omr->msg_toget].hEvent;
1235     LeaveCriticalSection(&omr->msg_crst);
1236     return 1;
1237 }
1238
1239 /*======================================================================*
1240  *                  Low level WAVE OUT implementation                   *
1241  *======================================================================*/
1242
1243 /**************************************************************************
1244  *                      wodNotifyClient                 [internal]
1245  */
1246 static DWORD wodNotifyClient(WINE_WAVEOUT* wwo, WORD wMsg, DWORD dwParam1, DWORD dwParam2)
1247 {
1248     TRACE("wMsg = 0x%04x dwParm1 = %04lX dwParam2 = %04lX\n", wMsg, dwParam1, dwParam2);
1249
1250     switch (wMsg) {
1251     case WOM_OPEN:
1252     case WOM_CLOSE:
1253     case WOM_DONE:
1254         if (wwo->wFlags != DCB_NULL &&
1255             !DriverCallback(wwo->waveDesc.dwCallback, wwo->wFlags, (HDRVR)wwo->waveDesc.hWave,
1256                             wMsg, wwo->waveDesc.dwInstance, dwParam1, dwParam2)) {
1257             WARN("can't notify client !\n");
1258             return MMSYSERR_ERROR;
1259         }
1260         break;
1261     default:
1262         FIXME("Unknown callback message %u\n", wMsg);
1263         return MMSYSERR_INVALPARAM;
1264     }
1265     return MMSYSERR_NOERROR;
1266 }
1267
1268 /**************************************************************************
1269  *                              wodUpdatePlayedTotal    [internal]
1270  *
1271  */
1272 static BOOL wodUpdatePlayedTotal(WINE_WAVEOUT* wwo, snd_pcm_status_t* ps)
1273 {
1274     snd_pcm_sframes_t delay = 0;
1275     snd_pcm_delay(wwo->handle, &delay);
1276     if (snd_pcm_state(wwo->handle) != SND_PCM_STATE_RUNNING)
1277         delay=0;
1278     wwo->dwPlayedTotal = wwo->dwWrittenTotal - snd_pcm_frames_to_bytes(wwo->handle, delay);
1279     return TRUE;
1280 }
1281
1282 /**************************************************************************
1283  *                              wodPlayer_BeginWaveHdr          [internal]
1284  *
1285  * Makes the specified lpWaveHdr the currently playing wave header.
1286  * If the specified wave header is a begin loop and we're not already in
1287  * a loop, setup the loop.
1288  */
1289 static void wodPlayer_BeginWaveHdr(WINE_WAVEOUT* wwo, LPWAVEHDR lpWaveHdr)
1290 {
1291     wwo->lpPlayPtr = lpWaveHdr;
1292
1293     if (!lpWaveHdr) return;
1294
1295     if (lpWaveHdr->dwFlags & WHDR_BEGINLOOP) {
1296         if (wwo->lpLoopPtr) {
1297             WARN("Already in a loop. Discarding loop on this header (%p)\n", lpWaveHdr);
1298         } else {
1299             TRACE("Starting loop (%ldx) with %p\n", lpWaveHdr->dwLoops, lpWaveHdr);
1300             wwo->lpLoopPtr = lpWaveHdr;
1301             /* Windows does not touch WAVEHDR.dwLoops,
1302              * so we need to make an internal copy */
1303             wwo->dwLoops = lpWaveHdr->dwLoops;
1304         }
1305     }
1306     wwo->dwPartialOffset = 0;
1307 }
1308
1309 /**************************************************************************
1310  *                              wodPlayer_PlayPtrNext           [internal]
1311  *
1312  * Advance the play pointer to the next waveheader, looping if required.
1313  */
1314 static LPWAVEHDR wodPlayer_PlayPtrNext(WINE_WAVEOUT* wwo)
1315 {
1316     LPWAVEHDR lpWaveHdr = wwo->lpPlayPtr;
1317
1318     wwo->dwPartialOffset = 0;
1319     if ((lpWaveHdr->dwFlags & WHDR_ENDLOOP) && wwo->lpLoopPtr) {
1320         /* We're at the end of a loop, loop if required */
1321         if (--wwo->dwLoops > 0) {
1322             wwo->lpPlayPtr = wwo->lpLoopPtr;
1323         } else {
1324             /* Handle overlapping loops correctly */
1325             if (wwo->lpLoopPtr != lpWaveHdr && (lpWaveHdr->dwFlags & WHDR_BEGINLOOP)) {
1326                 FIXME("Correctly handled case ? (ending loop buffer also starts a new loop)\n");
1327                 /* shall we consider the END flag for the closing loop or for
1328                  * the opening one or for both ???
1329                  * code assumes for closing loop only
1330                  */
1331             } else {
1332                 lpWaveHdr = lpWaveHdr->lpNext;
1333             }
1334             wwo->lpLoopPtr = NULL;
1335             wodPlayer_BeginWaveHdr(wwo, lpWaveHdr);
1336         }
1337     } else {
1338         /* We're not in a loop.  Advance to the next wave header */
1339         wodPlayer_BeginWaveHdr(wwo, lpWaveHdr = lpWaveHdr->lpNext);
1340     }
1341
1342     return lpWaveHdr;
1343 }
1344
1345 /**************************************************************************
1346  *                           wodPlayer_DSPWait                  [internal]
1347  * Returns the number of milliseconds to wait for the DSP buffer to play a
1348  * period
1349  */
1350 static DWORD wodPlayer_DSPWait(const WINE_WAVEOUT *wwo)
1351 {
1352     /* time for one period to be played */
1353     unsigned int val=0;
1354     int dir=0;
1355     int err=0;
1356     err = snd_pcm_hw_params_get_period_time(wwo->hw_params, &val, &dir);
1357     return val / 1000;
1358 }
1359
1360 /**************************************************************************
1361  *                           wodPlayer_NotifyWait               [internal]
1362  * Returns the number of milliseconds to wait before attempting to notify
1363  * completion of the specified wavehdr.
1364  * This is based on the number of bytes remaining to be written in the
1365  * wave.
1366  */
1367 static DWORD wodPlayer_NotifyWait(const WINE_WAVEOUT* wwo, LPWAVEHDR lpWaveHdr)
1368 {
1369     DWORD dwMillis;
1370
1371     if (lpWaveHdr->reserved < wwo->dwPlayedTotal) {
1372         dwMillis = 1;
1373     } else {
1374         dwMillis = (lpWaveHdr->reserved - wwo->dwPlayedTotal) * 1000 / wwo->format.Format.nAvgBytesPerSec;
1375         if (!dwMillis) dwMillis = 1;
1376     }
1377
1378     return dwMillis;
1379 }
1380
1381
1382 /**************************************************************************
1383  *                           wodPlayer_WriteMaxFrags            [internal]
1384  * Writes the maximum number of frames possible to the DSP and returns
1385  * the number of frames written.
1386  */
1387 static int wodPlayer_WriteMaxFrags(WINE_WAVEOUT* wwo, DWORD* frames)
1388 {
1389     /* Only attempt to write to free frames */
1390     LPWAVEHDR lpWaveHdr = wwo->lpPlayPtr;
1391     DWORD dwLength = snd_pcm_bytes_to_frames(wwo->handle, lpWaveHdr->dwBufferLength - wwo->dwPartialOffset);
1392     int toWrite = min(dwLength, *frames);
1393     int written;
1394
1395     TRACE("Writing wavehdr %p.%lu[%lu]\n", lpWaveHdr, wwo->dwPartialOffset, lpWaveHdr->dwBufferLength);
1396
1397     if (toWrite > 0) {
1398         written = (wwo->write)(wwo->handle, lpWaveHdr->lpData + wwo->dwPartialOffset, toWrite);
1399         if ( written < 0) {
1400             /* XRUN occurred. let's try to recover */
1401             ALSA_XRUNRecovery(wwo, written);
1402             written = (wwo->write)(wwo->handle, lpWaveHdr->lpData + wwo->dwPartialOffset, toWrite);
1403         }
1404         if (written <= 0) {
1405             /* still in error */
1406             ERR("Error in writing wavehdr. Reason: %s\n", snd_strerror(written));
1407             return written;
1408         }
1409     } else
1410         written = 0;
1411
1412     wwo->dwPartialOffset += snd_pcm_frames_to_bytes(wwo->handle, written);
1413     if ( wwo->dwPartialOffset >= lpWaveHdr->dwBufferLength) {
1414         /* this will be used to check if the given wave header has been fully played or not... */
1415         wwo->dwPartialOffset = lpWaveHdr->dwBufferLength;
1416         /* If we wrote all current wavehdr, skip to the next one */
1417         wodPlayer_PlayPtrNext(wwo);
1418     }
1419     *frames -= written;
1420     wwo->dwWrittenTotal += snd_pcm_frames_to_bytes(wwo->handle, written);
1421     TRACE("dwWrittenTotal=%lu\n", wwo->dwWrittenTotal);
1422
1423     return written;
1424 }
1425
1426
1427 /**************************************************************************
1428  *                              wodPlayer_NotifyCompletions     [internal]
1429  *
1430  * Notifies and remove from queue all wavehdrs which have been played to
1431  * the speaker (ie. they have cleared the ALSA buffer).  If force is true,
1432  * we notify all wavehdrs and remove them all from the queue even if they
1433  * are unplayed or part of a loop.
1434  */
1435 static DWORD wodPlayer_NotifyCompletions(WINE_WAVEOUT* wwo, BOOL force)
1436 {
1437     LPWAVEHDR           lpWaveHdr;
1438
1439     /* Start from lpQueuePtr and keep notifying until:
1440      * - we hit an unwritten wavehdr
1441      * - we hit the beginning of a running loop
1442      * - we hit a wavehdr which hasn't finished playing
1443      */
1444 #if 0
1445     while ((lpWaveHdr = wwo->lpQueuePtr) &&
1446            (force ||
1447             (lpWaveHdr != wwo->lpPlayPtr &&
1448              lpWaveHdr != wwo->lpLoopPtr &&
1449              lpWaveHdr->reserved <= wwo->dwPlayedTotal))) {
1450
1451         wwo->lpQueuePtr = lpWaveHdr->lpNext;
1452
1453         lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
1454         lpWaveHdr->dwFlags |= WHDR_DONE;
1455
1456         wodNotifyClient(wwo, WOM_DONE, (DWORD)lpWaveHdr, 0);
1457     }
1458 #else
1459     for (;;)
1460     {
1461         lpWaveHdr = wwo->lpQueuePtr;
1462         if (!lpWaveHdr) {TRACE("Empty queue\n"); break;}
1463         if (!force)
1464         {
1465             if (lpWaveHdr == wwo->lpPlayPtr) {TRACE("play %p\n", lpWaveHdr); break;}
1466             if (lpWaveHdr == wwo->lpLoopPtr) {TRACE("loop %p\n", lpWaveHdr); break;}
1467             if (lpWaveHdr->reserved > wwo->dwPlayedTotal){TRACE("still playing %p (%lu/%lu)\n", lpWaveHdr, lpWaveHdr->reserved, wwo->dwPlayedTotal);break;}
1468         }
1469         wwo->lpQueuePtr = lpWaveHdr->lpNext;
1470
1471         lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
1472         lpWaveHdr->dwFlags |= WHDR_DONE;
1473
1474         wodNotifyClient(wwo, WOM_DONE, (DWORD)lpWaveHdr, 0);
1475     }
1476 #endif
1477     return  (lpWaveHdr && lpWaveHdr != wwo->lpPlayPtr && lpWaveHdr != wwo->lpLoopPtr) ?
1478         wodPlayer_NotifyWait(wwo, lpWaveHdr) : INFINITE;
1479 }
1480
1481
1482 static void wait_for_poll(snd_pcm_t *handle, struct pollfd *ufds, unsigned int count)
1483 {
1484     unsigned short revents;
1485
1486     if (snd_pcm_state(handle) != SND_PCM_STATE_RUNNING)
1487         return;
1488
1489     while (1) {
1490         poll(ufds, count, -1);
1491         snd_pcm_poll_descriptors_revents(handle, ufds, count, &revents);
1492
1493         if (revents & POLLERR)
1494             return;
1495
1496         /*if (revents & POLLOUT)
1497                 return 0;*/
1498     }
1499 }
1500
1501
1502 /**************************************************************************
1503  *                              wodPlayer_Reset                 [internal]
1504  *
1505  * wodPlayer helper. Resets current output stream.
1506  */
1507 static  void    wodPlayer_Reset(WINE_WAVEOUT* wwo)
1508 {
1509     enum win_wm_message msg;
1510     DWORD                       param;
1511     HANDLE                      ev;
1512     int                         err;
1513
1514     /* flush all possible output */
1515     wait_for_poll(wwo->handle, wwo->ufds, wwo->count);
1516
1517     wodUpdatePlayedTotal(wwo, NULL);
1518     /* updates current notify list */
1519     wodPlayer_NotifyCompletions(wwo, FALSE);
1520
1521     if ( (err = snd_pcm_drop(wwo->handle)) < 0) {
1522         FIXME("flush: %s\n", snd_strerror(err));
1523         wwo->hThread = 0;
1524         wwo->state = WINE_WS_STOPPED;
1525         ExitThread(-1);
1526     }
1527     if ( (err = snd_pcm_prepare(wwo->handle)) < 0 )
1528         ERR("pcm prepare failed: %s\n", snd_strerror(err));
1529
1530     /* remove any buffer */
1531     wodPlayer_NotifyCompletions(wwo, TRUE);
1532
1533     wwo->lpPlayPtr = wwo->lpQueuePtr = wwo->lpLoopPtr = NULL;
1534     wwo->state = WINE_WS_STOPPED;
1535     wwo->dwPlayedTotal = wwo->dwWrittenTotal = 0;
1536     /* Clear partial wavehdr */
1537     wwo->dwPartialOffset = 0;
1538
1539     /* remove any existing message in the ring */
1540     EnterCriticalSection(&wwo->msgRing.msg_crst);
1541     /* return all pending headers in queue */
1542     while (ALSA_RetrieveRingMessage(&wwo->msgRing, &msg, &param, &ev))
1543     {
1544         if (msg != WINE_WM_HEADER)
1545         {
1546             FIXME("shouldn't have headers left\n");
1547             SetEvent(ev);
1548             continue;
1549         }
1550         ((LPWAVEHDR)param)->dwFlags &= ~WHDR_INQUEUE;
1551         ((LPWAVEHDR)param)->dwFlags |= WHDR_DONE;
1552
1553         wodNotifyClient(wwo, WOM_DONE, param, 0);
1554     }
1555     RESET_OMR(&wwo->msgRing);
1556     LeaveCriticalSection(&wwo->msgRing.msg_crst);
1557 }
1558
1559 /**************************************************************************
1560  *                    wodPlayer_ProcessMessages                 [internal]
1561  */
1562 static void wodPlayer_ProcessMessages(WINE_WAVEOUT* wwo)
1563 {
1564     LPWAVEHDR           lpWaveHdr;
1565     enum win_wm_message msg;
1566     DWORD               param;
1567     HANDLE              ev;
1568     int                 err;
1569
1570     while (ALSA_RetrieveRingMessage(&wwo->msgRing, &msg, &param, &ev)) {
1571      TRACE("Received %s %lx\n", getCmdString(msg), param); 
1572
1573         switch (msg) {
1574         case WINE_WM_PAUSING:
1575             if ( snd_pcm_state(wwo->handle) == SND_PCM_STATE_RUNNING )
1576              {
1577                 err = snd_pcm_pause(wwo->handle, 1);
1578                 if ( err < 0 )
1579                     ERR("pcm_pause failed: %s\n", snd_strerror(err));
1580              }
1581             wwo->state = WINE_WS_PAUSED;
1582             SetEvent(ev);
1583             break;
1584         case WINE_WM_RESTARTING:
1585             if (wwo->state == WINE_WS_PAUSED)
1586             {
1587                 if ( snd_pcm_state(wwo->handle) == SND_PCM_STATE_PAUSED )
1588                  {
1589                     err = snd_pcm_pause(wwo->handle, 0);
1590                     if ( err < 0 )
1591                         ERR("pcm_pause failed: %s\n", snd_strerror(err));
1592                  }
1593                 wwo->state = WINE_WS_PLAYING;
1594             }
1595             SetEvent(ev);
1596             break;
1597         case WINE_WM_HEADER:
1598             lpWaveHdr = (LPWAVEHDR)param;
1599
1600             /* insert buffer at the end of queue */
1601             {
1602                 LPWAVEHDR*      wh;
1603                 for (wh = &(wwo->lpQueuePtr); *wh; wh = &((*wh)->lpNext));
1604                 *wh = lpWaveHdr;
1605             }
1606             if (!wwo->lpPlayPtr)
1607                 wodPlayer_BeginWaveHdr(wwo,lpWaveHdr);
1608             if (wwo->state == WINE_WS_STOPPED)
1609                 wwo->state = WINE_WS_PLAYING;
1610             break;
1611         case WINE_WM_RESETTING:
1612             wodPlayer_Reset(wwo);
1613             SetEvent(ev);
1614             break;
1615         case WINE_WM_UPDATE:
1616             wodUpdatePlayedTotal(wwo, NULL);
1617             SetEvent(ev);
1618             break;
1619         case WINE_WM_BREAKLOOP:
1620             if (wwo->state == WINE_WS_PLAYING && wwo->lpLoopPtr != NULL) {
1621                 /* ensure exit at end of current loop */
1622                 wwo->dwLoops = 1;
1623             }
1624             SetEvent(ev);
1625             break;
1626         case WINE_WM_CLOSING:
1627             /* sanity check: this should not happen since the device must have been reset before */
1628             if (wwo->lpQueuePtr || wwo->lpPlayPtr) ERR("out of sync\n");
1629             wwo->hThread = 0;
1630             wwo->state = WINE_WS_CLOSED;
1631             SetEvent(ev);
1632             ExitThread(0);
1633             /* shouldn't go here */
1634         default:
1635             FIXME("unknown message %d\n", msg);
1636             break;
1637         }
1638     }
1639 }
1640
1641 /**************************************************************************
1642  *                           wodPlayer_FeedDSP                  [internal]
1643  * Feed as much sound data as we can into the DSP and return the number of
1644  * milliseconds before it will be necessary to feed the DSP again.
1645  */
1646 static DWORD wodPlayer_FeedDSP(WINE_WAVEOUT* wwo)
1647 {
1648     DWORD               availInQ;
1649
1650     wodUpdatePlayedTotal(wwo, NULL);
1651     availInQ = snd_pcm_avail_update(wwo->handle);
1652
1653 #if 0
1654     /* input queue empty and output buffer with less than one fragment to play */
1655     if (!wwo->lpPlayPtr && wwo->dwBufferSize < availInQ + wwo->dwFragmentSize) {
1656         TRACE("Run out of wavehdr:s...\n");
1657         return INFINITE;
1658     }
1659 #endif
1660
1661     /* no more room... no need to try to feed */
1662     if (availInQ > 0) {
1663         /* Feed from partial wavehdr */
1664         if (wwo->lpPlayPtr && wwo->dwPartialOffset != 0) {
1665             wodPlayer_WriteMaxFrags(wwo, &availInQ);
1666         }
1667
1668         /* Feed wavehdrs until we run out of wavehdrs or DSP space */
1669         if (wwo->dwPartialOffset == 0 && wwo->lpPlayPtr) {
1670             do {
1671                 TRACE("Setting time to elapse for %p to %lu\n",
1672                       wwo->lpPlayPtr, wwo->dwWrittenTotal + wwo->lpPlayPtr->dwBufferLength);
1673                 /* note the value that dwPlayedTotal will return when this wave finishes playing */
1674                 wwo->lpPlayPtr->reserved = wwo->dwWrittenTotal + wwo->lpPlayPtr->dwBufferLength;
1675             } while (wodPlayer_WriteMaxFrags(wwo, &availInQ) && wwo->lpPlayPtr && availInQ > 0);
1676         }
1677     }
1678
1679     return wodPlayer_DSPWait(wwo);
1680 }
1681
1682 /**************************************************************************
1683  *                              wodPlayer                       [internal]
1684  */
1685 static  DWORD   CALLBACK        wodPlayer(LPVOID pmt)
1686 {
1687     WORD          uDevID = (DWORD)pmt;
1688     WINE_WAVEOUT* wwo = (WINE_WAVEOUT*)&WOutDev[uDevID];
1689     DWORD         dwNextFeedTime = INFINITE;   /* Time before DSP needs feeding */
1690     DWORD         dwNextNotifyTime = INFINITE; /* Time before next wave completion */
1691     DWORD         dwSleepTime;
1692
1693     wwo->state = WINE_WS_STOPPED;
1694     SetEvent(wwo->hStartUpEvent);
1695
1696     for (;;) {
1697         /** Wait for the shortest time before an action is required.  If there
1698          *  are no pending actions, wait forever for a command.
1699          */
1700         dwSleepTime = min(dwNextFeedTime, dwNextNotifyTime);
1701         TRACE("waiting %lums (%lu,%lu)\n", dwSleepTime, dwNextFeedTime, dwNextNotifyTime);
1702         WAIT_OMR(&wwo->msgRing, dwSleepTime);
1703         wodPlayer_ProcessMessages(wwo);
1704         if (wwo->state == WINE_WS_PLAYING) {
1705             dwNextFeedTime = wodPlayer_FeedDSP(wwo);
1706             dwNextNotifyTime = wodPlayer_NotifyCompletions(wwo, FALSE);
1707             if (dwNextFeedTime == INFINITE) {
1708                 /* FeedDSP ran out of data, but before giving up, */
1709                 /* check that a notification didn't give us more */
1710                 wodPlayer_ProcessMessages(wwo);
1711                 if (wwo->lpPlayPtr) {
1712                     TRACE("recovering\n");
1713                     dwNextFeedTime = wodPlayer_FeedDSP(wwo);
1714                 }
1715             }
1716         } else {
1717             dwNextFeedTime = dwNextNotifyTime = INFINITE;
1718         }
1719     }
1720 }
1721
1722 /**************************************************************************
1723  *                      wodGetDevCaps                           [internal]
1724  */
1725 static DWORD wodGetDevCaps(WORD wDevID, LPWAVEOUTCAPSW lpCaps, DWORD dwSize)
1726 {
1727     TRACE("(%u, %p, %lu);\n", wDevID, lpCaps, dwSize);
1728
1729     if (lpCaps == NULL) return MMSYSERR_NOTENABLED;
1730
1731     if (wDevID >= MAX_WAVEOUTDRV) {
1732         TRACE("MAX_WAVOUTDRV reached !\n");
1733         return MMSYSERR_BADDEVICEID;
1734     }
1735
1736     memcpy(lpCaps, &WOutDev[wDevID].caps, min(dwSize, sizeof(*lpCaps)));
1737     return MMSYSERR_NOERROR;
1738 }
1739
1740 /**************************************************************************
1741  *                              wodOpen                         [internal]
1742  */
1743 static DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
1744 {
1745     WINE_WAVEOUT*               wwo;
1746     snd_pcm_hw_params_t *       hw_params;
1747     snd_pcm_sw_params_t *       sw_params;
1748     snd_pcm_access_t            access;
1749     snd_pcm_format_t            format = -1;
1750     unsigned int                rate;
1751     unsigned int                buffer_time = 500000;
1752     unsigned int                period_time = 10000;
1753     snd_pcm_uframes_t           buffer_size;
1754     snd_pcm_uframes_t           period_size;
1755     int                         flags;
1756     snd_pcm_t *                 pcm;
1757     int                         err=0;
1758     int                         dir=0;
1759
1760     snd_pcm_hw_params_alloca(&hw_params);
1761     snd_pcm_sw_params_alloca(&sw_params);
1762
1763     TRACE("(%u, %p, %08lX);\n", wDevID, lpDesc, dwFlags);
1764     if (lpDesc == NULL) {
1765         WARN("Invalid Parameter !\n");
1766         return MMSYSERR_INVALPARAM;
1767     }
1768     if (wDevID >= MAX_WAVEOUTDRV) {
1769         TRACE("MAX_WAVOUTDRV reached !\n");
1770         return MMSYSERR_BADDEVICEID;
1771     }
1772
1773     /* only PCM format is supported so far... */
1774     if (!supportedFormat(lpDesc->lpFormat)) {
1775         WARN("Bad format: tag=%04X nChannels=%d nSamplesPerSec=%ld !\n",
1776              lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
1777              lpDesc->lpFormat->nSamplesPerSec);
1778         return WAVERR_BADFORMAT;
1779     }
1780
1781     if (dwFlags & WAVE_FORMAT_QUERY) {
1782         TRACE("Query format: tag=%04X nChannels=%d nSamplesPerSec=%ld !\n",
1783              lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
1784              lpDesc->lpFormat->nSamplesPerSec);
1785         return MMSYSERR_NOERROR;
1786     }
1787
1788     wwo = &WOutDev[wDevID];
1789
1790     if ((dwFlags & WAVE_DIRECTSOUND) && !(wwo->caps.dwSupport & WAVECAPS_DIRECTSOUND))
1791         /* not supported, ignore it */
1792         dwFlags &= ~WAVE_DIRECTSOUND;
1793
1794     wwo->handle = 0;
1795     flags = SND_PCM_NONBLOCK;
1796 #if 0
1797     if ( dwFlags & WAVE_DIRECTSOUND )
1798         flags |= SND_PCM_ASYNC;
1799 #endif
1800
1801     if ( (err = snd_pcm_open(&pcm, wwo->device, SND_PCM_STREAM_PLAYBACK, flags)) < 0)
1802     {
1803         ERR("Error open: %s\n", snd_strerror(err));
1804         return MMSYSERR_NOTENABLED;
1805     }
1806
1807     wwo->wFlags = HIWORD(dwFlags & CALLBACK_TYPEMASK);
1808
1809     memcpy(&wwo->waveDesc, lpDesc, sizeof(WAVEOPENDESC));
1810     copy_format(lpDesc->lpFormat, &wwo->format);
1811
1812     TRACE("Requested this format: %ldx%dx%d %s\n",
1813           wwo->format.Format.nSamplesPerSec,
1814           wwo->format.Format.wBitsPerSample,
1815           wwo->format.Format.nChannels,
1816           getFormat(wwo->format.Format.wFormatTag));
1817
1818     if (wwo->format.Format.wBitsPerSample == 0) {
1819         WARN("Resetting zeroed wBitsPerSample\n");
1820         wwo->format.Format.wBitsPerSample = 8 *
1821             (wwo->format.Format.nAvgBytesPerSec /
1822              wwo->format.Format.nSamplesPerSec) /
1823             wwo->format.Format.nChannels;
1824     }
1825
1826     snd_pcm_hw_params_any(pcm, hw_params);
1827
1828 #define EXIT_ON_ERROR(f,e,txt) do \
1829 { \
1830     int err; \
1831     if ( (err = (f) ) < 0) \
1832     { \
1833         ERR(txt ": %s\n", snd_strerror(err)); \
1834         snd_pcm_close(pcm); \
1835         return e; \
1836     } \
1837 } while(0)
1838
1839     access = SND_PCM_ACCESS_MMAP_INTERLEAVED;
1840     if ( ( err = snd_pcm_hw_params_set_access(pcm, hw_params, access ) ) < 0) {
1841         WARN("mmap not available. switching to standard write.\n");
1842         access = SND_PCM_ACCESS_RW_INTERLEAVED;
1843         EXIT_ON_ERROR( snd_pcm_hw_params_set_access(pcm, hw_params, access ), MMSYSERR_INVALPARAM, "unable to set access for playback");
1844         wwo->write = snd_pcm_writei;
1845     }
1846     else
1847         wwo->write = snd_pcm_mmap_writei;
1848
1849     if ((err = snd_pcm_hw_params_set_channels(pcm, hw_params, wwo->format.Format.nChannels)) < 0) {
1850         WARN("unable to set required channels: %d\n", wwo->format.Format.nChannels);
1851         if (dwFlags & WAVE_DIRECTSOUND) {
1852             if (wwo->format.Format.nChannels > 2)
1853                 wwo->format.Format.nChannels = 2;
1854             else if (wwo->format.Format.nChannels == 2)
1855                 wwo->format.Format.nChannels = 1;
1856             else if (wwo->format.Format.nChannels == 1)
1857                 wwo->format.Format.nChannels = 2;
1858             /* recalculate block align and bytes per second */
1859             wwo->format.Format.nBlockAlign = (wwo->format.Format.wBitsPerSample * wwo->format.Format.nChannels) / 8;
1860             wwo->format.Format.nAvgBytesPerSec = wwo->format.Format.nSamplesPerSec * wwo->format.Format.nBlockAlign;
1861             WARN("changed number of channels from %d to %d\n", lpDesc->lpFormat->nChannels, wwo->format.Format.nChannels);
1862         }
1863         EXIT_ON_ERROR( snd_pcm_hw_params_set_channels(pcm, hw_params, wwo->format.Format.nChannels ), MMSYSERR_INVALPARAM, "unable to set required channels" );
1864     }
1865
1866     if ((wwo->format.Format.wFormatTag == WAVE_FORMAT_PCM) ||
1867         ((wwo->format.Format.wFormatTag == WAVE_FORMAT_EXTENSIBLE) &&
1868         IsEqualGUID(&wwo->format.SubFormat, &KSDATAFORMAT_SUBTYPE_PCM))) {
1869         format = (wwo->format.Format.wBitsPerSample == 8) ? SND_PCM_FORMAT_U8 :
1870                  (wwo->format.Format.wBitsPerSample == 16) ? SND_PCM_FORMAT_S16_LE :
1871                  (wwo->format.Format.wBitsPerSample == 24) ? SND_PCM_FORMAT_S24_LE :
1872                  (wwo->format.Format.wBitsPerSample == 32) ? SND_PCM_FORMAT_S32_LE : -1;
1873     } else if ((wwo->format.Format.wFormatTag == WAVE_FORMAT_EXTENSIBLE) &&
1874         IsEqualGUID(&wwo->format.SubFormat, &KSDATAFORMAT_SUBTYPE_IEEE_FLOAT)){
1875         format = (wwo->format.Format.wBitsPerSample == 32) ? SND_PCM_FORMAT_FLOAT_LE : -1;
1876     } else if (wwo->format.Format.wFormatTag == WAVE_FORMAT_MULAW) {
1877         FIXME("unimplemented format: WAVE_FORMAT_MULAW\n");
1878         snd_pcm_close(pcm);
1879         return WAVERR_BADFORMAT;
1880     } else if (wwo->format.Format.wFormatTag == WAVE_FORMAT_ALAW) {
1881         FIXME("unimplemented format: WAVE_FORMAT_ALAW\n");
1882         snd_pcm_close(pcm);
1883         return WAVERR_BADFORMAT;
1884     } else if (wwo->format.Format.wFormatTag == WAVE_FORMAT_ADPCM) {
1885         FIXME("unimplemented format: WAVE_FORMAT_ADPCM\n");
1886         snd_pcm_close(pcm);
1887         return WAVERR_BADFORMAT;
1888     } else {
1889         ERR("invalid format: %0x04x\n", wwo->format.Format.wFormatTag);
1890         snd_pcm_close(pcm);
1891         return WAVERR_BADFORMAT;
1892     }
1893
1894     if ((err = snd_pcm_hw_params_set_format(pcm, hw_params, format)) < 0) {
1895         WARN("unable to set required format: %s\n", snd_pcm_format_name(format));
1896         if (dwFlags & WAVE_DIRECTSOUND) {
1897             if ((wwo->format.Format.wFormatTag == WAVE_FORMAT_PCM) ||
1898                ((wwo->format.Format.wFormatTag == WAVE_FORMAT_EXTENSIBLE) &&
1899                IsEqualGUID(&wwo->format.SubFormat, & KSDATAFORMAT_SUBTYPE_PCM))) {
1900                 if (wwo->format.Format.wBitsPerSample != 16) {
1901                     wwo->format.Format.wBitsPerSample = 16;
1902                     format = SND_PCM_FORMAT_S16_LE;
1903                 } else {
1904                     wwo->format.Format.wBitsPerSample = 8;
1905                     format = SND_PCM_FORMAT_U8;
1906                 }
1907                 /* recalculate block align and bytes per second */
1908                 wwo->format.Format.nBlockAlign = (wwo->format.Format.wBitsPerSample * wwo->format.Format.nChannels) / 8;
1909                 wwo->format.Format.nAvgBytesPerSec = wwo->format.Format.nSamplesPerSec * wwo->format.Format.nBlockAlign;
1910                 WARN("changed bits per sample from %d to %d\n", lpDesc->lpFormat->wBitsPerSample, wwo->format.Format.wBitsPerSample);
1911             }
1912         }
1913         EXIT_ON_ERROR( snd_pcm_hw_params_set_format(pcm, hw_params, format), MMSYSERR_INVALPARAM, "unable to set required format" );
1914     }
1915
1916     rate = wwo->format.Format.nSamplesPerSec;
1917     dir=0;
1918     err = snd_pcm_hw_params_set_rate_near(pcm, hw_params, &rate, &dir);
1919     if (err < 0) {
1920         ERR("Rate %ld Hz not available for playback: %s\n", wwo->format.Format.nSamplesPerSec, snd_strerror(rate));
1921         snd_pcm_close(pcm);
1922         return WAVERR_BADFORMAT;
1923     }
1924     if (rate != wwo->format.Format.nSamplesPerSec) {
1925         if (dwFlags & WAVE_DIRECTSOUND) {
1926             WARN("changed sample rate from %ld Hz to %d Hz\n", wwo->format.Format.nSamplesPerSec, rate);
1927             wwo->format.Format.nSamplesPerSec = rate;
1928             /* recalculate bytes per second */
1929             wwo->format.Format.nAvgBytesPerSec = wwo->format.Format.nSamplesPerSec * wwo->format.Format.nBlockAlign;
1930         } else {
1931             ERR("Rate doesn't match (requested %ld Hz, got %d Hz)\n", wwo->format.Format.nSamplesPerSec, rate);
1932             snd_pcm_close(pcm);
1933             return WAVERR_BADFORMAT;
1934         }
1935     }
1936
1937     /* give the new format back to direct sound */
1938     if (dwFlags & WAVE_DIRECTSOUND) {
1939         lpDesc->lpFormat->wFormatTag = wwo->format.Format.wFormatTag;
1940         lpDesc->lpFormat->nChannels = wwo->format.Format.nChannels;
1941         lpDesc->lpFormat->nSamplesPerSec = wwo->format.Format.nSamplesPerSec;
1942         lpDesc->lpFormat->wBitsPerSample = wwo->format.Format.wBitsPerSample;
1943         lpDesc->lpFormat->nBlockAlign = wwo->format.Format.nBlockAlign;
1944         lpDesc->lpFormat->nAvgBytesPerSec = wwo->format.Format.nAvgBytesPerSec;
1945     }
1946
1947     TRACE("Got this format: %ldx%dx%d %s\n",
1948           wwo->format.Format.nSamplesPerSec,
1949           wwo->format.Format.wBitsPerSample,
1950           wwo->format.Format.nChannels,
1951           getFormat(wwo->format.Format.wFormatTag));
1952
1953     dir=0; 
1954     EXIT_ON_ERROR( snd_pcm_hw_params_set_buffer_time_near(pcm, hw_params, &buffer_time, &dir), MMSYSERR_INVALPARAM, "unable to set buffer time");
1955     dir=0; 
1956     EXIT_ON_ERROR( snd_pcm_hw_params_set_period_time_near(pcm, hw_params, &period_time, &dir), MMSYSERR_INVALPARAM, "unable to set period time");
1957
1958     EXIT_ON_ERROR( snd_pcm_hw_params(pcm, hw_params), MMSYSERR_INVALPARAM, "unable to set hw params for playback");
1959     
1960     err = snd_pcm_hw_params_get_period_size(hw_params, &period_size, &dir);
1961     err = snd_pcm_hw_params_get_buffer_size(hw_params, &buffer_size);
1962
1963     snd_pcm_sw_params_current(pcm, sw_params);
1964     EXIT_ON_ERROR( snd_pcm_sw_params_set_start_threshold(pcm, sw_params, dwFlags & WAVE_DIRECTSOUND ? INT_MAX : 1 ), MMSYSERR_ERROR, "unable to set start threshold");
1965     EXIT_ON_ERROR( snd_pcm_sw_params_set_silence_size(pcm, sw_params, 0), MMSYSERR_ERROR, "unable to set silence size");
1966     EXIT_ON_ERROR( snd_pcm_sw_params_set_avail_min(pcm, sw_params, period_size), MMSYSERR_ERROR, "unable to set avail min");
1967     EXIT_ON_ERROR( snd_pcm_sw_params_set_xfer_align(pcm, sw_params, 1), MMSYSERR_ERROR, "unable to set xfer align");
1968     EXIT_ON_ERROR( snd_pcm_sw_params_set_silence_threshold(pcm, sw_params, 0), MMSYSERR_ERROR, "unable to set silence threshold");
1969     EXIT_ON_ERROR( snd_pcm_sw_params(pcm, sw_params), MMSYSERR_ERROR, "unable to set sw params for playback");
1970 #undef EXIT_ON_ERROR
1971
1972     snd_pcm_prepare(pcm);
1973
1974     if (TRACE_ON(wave))
1975         ALSA_TraceParameters(hw_params, sw_params, FALSE);
1976
1977     /* now, we can save all required data for later use... */
1978     if ( wwo->hw_params )
1979         snd_pcm_hw_params_free(wwo->hw_params);
1980     snd_pcm_hw_params_malloc(&(wwo->hw_params));
1981     snd_pcm_hw_params_copy(wwo->hw_params, hw_params);
1982
1983     wwo->dwBufferSize = snd_pcm_frames_to_bytes(pcm, buffer_size);
1984     wwo->lpQueuePtr = wwo->lpPlayPtr = wwo->lpLoopPtr = NULL;
1985     wwo->handle = pcm;
1986     wwo->dwPlayedTotal = wwo->dwWrittenTotal = 0;
1987     wwo->dwPartialOffset = 0;
1988
1989     ALSA_InitRingMessage(&wwo->msgRing);
1990
1991     wwo->count = snd_pcm_poll_descriptors_count (wwo->handle);
1992     if (wwo->count <= 0) {
1993         ERR("Invalid poll descriptors count\n");
1994         return MMSYSERR_ERROR;
1995     }
1996
1997     wwo->ufds = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY, sizeof(struct pollfd) * wwo->count);
1998     if (wwo->ufds == NULL) {
1999         ERR("No enough memory\n");
2000         return MMSYSERR_NOMEM;
2001     }
2002     if ((err = snd_pcm_poll_descriptors(wwo->handle, wwo->ufds, wwo->count)) < 0) {
2003         ERR("Unable to obtain poll descriptors for playback: %s\n", snd_strerror(err));
2004         return MMSYSERR_ERROR;
2005     }
2006
2007     if (!(dwFlags & WAVE_DIRECTSOUND)) {
2008         wwo->hStartUpEvent = CreateEventW(NULL, FALSE, FALSE, NULL);
2009         wwo->hThread = CreateThread(NULL, 0, wodPlayer, (LPVOID)(DWORD)wDevID, 0, &(wwo->dwThreadID));
2010         WaitForSingleObject(wwo->hStartUpEvent, INFINITE);
2011         CloseHandle(wwo->hStartUpEvent);
2012     } else {
2013         wwo->hThread = INVALID_HANDLE_VALUE;
2014         wwo->dwThreadID = 0;
2015     }
2016     wwo->hStartUpEvent = INVALID_HANDLE_VALUE;
2017
2018     TRACE("handle=%08lx \n", (DWORD)wwo->handle);
2019 /*    if (wwo->dwFragmentSize % wwo->format.Format.nBlockAlign)
2020         ERR("Fragment doesn't contain an integral number of data blocks\n");
2021 */
2022     TRACE("wBitsPerSample=%u, nAvgBytesPerSec=%lu, nSamplesPerSec=%lu, nChannels=%u nBlockAlign=%u!\n",
2023           wwo->format.Format.wBitsPerSample, wwo->format.Format.nAvgBytesPerSec,
2024           wwo->format.Format.nSamplesPerSec, wwo->format.Format.nChannels,
2025           wwo->format.Format.nBlockAlign);
2026
2027     return wodNotifyClient(wwo, WOM_OPEN, 0L, 0L);
2028 }
2029
2030
2031 /**************************************************************************
2032  *                              wodClose                        [internal]
2033  */
2034 static DWORD wodClose(WORD wDevID)
2035 {
2036     DWORD               ret = MMSYSERR_NOERROR;
2037     WINE_WAVEOUT*       wwo;
2038
2039     TRACE("(%u);\n", wDevID);
2040
2041     if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].handle == NULL) {
2042         WARN("bad device ID !\n");
2043         return MMSYSERR_BADDEVICEID;
2044     }
2045
2046     wwo = &WOutDev[wDevID];
2047     if (wwo->lpQueuePtr) {
2048         WARN("buffers still playing !\n");
2049         ret = WAVERR_STILLPLAYING;
2050     } else {
2051         if (wwo->hThread != INVALID_HANDLE_VALUE) {
2052             ALSA_AddRingMessage(&wwo->msgRing, WINE_WM_CLOSING, 0, TRUE);
2053         }
2054         ALSA_DestroyRingMessage(&wwo->msgRing);
2055
2056         snd_pcm_hw_params_free(wwo->hw_params);
2057         wwo->hw_params = NULL;
2058
2059         snd_pcm_close(wwo->handle);
2060         wwo->handle = NULL;
2061
2062         ret = wodNotifyClient(wwo, WOM_CLOSE, 0L, 0L);
2063     }
2064
2065     HeapFree(GetProcessHeap(), 0, wwo->ufds);
2066     return ret;
2067 }
2068
2069
2070 /**************************************************************************
2071  *                              wodWrite                        [internal]
2072  *
2073  */
2074 static DWORD wodWrite(WORD wDevID, LPWAVEHDR lpWaveHdr, DWORD dwSize)
2075 {
2076     TRACE("(%u, %p, %08lX);\n", wDevID, lpWaveHdr, dwSize);
2077
2078     /* first, do the sanity checks... */
2079     if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].handle == NULL) {
2080         WARN("bad dev ID !\n");
2081         return MMSYSERR_BADDEVICEID;
2082     }
2083
2084     if (lpWaveHdr->lpData == NULL || !(lpWaveHdr->dwFlags & WHDR_PREPARED))
2085         return WAVERR_UNPREPARED;
2086
2087     if (lpWaveHdr->dwFlags & WHDR_INQUEUE)
2088         return WAVERR_STILLPLAYING;
2089
2090     lpWaveHdr->dwFlags &= ~WHDR_DONE;
2091     lpWaveHdr->dwFlags |= WHDR_INQUEUE;
2092     lpWaveHdr->lpNext = 0;
2093
2094     ALSA_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_HEADER, (DWORD)lpWaveHdr, FALSE);
2095
2096     return MMSYSERR_NOERROR;
2097 }
2098
2099 /**************************************************************************
2100  *                      wodPause                                [internal]
2101  */
2102 static DWORD wodPause(WORD wDevID)
2103 {
2104     TRACE("(%u);!\n", wDevID);
2105
2106     if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].handle == NULL) {
2107         WARN("bad device ID !\n");
2108         return MMSYSERR_BADDEVICEID;
2109     }
2110
2111     ALSA_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_PAUSING, 0, TRUE);
2112
2113     return MMSYSERR_NOERROR;
2114 }
2115
2116 /**************************************************************************
2117  *                      wodRestart                              [internal]
2118  */
2119 static DWORD wodRestart(WORD wDevID)
2120 {
2121     TRACE("(%u);\n", wDevID);
2122
2123     if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].handle == NULL) {
2124         WARN("bad device ID !\n");
2125         return MMSYSERR_BADDEVICEID;
2126     }
2127
2128     if (WOutDev[wDevID].state == WINE_WS_PAUSED) {
2129         ALSA_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_RESTARTING, 0, TRUE);
2130     }
2131
2132     /* FIXME: is NotifyClient with WOM_DONE right ? (Comet Busters 1.3.3 needs this notification) */
2133     /* FIXME: Myst crashes with this ... hmm -MM
2134        return wodNotifyClient(wwo, WOM_DONE, 0L, 0L);
2135     */
2136
2137     return MMSYSERR_NOERROR;
2138 }
2139
2140 /**************************************************************************
2141  *                      wodReset                                [internal]
2142  */
2143 static DWORD wodReset(WORD wDevID)
2144 {
2145     TRACE("(%u);\n", wDevID);
2146
2147     if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].handle == NULL) {
2148         WARN("bad device ID !\n");
2149         return MMSYSERR_BADDEVICEID;
2150     }
2151
2152     ALSA_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_RESETTING, 0, TRUE);
2153
2154     return MMSYSERR_NOERROR;
2155 }
2156
2157 /**************************************************************************
2158  *                              wodGetPosition                  [internal]
2159  */
2160 static DWORD wodGetPosition(WORD wDevID, LPMMTIME lpTime, DWORD uSize)
2161 {
2162     WINE_WAVEOUT*       wwo;
2163
2164     TRACE("(%u, %p, %lu);\n", wDevID, lpTime, uSize);
2165
2166     if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].handle == NULL) {
2167         WARN("bad device ID !\n");
2168         return MMSYSERR_BADDEVICEID;
2169     }
2170
2171     if (lpTime == NULL) return MMSYSERR_INVALPARAM;
2172
2173     wwo = &WOutDev[wDevID];
2174     ALSA_AddRingMessage(&wwo->msgRing, WINE_WM_UPDATE, 0, TRUE);
2175
2176     return bytes_to_mmtime(lpTime, wwo->dwPlayedTotal, &wwo->format);
2177 }
2178
2179 /**************************************************************************
2180  *                              wodBreakLoop                    [internal]
2181  */
2182 static DWORD wodBreakLoop(WORD wDevID)
2183 {
2184     TRACE("(%u);\n", wDevID);
2185
2186     if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].handle == NULL) {
2187         WARN("bad device ID !\n");
2188         return MMSYSERR_BADDEVICEID;
2189     }
2190     ALSA_AddRingMessage(&WOutDev[wDevID].msgRing, WINE_WM_BREAKLOOP, 0, TRUE);
2191     return MMSYSERR_NOERROR;
2192 }
2193
2194 /**************************************************************************
2195  *                              wodGetVolume                    [internal]
2196  */
2197 static DWORD wodGetVolume(WORD wDevID, LPDWORD lpdwVol)
2198 {
2199     WORD               wleft, wright;
2200     WINE_WAVEOUT*      wwo;
2201     int                min, max;
2202     int                left, right;
2203     DWORD              rc;
2204
2205     TRACE("(%u, %p);\n", wDevID, lpdwVol);
2206     if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].handle == NULL) {
2207         WARN("bad device ID !\n");
2208         return MMSYSERR_BADDEVICEID;
2209     }
2210
2211     if (lpdwVol == NULL)
2212         return MMSYSERR_NOTENABLED;
2213
2214     wwo = &WOutDev[wDevID];
2215
2216     if (lpdwVol == NULL)
2217         return MMSYSERR_NOTENABLED;
2218
2219     rc = ALSA_CheckSetVolume(wwo->hctl, &left, &right, &min, &max, NULL, NULL, NULL);
2220     if (rc == MMSYSERR_NOERROR)
2221     {
2222 #define VOLUME_ALSA_TO_WIN(x) (  ( (((x)-min) * 65535) + (max-min)/2 ) /(max-min))
2223         wleft = VOLUME_ALSA_TO_WIN(left);
2224         wright = VOLUME_ALSA_TO_WIN(right);
2225 #undef VOLUME_ALSA_TO_WIN
2226         TRACE("left=%d,right=%d,converted to windows left %d, right %d\n", left, right, wleft, wright);
2227         *lpdwVol = MAKELONG( wleft, wright );
2228     }
2229     else
2230         TRACE("CheckSetVolume failed; rc %ld\n", rc);
2231
2232     return rc;
2233 }
2234
2235 /**************************************************************************
2236  *                              wodSetVolume                    [internal]
2237  */
2238 static DWORD wodSetVolume(WORD wDevID, DWORD dwParam)
2239 {
2240     WORD               wleft, wright;
2241     WINE_WAVEOUT*      wwo;
2242     int                min, max;
2243     int                left, right;
2244     DWORD              rc;
2245
2246     TRACE("(%u, %08lX);\n", wDevID, dwParam);
2247     if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].handle == NULL) {
2248         WARN("bad device ID !\n");
2249         return MMSYSERR_BADDEVICEID;
2250     }
2251     wwo = &WOutDev[wDevID];
2252
2253     rc = ALSA_CheckSetVolume(wwo->hctl, NULL, NULL, &min, &max, NULL, NULL, NULL);
2254     if (rc == MMSYSERR_NOERROR)
2255     {
2256         wleft  = LOWORD(dwParam);
2257         wright = HIWORD(dwParam);
2258 #define VOLUME_WIN_TO_ALSA(x) ( (  ( ((x) * (max-min)) + 32767) / 65535) + min )
2259         left = VOLUME_WIN_TO_ALSA(wleft);
2260         right = VOLUME_WIN_TO_ALSA(wright);
2261 #undef VOLUME_WIN_TO_ALSA
2262         rc = ALSA_CheckSetVolume(wwo->hctl, NULL, NULL, NULL, NULL, NULL, &left, &right);
2263         if (rc == MMSYSERR_NOERROR)
2264             TRACE("set volume:  wleft=%d, wright=%d, converted to alsa left %d, right %d\n", wleft, wright, left, right);
2265         else
2266             TRACE("SetVolume failed; rc %ld\n", rc);
2267     }
2268
2269     return rc;
2270 }
2271
2272 /**************************************************************************
2273  *                              wodGetNumDevs                   [internal]
2274  */
2275 static  DWORD   wodGetNumDevs(void)
2276 {
2277     return ALSA_WodNumDevs;
2278 }
2279
2280 /**************************************************************************
2281  *                              wodDevInterfaceSize             [internal]
2282  */
2283 static DWORD wodDevInterfaceSize(UINT wDevID, LPDWORD dwParam1)
2284 {
2285     TRACE("(%u, %p)\n", wDevID, dwParam1);
2286
2287     *dwParam1 = MultiByteToWideChar(CP_ACP, 0, WOutDev[wDevID].interface_name, -1,
2288                                     NULL, 0 ) * sizeof(WCHAR);
2289     return MMSYSERR_NOERROR;
2290 }
2291
2292 /**************************************************************************
2293  *                              wodDevInterface                 [internal]
2294  */
2295 static DWORD wodDevInterface(UINT wDevID, PWCHAR dwParam1, DWORD dwParam2)
2296 {
2297     if (dwParam2 >= MultiByteToWideChar(CP_ACP, 0, WOutDev[wDevID].interface_name, -1,
2298                                         NULL, 0 ) * sizeof(WCHAR))
2299     {
2300         MultiByteToWideChar(CP_ACP, 0, WOutDev[wDevID].interface_name, -1,
2301                             dwParam1, dwParam2 / sizeof(WCHAR));
2302         return MMSYSERR_NOERROR;
2303     }
2304     return MMSYSERR_INVALPARAM;
2305 }
2306
2307 /**************************************************************************
2308  *                              wodMessage (WINEALSA.@)
2309  */
2310 DWORD WINAPI ALSA_wodMessage(UINT wDevID, UINT wMsg, DWORD dwUser,
2311                              DWORD dwParam1, DWORD dwParam2)
2312 {
2313     TRACE("(%u, %s, %08lX, %08lX, %08lX);\n",
2314           wDevID, getMessage(wMsg), dwUser, dwParam1, dwParam2);
2315
2316     switch (wMsg) {
2317     case DRVM_INIT:
2318     case DRVM_EXIT:
2319     case DRVM_ENABLE:
2320     case DRVM_DISABLE:
2321         /* FIXME: Pretend this is supported */
2322         return 0;
2323     case WODM_OPEN:             return wodOpen          (wDevID, (LPWAVEOPENDESC)dwParam1,      dwParam2);
2324     case WODM_CLOSE:            return wodClose         (wDevID);
2325     case WODM_GETDEVCAPS:       return wodGetDevCaps    (wDevID, (LPWAVEOUTCAPSW)dwParam1,      dwParam2);
2326     case WODM_GETNUMDEVS:       return wodGetNumDevs    ();
2327     case WODM_GETPITCH:         return MMSYSERR_NOTSUPPORTED;
2328     case WODM_SETPITCH:         return MMSYSERR_NOTSUPPORTED;
2329     case WODM_GETPLAYBACKRATE:  return MMSYSERR_NOTSUPPORTED;
2330     case WODM_SETPLAYBACKRATE:  return MMSYSERR_NOTSUPPORTED;
2331     case WODM_WRITE:            return wodWrite         (wDevID, (LPWAVEHDR)dwParam1,           dwParam2);
2332     case WODM_PAUSE:            return wodPause         (wDevID);
2333     case WODM_GETPOS:           return wodGetPosition   (wDevID, (LPMMTIME)dwParam1,            dwParam2);
2334     case WODM_BREAKLOOP:        return wodBreakLoop     (wDevID);
2335     case WODM_PREPARE:          return MMSYSERR_NOTSUPPORTED;
2336     case WODM_UNPREPARE:        return MMSYSERR_NOTSUPPORTED;
2337     case WODM_GETVOLUME:        return wodGetVolume     (wDevID, (LPDWORD)dwParam1);
2338     case WODM_SETVOLUME:        return wodSetVolume     (wDevID, dwParam1);
2339     case WODM_RESTART:          return wodRestart       (wDevID);
2340     case WODM_RESET:            return wodReset         (wDevID);
2341     case DRV_QUERYDEVICEINTERFACESIZE: return wodDevInterfaceSize       (wDevID, (LPDWORD)dwParam1);
2342     case DRV_QUERYDEVICEINTERFACE:     return wodDevInterface           (wDevID, (PWCHAR)dwParam1, dwParam2);
2343     case DRV_QUERYDSOUNDIFACE:  return wodDsCreate      (wDevID, (PIDSDRIVER*)dwParam1);
2344     case DRV_QUERYDSOUNDDESC:   return wodDsDesc        (wDevID, (PDSDRIVERDESC)dwParam1);
2345
2346     default:
2347         FIXME("unknown message %d!\n", wMsg);
2348     }
2349     return MMSYSERR_NOTSUPPORTED;
2350 }
2351
2352 /*======================================================================*
2353  *                  Low level DSOUND implementation                     *
2354  *======================================================================*/
2355
2356 typedef struct IDsDriverImpl IDsDriverImpl;
2357 typedef struct IDsDriverBufferImpl IDsDriverBufferImpl;
2358
2359 struct IDsDriverImpl
2360 {
2361     /* IUnknown fields */
2362     IDsDriverVtbl      *lpVtbl;
2363     DWORD               ref;
2364     /* IDsDriverImpl fields */
2365     UINT                wDevID;
2366     IDsDriverBufferImpl*primary;
2367 };
2368
2369 struct IDsDriverBufferImpl
2370 {
2371     /* IUnknown fields */
2372     IDsDriverBufferVtbl      *lpVtbl;
2373     DWORD                     ref;
2374     /* IDsDriverBufferImpl fields */
2375     IDsDriverImpl*            drv;
2376
2377     CRITICAL_SECTION          mmap_crst;
2378     LPVOID                    mmap_buffer;
2379     DWORD                     mmap_buflen_bytes;
2380     snd_pcm_uframes_t         mmap_buflen_frames;
2381     snd_pcm_channel_area_t *  mmap_areas;
2382     snd_async_handler_t *     mmap_async_handler;
2383 };
2384
2385 static void DSDB_CheckXRUN(IDsDriverBufferImpl* pdbi)
2386 {
2387     WINE_WAVEOUT *     wwo = &(WOutDev[pdbi->drv->wDevID]);
2388     snd_pcm_state_t    state = snd_pcm_state(wwo->handle);
2389
2390     if ( state == SND_PCM_STATE_XRUN )
2391     {
2392         int            err = snd_pcm_prepare(wwo->handle);
2393         TRACE("xrun occurred\n");
2394         if ( err < 0 )
2395             ERR("recovery from xrun failed, prepare failed: %s\n", snd_strerror(err));
2396     }
2397     else if ( state == SND_PCM_STATE_SUSPENDED )
2398     {
2399         int            err = snd_pcm_resume(wwo->handle);
2400         TRACE("recovery from suspension occurred\n");
2401         if (err < 0 && err != -EAGAIN){
2402             err = snd_pcm_prepare(wwo->handle);
2403             if (err < 0)
2404                 ERR("recovery from suspend failed, prepare failed: %s\n", snd_strerror(err));
2405         }
2406     }
2407 }
2408
2409 static void DSDB_MMAPCopy(IDsDriverBufferImpl* pdbi)
2410 {
2411     WINE_WAVEOUT *     wwo = &(WOutDev[pdbi->drv->wDevID]);
2412     unsigned int       channels;
2413     snd_pcm_format_t   format;
2414     snd_pcm_uframes_t  period_size;
2415     snd_pcm_sframes_t  avail;
2416     int err;
2417     int dir=0;
2418
2419     if ( !pdbi->mmap_buffer || !wwo->hw_params || !wwo->handle)
2420         return;
2421
2422     err = snd_pcm_hw_params_get_channels(wwo->hw_params, &channels);
2423     err = snd_pcm_hw_params_get_format(wwo->hw_params, &format);
2424     dir=0;
2425     err = snd_pcm_hw_params_get_period_size(wwo->hw_params, &period_size, &dir);
2426     avail = snd_pcm_avail_update(wwo->handle);
2427
2428     DSDB_CheckXRUN(pdbi);
2429
2430     TRACE("avail=%d format=%s channels=%d\n", (int)avail, snd_pcm_format_name(format), channels );
2431
2432     while (avail >= period_size)
2433     {
2434         const snd_pcm_channel_area_t *areas;
2435         snd_pcm_uframes_t     ofs;
2436         snd_pcm_uframes_t     frames;
2437         int                   err;
2438
2439         frames = avail / period_size * period_size; /* round down to a multiple of period_size */
2440
2441         EnterCriticalSection(&pdbi->mmap_crst);
2442
2443         snd_pcm_mmap_begin(wwo->handle, &areas, &ofs, &frames);
2444         if (areas != pdbi->mmap_areas || areas->addr != pdbi->mmap_areas->addr)
2445             FIXME("Can't access sound driver's buffer directly.\n");
2446         err = snd_pcm_mmap_commit(wwo->handle, ofs, frames);
2447
2448         LeaveCriticalSection(&pdbi->mmap_crst);
2449
2450         if ( err != (snd_pcm_sframes_t) frames)
2451             ERR("mmap partially failed.\n");
2452
2453         avail = snd_pcm_avail_update(wwo->handle);
2454     }
2455  }
2456
2457 static void DSDB_PCMCallback(snd_async_handler_t *ahandler)
2458 {
2459     /* snd_pcm_t *               handle = snd_async_handler_get_pcm(ahandler); */
2460     IDsDriverBufferImpl*      pdbi = snd_async_handler_get_callback_private(ahandler);
2461     TRACE("callback called\n");
2462     DSDB_MMAPCopy(pdbi);
2463 }
2464
2465 static int DSDB_CreateMMAP(IDsDriverBufferImpl* pdbi)
2466 {
2467     WINE_WAVEOUT *            wwo = &(WOutDev[pdbi->drv->wDevID]);
2468     snd_pcm_format_t          format;
2469     snd_pcm_uframes_t         frames;
2470     snd_pcm_uframes_t         ofs;
2471     snd_pcm_uframes_t         avail;
2472     unsigned int              channels;
2473     unsigned int              bits_per_sample;
2474     unsigned int              bits_per_frame;
2475     int                       err;
2476
2477     err = snd_pcm_hw_params_get_format(wwo->hw_params, &format);
2478     err = snd_pcm_hw_params_get_buffer_size(wwo->hw_params, &frames);
2479     err = snd_pcm_hw_params_get_channels(wwo->hw_params, &channels);
2480     bits_per_sample = snd_pcm_format_physical_width(format);
2481     bits_per_frame = bits_per_sample * channels;
2482
2483
2484     if (TRACE_ON(wave))
2485         ALSA_TraceParameters(wwo->hw_params, NULL, FALSE);
2486
2487     TRACE("format=%s  frames=%ld  channels=%d  bits_per_sample=%d  bits_per_frame=%d\n",
2488           snd_pcm_format_name(format), frames, channels, bits_per_sample, bits_per_frame);
2489
2490     pdbi->mmap_buflen_frames = frames;
2491     pdbi->mmap_buflen_bytes = snd_pcm_frames_to_bytes( wwo->handle, frames );
2492
2493     avail = snd_pcm_avail_update(wwo->handle);
2494     if (avail < 0)
2495     {
2496         ERR("No buffer is available: %s.", snd_strerror(avail));
2497         return DSERR_GENERIC;
2498     }
2499     err = snd_pcm_mmap_begin(wwo->handle, (const snd_pcm_channel_area_t **)&pdbi->mmap_areas, &ofs, &avail);
2500     if ( err < 0 )
2501     {
2502         ERR("Can't map sound device for direct access: %s\n", snd_strerror(err));
2503         return DSERR_GENERIC;
2504     }
2505     avail = 0;/* We don't have any data to commit yet */
2506     err = snd_pcm_mmap_commit(wwo->handle, ofs, avail);
2507     if (ofs > 0)
2508         err = snd_pcm_rewind(wwo->handle, ofs);
2509     pdbi->mmap_buffer = pdbi->mmap_areas->addr;
2510
2511     snd_pcm_format_set_silence(format, pdbi->mmap_buffer, frames );
2512
2513     TRACE("created mmap buffer of %ld frames (%ld bytes) at %p\n",
2514         frames, pdbi->mmap_buflen_bytes, pdbi->mmap_buffer);
2515
2516     InitializeCriticalSection(&pdbi->mmap_crst);
2517
2518     err = snd_async_add_pcm_handler(&pdbi->mmap_async_handler, wwo->handle, DSDB_PCMCallback, pdbi);
2519     if ( err < 0 )
2520     {
2521         ERR("add_pcm_handler failed. reason: %s\n", snd_strerror(err));
2522         return DSERR_GENERIC;
2523     }
2524
2525     return DS_OK;
2526 }
2527
2528 static void DSDB_DestroyMMAP(IDsDriverBufferImpl* pdbi)
2529 {
2530     TRACE("mmap buffer %p destroyed\n", pdbi->mmap_buffer);
2531     pdbi->mmap_areas = NULL;
2532     pdbi->mmap_buffer = NULL;
2533     DeleteCriticalSection(&pdbi->mmap_crst);
2534 }
2535
2536
2537 static HRESULT WINAPI IDsDriverBufferImpl_QueryInterface(PIDSDRIVERBUFFER iface, REFIID riid, LPVOID *ppobj)
2538 {
2539     /* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
2540     FIXME("(): stub!\n");
2541     return DSERR_UNSUPPORTED;
2542 }
2543
2544 static ULONG WINAPI IDsDriverBufferImpl_AddRef(PIDSDRIVERBUFFER iface)
2545 {
2546     IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
2547     ULONG refCount = InterlockedIncrement(&This->ref);
2548
2549     TRACE("(%p)->(ref before=%lu)\n",This, refCount - 1);
2550
2551     return refCount;
2552 }
2553
2554 static ULONG WINAPI IDsDriverBufferImpl_Release(PIDSDRIVERBUFFER iface)
2555 {
2556     IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
2557     ULONG refCount = InterlockedDecrement(&This->ref);
2558
2559     TRACE("(%p)->(ref before=%lu)\n",This, refCount + 1);
2560
2561     if (refCount)
2562         return refCount;
2563     if (This == This->drv->primary)
2564         This->drv->primary = NULL;
2565     DSDB_DestroyMMAP(This);
2566     HeapFree(GetProcessHeap(), 0, This);
2567     return 0;
2568 }
2569
2570 static HRESULT WINAPI IDsDriverBufferImpl_Lock(PIDSDRIVERBUFFER iface,
2571                                                LPVOID*ppvAudio1,LPDWORD pdwLen1,
2572                                                LPVOID*ppvAudio2,LPDWORD pdwLen2,
2573                                                DWORD dwWritePosition,DWORD dwWriteLen,
2574                                                DWORD dwFlags)
2575 {
2576     /* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
2577     TRACE("(%p)\n",iface);
2578     return DSERR_UNSUPPORTED;
2579 }
2580
2581 static HRESULT WINAPI IDsDriverBufferImpl_Unlock(PIDSDRIVERBUFFER iface,
2582                                                  LPVOID pvAudio1,DWORD dwLen1,
2583                                                  LPVOID pvAudio2,DWORD dwLen2)
2584 {
2585     /* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
2586     TRACE("(%p)\n",iface);
2587     return DSERR_UNSUPPORTED;
2588 }
2589
2590 static HRESULT WINAPI IDsDriverBufferImpl_SetFormat(PIDSDRIVERBUFFER iface,
2591                                                     LPWAVEFORMATEX pwfx)
2592 {
2593     /* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
2594     TRACE("(%p,%p)\n",iface,pwfx);
2595     return DSERR_BUFFERLOST;
2596 }
2597
2598 static HRESULT WINAPI IDsDriverBufferImpl_SetFrequency(PIDSDRIVERBUFFER iface, DWORD dwFreq)
2599 {
2600     /* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
2601     TRACE("(%p,%ld): stub\n",iface,dwFreq);
2602     return DSERR_UNSUPPORTED;
2603 }
2604
2605 static HRESULT WINAPI IDsDriverBufferImpl_SetVolumePan(PIDSDRIVERBUFFER iface, PDSVOLUMEPAN pVolPan)
2606 {
2607     DWORD vol;
2608     IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
2609     TRACE("(%p,%p)\n",iface,pVolPan);
2610     vol = pVolPan->dwTotalLeftAmpFactor | (pVolPan->dwTotalRightAmpFactor << 16);
2611                                                                                 
2612     if (wodSetVolume(This->drv->wDevID, vol) != MMSYSERR_NOERROR) {
2613         WARN("wodSetVolume failed\n");
2614         return DSERR_INVALIDPARAM;
2615     }
2616
2617     return DS_OK;
2618 }
2619
2620 static HRESULT WINAPI IDsDriverBufferImpl_SetPosition(PIDSDRIVERBUFFER iface, DWORD dwNewPos)
2621 {
2622     /* IDsDriverImpl *This = (IDsDriverImpl *)iface; */
2623     TRACE("(%p,%ld): stub\n",iface,dwNewPos);
2624     return DSERR_UNSUPPORTED;
2625 }
2626
2627 static HRESULT WINAPI IDsDriverBufferImpl_GetPosition(PIDSDRIVERBUFFER iface,
2628                                                       LPDWORD lpdwPlay, LPDWORD lpdwWrite)
2629 {
2630     IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
2631     WINE_WAVEOUT *      wwo = &(WOutDev[This->drv->wDevID]);
2632     snd_pcm_uframes_t   hw_ptr;
2633     snd_pcm_uframes_t   period_size;
2634     int dir;
2635     int err;
2636
2637     if (wwo->hw_params == NULL) return DSERR_GENERIC;
2638
2639     dir=0;
2640     err = snd_pcm_hw_params_get_period_size(wwo->hw_params, &period_size, &dir);
2641
2642     if (wwo->handle == NULL) return DSERR_GENERIC;
2643     /** we need to track down buffer underruns */
2644     DSDB_CheckXRUN(This);
2645
2646     EnterCriticalSection(&This->mmap_crst);
2647     /* FIXME: snd_pcm_mmap_hw_ptr() should not be accessed by a user app. */
2648     /*        It will NOT return what why want anyway. */
2649     hw_ptr = _snd_pcm_mmap_hw_ptr(wwo->handle);
2650     if (lpdwPlay)
2651         *lpdwPlay = snd_pcm_frames_to_bytes(wwo->handle, hw_ptr/ period_size  * period_size) % This->mmap_buflen_bytes;
2652     if (lpdwWrite)
2653         *lpdwWrite = snd_pcm_frames_to_bytes(wwo->handle, (hw_ptr / period_size + 1) * period_size ) % This->mmap_buflen_bytes;
2654     LeaveCriticalSection(&This->mmap_crst);
2655
2656     TRACE("hw_ptr=0x%08x, playpos=%ld, writepos=%ld\n", (unsigned int)hw_ptr, lpdwPlay?*lpdwPlay:-1, lpdwWrite?*lpdwWrite:-1);
2657     return DS_OK;
2658 }
2659
2660 static HRESULT WINAPI IDsDriverBufferImpl_Play(PIDSDRIVERBUFFER iface, DWORD dwRes1, DWORD dwRes2, DWORD dwFlags)
2661 {
2662     IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
2663     WINE_WAVEOUT *       wwo = &(WOutDev[This->drv->wDevID]);
2664     snd_pcm_state_t      state;
2665     int                  err;
2666
2667     TRACE("(%p,%lx,%lx,%lx)\n",iface,dwRes1,dwRes2,dwFlags);
2668
2669     if (wwo->handle == NULL) return DSERR_GENERIC;
2670
2671     state = snd_pcm_state(wwo->handle);
2672     if ( state == SND_PCM_STATE_SETUP )
2673     {
2674         err = snd_pcm_prepare(wwo->handle);
2675         state = snd_pcm_state(wwo->handle);
2676     }
2677     if ( state == SND_PCM_STATE_PREPARED )
2678      {
2679         DSDB_MMAPCopy(This);
2680         err = snd_pcm_start(wwo->handle);
2681      }
2682     return DS_OK;
2683 }
2684
2685 static HRESULT WINAPI IDsDriverBufferImpl_Stop(PIDSDRIVERBUFFER iface)
2686 {
2687     IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
2688     WINE_WAVEOUT *    wwo = &(WOutDev[This->drv->wDevID]);
2689     int               err;
2690     DWORD             play;
2691     DWORD             write;
2692
2693     TRACE("(%p)\n",iface);
2694
2695     if (wwo->handle == NULL) return DSERR_GENERIC;
2696
2697     /* ring buffer wrap up detection */
2698     IDsDriverBufferImpl_GetPosition(iface, &play, &write);
2699     if ( play > write)
2700     {
2701         TRACE("writepos wrapper up\n");
2702         return DS_OK;
2703     }
2704
2705     if ( ( err = snd_pcm_drop(wwo->handle)) < 0 )
2706     {
2707         ERR("error while stopping pcm: %s\n", snd_strerror(err));
2708         return DSERR_GENERIC;
2709     }
2710     return DS_OK;
2711 }
2712
2713 static IDsDriverBufferVtbl dsdbvt =
2714 {
2715     IDsDriverBufferImpl_QueryInterface,
2716     IDsDriverBufferImpl_AddRef,
2717     IDsDriverBufferImpl_Release,
2718     IDsDriverBufferImpl_Lock,
2719     IDsDriverBufferImpl_Unlock,
2720     IDsDriverBufferImpl_SetFormat,
2721     IDsDriverBufferImpl_SetFrequency,
2722     IDsDriverBufferImpl_SetVolumePan,
2723     IDsDriverBufferImpl_SetPosition,
2724     IDsDriverBufferImpl_GetPosition,
2725     IDsDriverBufferImpl_Play,
2726     IDsDriverBufferImpl_Stop
2727 };
2728
2729 static HRESULT WINAPI IDsDriverImpl_QueryInterface(PIDSDRIVER iface, REFIID riid, LPVOID *ppobj)
2730 {
2731     /* IDsDriverImpl *This = (IDsDriverImpl *)iface; */
2732     FIXME("(%p): stub!\n",iface);
2733     return DSERR_UNSUPPORTED;
2734 }
2735
2736 static ULONG WINAPI IDsDriverImpl_AddRef(PIDSDRIVER iface)
2737 {
2738     IDsDriverImpl *This = (IDsDriverImpl *)iface;
2739     ULONG refCount = InterlockedIncrement(&This->ref);
2740
2741     TRACE("(%p)->(ref before=%lu)\n",This, refCount - 1);
2742
2743     return refCount;
2744 }
2745
2746 static ULONG WINAPI IDsDriverImpl_Release(PIDSDRIVER iface)
2747 {
2748     IDsDriverImpl *This = (IDsDriverImpl *)iface;
2749     ULONG refCount = InterlockedDecrement(&This->ref);
2750
2751     TRACE("(%p)->(ref before=%lu)\n",This, refCount + 1);
2752
2753     if (refCount)
2754         return refCount;
2755     HeapFree(GetProcessHeap(),0,This);
2756     return 0;
2757 }
2758
2759 static HRESULT WINAPI IDsDriverImpl_GetDriverDesc(PIDSDRIVER iface, PDSDRIVERDESC pDesc)
2760 {
2761     IDsDriverImpl *This = (IDsDriverImpl *)iface;
2762     TRACE("(%p,%p)\n",iface,pDesc);
2763     memcpy(pDesc, &(WOutDev[This->wDevID].ds_desc), sizeof(DSDRIVERDESC));
2764     pDesc->dwFlags = DSDDESC_DOMMSYSTEMOPEN | DSDDESC_DOMMSYSTEMSETFORMAT |
2765         DSDDESC_USESYSTEMMEMORY | DSDDESC_DONTNEEDPRIMARYLOCK;
2766     pDesc->dnDevNode            = WOutDev[This->wDevID].waveDesc.dnDevNode;
2767     pDesc->wVxdId               = 0;
2768     pDesc->wReserved            = 0;
2769     pDesc->ulDeviceNum          = This->wDevID;
2770     pDesc->dwHeapType           = DSDHEAP_NOHEAP;
2771     pDesc->pvDirectDrawHeap     = NULL;
2772     pDesc->dwMemStartAddress    = 0;
2773     pDesc->dwMemEndAddress      = 0;
2774     pDesc->dwMemAllocExtra      = 0;
2775     pDesc->pvReserved1          = NULL;
2776     pDesc->pvReserved2          = NULL;
2777     return DS_OK;
2778 }
2779
2780 static HRESULT WINAPI IDsDriverImpl_Open(PIDSDRIVER iface)
2781 {
2782     /* IDsDriverImpl *This = (IDsDriverImpl *)iface; */
2783     TRACE("(%p)\n",iface);
2784     return DS_OK;
2785 }
2786
2787 static HRESULT WINAPI IDsDriverImpl_Close(PIDSDRIVER iface)
2788 {
2789     /* IDsDriverImpl *This = (IDsDriverImpl *)iface; */
2790     TRACE("(%p)\n",iface);
2791     return DS_OK;
2792 }
2793
2794 static HRESULT WINAPI IDsDriverImpl_GetCaps(PIDSDRIVER iface, PDSDRIVERCAPS pCaps)
2795 {
2796     IDsDriverImpl *This = (IDsDriverImpl *)iface;
2797     TRACE("(%p,%p)\n",iface,pCaps);
2798     memcpy(pCaps, &(WOutDev[This->wDevID].ds_caps), sizeof(DSDRIVERCAPS));
2799     return DS_OK;
2800 }
2801
2802 static HRESULT WINAPI IDsDriverImpl_CreateSoundBuffer(PIDSDRIVER iface,
2803                                                       LPWAVEFORMATEX pwfx,
2804                                                       DWORD dwFlags, DWORD dwCardAddress,
2805                                                       LPDWORD pdwcbBufferSize,
2806                                                       LPBYTE *ppbBuffer,
2807                                                       LPVOID *ppvObj)
2808 {
2809     IDsDriverImpl *This = (IDsDriverImpl *)iface;
2810     IDsDriverBufferImpl** ippdsdb = (IDsDriverBufferImpl**)ppvObj;
2811     int err;
2812
2813     TRACE("(%p,%p,%lx,%lx)\n",iface,pwfx,dwFlags,dwCardAddress);
2814     /* we only support primary buffers */
2815     if (!(dwFlags & DSBCAPS_PRIMARYBUFFER))
2816         return DSERR_UNSUPPORTED;
2817     if (This->primary)
2818         return DSERR_ALLOCATED;
2819     if (dwFlags & (DSBCAPS_CTRLFREQUENCY | DSBCAPS_CTRLPAN))
2820         return DSERR_CONTROLUNAVAIL;
2821
2822     *ippdsdb = HeapAlloc(GetProcessHeap(),0,sizeof(IDsDriverBufferImpl));
2823     if (*ippdsdb == NULL)
2824         return DSERR_OUTOFMEMORY;
2825     (*ippdsdb)->lpVtbl  = &dsdbvt;
2826     (*ippdsdb)->ref     = 1;
2827     (*ippdsdb)->drv     = This;
2828
2829     err = DSDB_CreateMMAP((*ippdsdb));
2830     if ( err != DS_OK )
2831      {
2832         HeapFree(GetProcessHeap(), 0, *ippdsdb);
2833         *ippdsdb = NULL;
2834         return err;
2835      }
2836     *ppbBuffer = (*ippdsdb)->mmap_buffer;
2837     *pdwcbBufferSize = (*ippdsdb)->mmap_buflen_bytes;
2838
2839     This->primary = *ippdsdb;
2840
2841     /* buffer is ready to go */
2842     TRACE("buffer created at %p\n", *ippdsdb);
2843     return DS_OK;
2844 }
2845
2846 static HRESULT WINAPI IDsDriverImpl_DuplicateSoundBuffer(PIDSDRIVER iface,
2847                                                          PIDSDRIVERBUFFER pBuffer,
2848                                                          LPVOID *ppvObj)
2849 {
2850     /* IDsDriverImpl *This = (IDsDriverImpl *)iface; */
2851     TRACE("(%p,%p): stub\n",iface,pBuffer);
2852     return DSERR_INVALIDCALL;
2853 }
2854
2855 static IDsDriverVtbl dsdvt =
2856 {
2857     IDsDriverImpl_QueryInterface,
2858     IDsDriverImpl_AddRef,
2859     IDsDriverImpl_Release,
2860     IDsDriverImpl_GetDriverDesc,
2861     IDsDriverImpl_Open,
2862     IDsDriverImpl_Close,
2863     IDsDriverImpl_GetCaps,
2864     IDsDriverImpl_CreateSoundBuffer,
2865     IDsDriverImpl_DuplicateSoundBuffer
2866 };
2867
2868 static DWORD wodDsCreate(UINT wDevID, PIDSDRIVER* drv)
2869 {
2870     IDsDriverImpl** idrv = (IDsDriverImpl**)drv;
2871
2872     TRACE("driver created\n");
2873
2874     /* the HAL isn't much better than the HEL if we can't do mmap() */
2875     if (!(WOutDev[wDevID].caps.dwSupport & WAVECAPS_DIRECTSOUND)) {
2876         ERR("DirectSound flag not set\n");
2877         MESSAGE("This sound card's driver does not support direct access\n");
2878         MESSAGE("The (slower) DirectSound HEL mode will be used instead.\n");
2879         return MMSYSERR_NOTSUPPORTED;
2880     }
2881
2882     *idrv = HeapAlloc(GetProcessHeap(),0,sizeof(IDsDriverImpl));
2883     if (!*idrv)
2884         return MMSYSERR_NOMEM;
2885     (*idrv)->lpVtbl     = &dsdvt;
2886     (*idrv)->ref        = 1;
2887
2888     (*idrv)->wDevID     = wDevID;
2889     (*idrv)->primary    = NULL;
2890     return MMSYSERR_NOERROR;
2891 }
2892
2893 static DWORD wodDsDesc(UINT wDevID, PDSDRIVERDESC desc)
2894 {
2895     memcpy(desc, &(WOutDev[wDevID].ds_desc), sizeof(DSDRIVERDESC));
2896     return MMSYSERR_NOERROR;
2897 }
2898
2899 /*======================================================================*
2900 *                  Low level WAVE IN implementation                     *
2901 *======================================================================*/
2902
2903 /**************************************************************************
2904 *                       widNotifyClient                 [internal]
2905 */
2906 static DWORD widNotifyClient(WINE_WAVEIN* wwi, WORD wMsg, DWORD dwParam1, DWORD dwParam2)
2907 {
2908    TRACE("wMsg = 0x%04x dwParm1 = %04lX dwParam2 = %04lX\n", wMsg, dwParam1, dwParam2);
2909
2910    switch (wMsg) {
2911    case WIM_OPEN:
2912    case WIM_CLOSE:
2913    case WIM_DATA:
2914        if (wwi->wFlags != DCB_NULL &&
2915            !DriverCallback(wwi->waveDesc.dwCallback, wwi->wFlags, (HDRVR)wwi->waveDesc.hWave,
2916                            wMsg, wwi->waveDesc.dwInstance, dwParam1, dwParam2)) {
2917            WARN("can't notify client !\n");
2918            return MMSYSERR_ERROR;
2919        }
2920        break;
2921    default:
2922        FIXME("Unknown callback message %u\n", wMsg);
2923        return MMSYSERR_INVALPARAM;
2924    }
2925    return MMSYSERR_NOERROR;
2926 }
2927
2928 /**************************************************************************
2929  *                      widGetDevCaps                           [internal]
2930  */
2931 static DWORD widGetDevCaps(WORD wDevID, LPWAVEOUTCAPSW lpCaps, DWORD dwSize)
2932 {
2933     TRACE("(%u, %p, %lu);\n", wDevID, lpCaps, dwSize);
2934
2935     if (lpCaps == NULL) return MMSYSERR_NOTENABLED;
2936
2937     if (wDevID >= MAX_WAVEINDRV) {
2938         TRACE("MAX_WAVOUTDRV reached !\n");
2939         return MMSYSERR_BADDEVICEID;
2940     }
2941
2942     memcpy(lpCaps, &WInDev[wDevID].caps, min(dwSize, sizeof(*lpCaps)));
2943     return MMSYSERR_NOERROR;
2944 }
2945
2946 /**************************************************************************
2947  *                              widRecorder_ReadHeaders         [internal]
2948  */
2949 static void widRecorder_ReadHeaders(WINE_WAVEIN * wwi)
2950 {
2951     enum win_wm_message tmp_msg;
2952     DWORD               tmp_param;
2953     HANDLE              tmp_ev;
2954     WAVEHDR*            lpWaveHdr;
2955
2956     while (ALSA_RetrieveRingMessage(&wwi->msgRing, &tmp_msg, &tmp_param, &tmp_ev)) {
2957         if (tmp_msg == WINE_WM_HEADER) {
2958             LPWAVEHDR*  wh;
2959             lpWaveHdr = (LPWAVEHDR)tmp_param;
2960             lpWaveHdr->lpNext = 0;
2961
2962             if (wwi->lpQueuePtr == 0)
2963                 wwi->lpQueuePtr = lpWaveHdr;
2964             else {
2965                 for (wh = &(wwi->lpQueuePtr); *wh; wh = &((*wh)->lpNext));
2966                 *wh = lpWaveHdr;
2967             }
2968         } else {
2969             ERR("should only have headers left\n");
2970         }
2971     }
2972 }
2973
2974 /**************************************************************************
2975  *                              widRecorder                     [internal]
2976  */
2977 static  DWORD   CALLBACK        widRecorder(LPVOID pmt)
2978 {
2979     WORD                uDevID = (DWORD)pmt;
2980     WINE_WAVEIN*        wwi = (WINE_WAVEIN*)&WInDev[uDevID];
2981     WAVEHDR*            lpWaveHdr;
2982     DWORD               dwSleepTime;
2983     DWORD               bytesRead;
2984     LPVOID              buffer = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, wwi->dwPeriodSize);
2985     char               *pOffset = buffer;
2986     enum win_wm_message msg;
2987     DWORD               param;
2988     HANDLE              ev;
2989     DWORD               frames_per_period;
2990
2991     wwi->state = WINE_WS_STOPPED;
2992     wwi->dwTotalRecorded = 0;
2993     wwi->lpQueuePtr = NULL;
2994
2995     SetEvent(wwi->hStartUpEvent);
2996
2997     /* make sleep time to be # of ms to output a period */
2998     dwSleepTime = (1024/*wwi-dwPeriodSize => overrun!*/ * 1000) / wwi->format.Format.nAvgBytesPerSec;
2999     frames_per_period = snd_pcm_bytes_to_frames(wwi->handle, wwi->dwPeriodSize); 
3000     TRACE("sleeptime=%ld ms\n", dwSleepTime);
3001
3002     for (;;) {
3003         /* wait for dwSleepTime or an event in thread's queue */
3004         /* FIXME: could improve wait time depending on queue state,
3005          * ie, number of queued fragments
3006          */
3007         if (wwi->lpQueuePtr != NULL && wwi->state == WINE_WS_PLAYING)
3008         {
3009             int periods;
3010             DWORD frames;
3011             DWORD bytes;
3012             DWORD read;
3013
3014             lpWaveHdr = wwi->lpQueuePtr;
3015             /* read all the fragments accumulated so far */
3016             frames = snd_pcm_avail_update(wwi->handle);
3017             bytes = snd_pcm_frames_to_bytes(wwi->handle, frames);
3018             TRACE("frames = %ld  bytes = %ld\n", frames, bytes);
3019             periods = bytes / wwi->dwPeriodSize;
3020             while ((periods > 0) && (wwi->lpQueuePtr))
3021             {
3022                 periods--;
3023                 bytes = wwi->dwPeriodSize;
3024                 TRACE("bytes = %ld\n",bytes);
3025                 if (lpWaveHdr->dwBufferLength - lpWaveHdr->dwBytesRecorded >= wwi->dwPeriodSize)
3026                 {
3027                     /* directly read fragment in wavehdr */
3028                     read = wwi->read(wwi->handle, lpWaveHdr->lpData + lpWaveHdr->dwBytesRecorded, frames_per_period);
3029                     bytesRead = snd_pcm_frames_to_bytes(wwi->handle, read);
3030                         
3031                     TRACE("bytesRead=%ld (direct)\n", bytesRead);
3032                     if (bytesRead != (DWORD) -1)
3033                     {
3034                         /* update number of bytes recorded in current buffer and by this device */
3035                         lpWaveHdr->dwBytesRecorded += bytesRead;
3036                         wwi->dwTotalRecorded       += bytesRead;
3037
3038                         /* buffer is full. notify client */
3039                         if (lpWaveHdr->dwBytesRecorded == lpWaveHdr->dwBufferLength)
3040                         {
3041                             /* must copy the value of next waveHdr, because we have no idea of what
3042                              * will be done with the content of lpWaveHdr in callback
3043                              */
3044                             LPWAVEHDR   lpNext = lpWaveHdr->lpNext;
3045
3046                             lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
3047                             lpWaveHdr->dwFlags |=  WHDR_DONE;
3048
3049                             wwi->lpQueuePtr = lpNext;
3050                             widNotifyClient(wwi, WIM_DATA, (DWORD)lpWaveHdr, 0);
3051                             lpWaveHdr = lpNext;
3052                         }
3053                     } else {
3054                         TRACE("read(%s, %p, %ld) failed (%s)\n", wwi->device,
3055                             lpWaveHdr->lpData + lpWaveHdr->dwBytesRecorded,
3056                             frames_per_period, strerror(errno));
3057                     }
3058                 }
3059                 else
3060                 {
3061                     /* read the fragment in a local buffer */
3062                     read = wwi->read(wwi->handle, buffer, frames_per_period);
3063                     bytesRead = snd_pcm_frames_to_bytes(wwi->handle, read);
3064                     pOffset = buffer;
3065
3066                     TRACE("bytesRead=%ld (local)\n", bytesRead);
3067
3068                     if (bytesRead == (DWORD) -1) {
3069                         TRACE("read(%s, %p, %ld) failed (%s)\n", wwi->device,
3070                               buffer, frames_per_period, strerror(errno));
3071                         continue;
3072                     }   
3073
3074                     /* copy data in client buffers */
3075                     while (bytesRead != (DWORD) -1 && bytesRead > 0)
3076                     {
3077                         DWORD dwToCopy = min (bytesRead, lpWaveHdr->dwBufferLength - lpWaveHdr->dwBytesRecorded);
3078
3079                         memcpy(lpWaveHdr->lpData + lpWaveHdr->dwBytesRecorded,
3080                                pOffset,
3081                                dwToCopy);
3082
3083                         /* update number of bytes recorded in current buffer and by this device */
3084                         lpWaveHdr->dwBytesRecorded += dwToCopy;
3085                         wwi->dwTotalRecorded += dwToCopy;
3086                         bytesRead -= dwToCopy;
3087                         pOffset   += dwToCopy;
3088
3089                         /* client buffer is full. notify client */
3090                         if (lpWaveHdr->dwBytesRecorded == lpWaveHdr->dwBufferLength)
3091                         {
3092                             /* must copy the value of next waveHdr, because we have no idea of what
3093                              * will be done with the content of lpWaveHdr in callback
3094                              */
3095                             LPWAVEHDR   lpNext = lpWaveHdr->lpNext;
3096                             TRACE("lpNext=%p\n", lpNext);
3097
3098                             lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
3099                             lpWaveHdr->dwFlags |=  WHDR_DONE;
3100
3101                             wwi->lpQueuePtr = lpNext;
3102                             widNotifyClient(wwi, WIM_DATA, (DWORD)lpWaveHdr, 0);
3103
3104                             lpWaveHdr = lpNext;
3105                             if (!lpNext && bytesRead) {
3106                                 /* before we give up, check for more header messages */
3107                                 while (ALSA_PeekRingMessage(&wwi->msgRing, &msg, &param, &ev))
3108                                 {
3109                                     if (msg == WINE_WM_HEADER) {
3110                                         LPWAVEHDR hdr;
3111                                         ALSA_RetrieveRingMessage(&wwi->msgRing, &msg, &param, &ev);
3112                                         hdr = ((LPWAVEHDR)param);
3113                                         TRACE("msg = %s, hdr = %p, ev = %p\n", getCmdString(msg), hdr, ev);
3114                                         hdr->lpNext = 0;
3115                                         if (lpWaveHdr == 0) {
3116                                             /* new head of queue */
3117                                             wwi->lpQueuePtr = lpWaveHdr = hdr;
3118                                         } else {
3119                                             /* insert buffer at the end of queue */
3120                                             LPWAVEHDR*  wh;
3121                                             for (wh = &(wwi->lpQueuePtr); *wh; wh = &((*wh)->lpNext));
3122                                             *wh = hdr;
3123                                         }
3124                                     } else
3125                                         break;
3126                                 }
3127
3128                                 if (lpWaveHdr == 0) {
3129                                     /* no more buffer to copy data to, but we did read more.
3130                                      * what hasn't been copied will be dropped
3131                                      */
3132                                     WARN("buffer under run! %lu bytes dropped.\n", bytesRead);
3133                                     wwi->lpQueuePtr = NULL;
3134                                     break;
3135                                 }
3136                             }
3137                         }
3138                     }
3139                 }
3140             }
3141         }
3142
3143         WAIT_OMR(&wwi->msgRing, dwSleepTime);
3144
3145         while (ALSA_RetrieveRingMessage(&wwi->msgRing, &msg, &param, &ev))
3146         {
3147             TRACE("msg=%s param=0x%lx\n", getCmdString(msg), param);
3148             switch (msg) {
3149             case WINE_WM_PAUSING:
3150                 wwi->state = WINE_WS_PAUSED;
3151                 /*FIXME("Device should stop recording\n");*/
3152                 SetEvent(ev);
3153                 break;
3154             case WINE_WM_STARTING:
3155                 wwi->state = WINE_WS_PLAYING;
3156                 snd_pcm_start(wwi->handle);
3157                 SetEvent(ev);
3158                 break;
3159             case WINE_WM_HEADER:
3160                 lpWaveHdr = (LPWAVEHDR)param;
3161                 lpWaveHdr->lpNext = 0;
3162
3163                 /* insert buffer at the end of queue */
3164                 {
3165                     LPWAVEHDR*  wh;
3166                     for (wh = &(wwi->lpQueuePtr); *wh; wh = &((*wh)->lpNext));
3167                     *wh = lpWaveHdr;
3168                 }
3169                 break;
3170             case WINE_WM_STOPPING:
3171                 if (wwi->state != WINE_WS_STOPPED)
3172                 {
3173                     snd_pcm_drain(wwi->handle);
3174
3175                     /* read any headers in queue */
3176                     widRecorder_ReadHeaders(wwi);
3177
3178                     /* return current buffer to app */
3179                     lpWaveHdr = wwi->lpQueuePtr;
3180                     if (lpWaveHdr)
3181                     {
3182                         LPWAVEHDR       lpNext = lpWaveHdr->lpNext;
3183                         TRACE("stop %p %p\n", lpWaveHdr, lpWaveHdr->lpNext);
3184                         lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
3185                         lpWaveHdr->dwFlags |= WHDR_DONE;
3186                         wwi->lpQueuePtr = lpNext;
3187                         widNotifyClient(wwi, WIM_DATA, (DWORD)lpWaveHdr, 0);
3188                     }
3189                 }
3190                 wwi->state = WINE_WS_STOPPED;
3191                 SetEvent(ev);
3192                 break;
3193             case WINE_WM_RESETTING:
3194                 if (wwi->state != WINE_WS_STOPPED)
3195                 {
3196                     snd_pcm_drain(wwi->handle);
3197                 }
3198                 wwi->state = WINE_WS_STOPPED;
3199                 wwi->dwTotalRecorded = 0;
3200
3201                 /* read any headers in queue */
3202                 widRecorder_ReadHeaders(wwi);
3203
3204                 /* return all buffers to the app */
3205                 for (lpWaveHdr = wwi->lpQueuePtr; lpWaveHdr; lpWaveHdr = lpWaveHdr->lpNext) {
3206                     TRACE("reset %p %p\n", lpWaveHdr, lpWaveHdr->lpNext);
3207                     lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
3208                     lpWaveHdr->dwFlags |= WHDR_DONE;
3209                     wwi->lpQueuePtr = lpWaveHdr->lpNext;
3210                     widNotifyClient(wwi, WIM_DATA, (DWORD)lpWaveHdr, 0);
3211                 }
3212
3213                 wwi->lpQueuePtr = NULL;
3214                 SetEvent(ev);
3215                 break;
3216             case WINE_WM_CLOSING:
3217                 wwi->hThread = 0;
3218                 wwi->state = WINE_WS_CLOSED;
3219                 SetEvent(ev);
3220                 HeapFree(GetProcessHeap(), 0, buffer);
3221                 ExitThread(0);
3222                 /* shouldn't go here */
3223             case WINE_WM_UPDATE:
3224                 SetEvent(ev);
3225                 break;
3226
3227             default:
3228                 FIXME("unknown message %d\n", msg);
3229                 break;
3230             }
3231         }
3232     }
3233     ExitThread(0);
3234     /* just for not generating compilation warnings... should never be executed */
3235     return 0;
3236 }
3237
3238 /**************************************************************************
3239  *                              widOpen                         [internal]
3240  */
3241 static DWORD widOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
3242 {
3243     WINE_WAVEIN*                wwi;
3244     snd_pcm_hw_params_t *       hw_params;
3245     snd_pcm_sw_params_t *       sw_params;
3246     snd_pcm_access_t            access;
3247     snd_pcm_format_t            format;
3248     unsigned int                rate;
3249     unsigned int                buffer_time = 500000;
3250     unsigned int                period_time = 10000;
3251     snd_pcm_uframes_t           buffer_size;
3252     snd_pcm_uframes_t           period_size;
3253     int                         flags;
3254     snd_pcm_t *                 pcm;
3255     int                         err;
3256     int                         dir;
3257
3258     snd_pcm_hw_params_alloca(&hw_params);
3259     snd_pcm_sw_params_alloca(&sw_params);
3260
3261     TRACE("(%u, %p, %08lX);\n", wDevID, lpDesc, dwFlags);
3262     if (lpDesc == NULL) {
3263         WARN("Invalid Parameter !\n");
3264         return MMSYSERR_INVALPARAM;
3265     }
3266     if (wDevID >= MAX_WAVEOUTDRV) {
3267         TRACE("MAX_WAVOUTDRV reached !\n");
3268         return MMSYSERR_BADDEVICEID;
3269     }
3270
3271     /* only PCM format is supported so far... */
3272     if (!supportedFormat(lpDesc->lpFormat)) {
3273         WARN("Bad format: tag=%04X nChannels=%d nSamplesPerSec=%ld !\n",
3274              lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
3275              lpDesc->lpFormat->nSamplesPerSec);
3276         return WAVERR_BADFORMAT;
3277     }
3278
3279     if (dwFlags & WAVE_FORMAT_QUERY) {
3280         TRACE("Query format: tag=%04X nChannels=%d nSamplesPerSec=%ld !\n",
3281              lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
3282              lpDesc->lpFormat->nSamplesPerSec);
3283         return MMSYSERR_NOERROR;
3284     }
3285
3286     wwi = &WInDev[wDevID];
3287
3288     if ((dwFlags & WAVE_DIRECTSOUND) && !(wwi->dwSupport & WAVECAPS_DIRECTSOUND))
3289         /* not supported, ignore it */
3290         dwFlags &= ~WAVE_DIRECTSOUND;
3291
3292     wwi->handle = 0;
3293     flags = SND_PCM_NONBLOCK;
3294 #if 0
3295     if ( dwFlags & WAVE_DIRECTSOUND )
3296         flags |= SND_PCM_ASYNC;
3297 #endif
3298
3299     if ( (err=snd_pcm_open(&pcm, wwi->device, SND_PCM_STREAM_CAPTURE, flags)) < 0 )
3300     {
3301         ERR("Error open: %s\n", snd_strerror(err));
3302         return MMSYSERR_NOTENABLED;
3303     }
3304
3305     wwi->wFlags = HIWORD(dwFlags & CALLBACK_TYPEMASK);
3306
3307     memcpy(&wwi->waveDesc, lpDesc, sizeof(WAVEOPENDESC));
3308     copy_format(lpDesc->lpFormat, &wwi->format);
3309
3310     if (wwi->format.Format.wBitsPerSample == 0) {
3311         WARN("Resetting zeroed wBitsPerSample\n");
3312         wwi->format.Format.wBitsPerSample = 8 *
3313             (wwi->format.Format.nAvgBytesPerSec /
3314              wwi->format.Format.nSamplesPerSec) /
3315             wwi->format.Format.nChannels;
3316     }
3317
3318     snd_pcm_hw_params_any(pcm, hw_params);
3319
3320 #define EXIT_ON_ERROR(f,e,txt) do \
3321 { \
3322     int err; \
3323     if ( (err = (f) ) < 0) \
3324     { \
3325         ERR(txt ": %s\n", snd_strerror(err)); \
3326         snd_pcm_close(pcm); \
3327         return e; \
3328     } \
3329 } while(0)
3330
3331     access = SND_PCM_ACCESS_MMAP_INTERLEAVED;
3332     if ( ( err = snd_pcm_hw_params_set_access(pcm, hw_params, access ) ) < 0) {
3333         WARN("mmap not available. switching to standard write.\n");
3334         access = SND_PCM_ACCESS_RW_INTERLEAVED;
3335         EXIT_ON_ERROR( snd_pcm_hw_params_set_access(pcm, hw_params, access ), MMSYSERR_INVALPARAM, "unable to set access for playback");
3336         wwi->read = snd_pcm_readi;
3337     }
3338     else
3339         wwi->read = snd_pcm_mmap_readi;
3340
3341     EXIT_ON_ERROR( snd_pcm_hw_params_set_channels(pcm, hw_params, wwi->format.Format.nChannels), MMSYSERR_INVALPARAM, "unable to set required channels");
3342
3343     if ((wwi->format.Format.wFormatTag == WAVE_FORMAT_PCM) ||
3344         ((wwi->format.Format.wFormatTag == WAVE_FORMAT_EXTENSIBLE) &&
3345         IsEqualGUID(&wwi->format.SubFormat, &KSDATAFORMAT_SUBTYPE_PCM))) {
3346         format = (wwi->format.Format.wBitsPerSample == 8) ? SND_PCM_FORMAT_U8 :
3347                  (wwi->format.Format.wBitsPerSample == 16) ? SND_PCM_FORMAT_S16_LE :
3348                  (wwi->format.Format.wBitsPerSample == 24) ? SND_PCM_FORMAT_S24_LE :
3349                  (wwi->format.Format.wBitsPerSample == 32) ? SND_PCM_FORMAT_S32_LE : -1;
3350     } else if ((wwi->format.Format.wFormatTag == WAVE_FORMAT_EXTENSIBLE) &&
3351         IsEqualGUID(&wwi->format.SubFormat, &KSDATAFORMAT_SUBTYPE_IEEE_FLOAT)){
3352         format = (wwi->format.Format.wBitsPerSample == 32) ? SND_PCM_FORMAT_FLOAT_LE : -1;
3353     } else if (wwi->format.Format.wFormatTag == WAVE_FORMAT_MULAW) {
3354         FIXME("unimplemented format: WAVE_FORMAT_MULAW\n");
3355         snd_pcm_close(pcm);
3356         return WAVERR_BADFORMAT;
3357     } else if (wwi->format.Format.wFormatTag == WAVE_FORMAT_ALAW) {
3358         FIXME("unimplemented format: WAVE_FORMAT_ALAW\n");
3359         snd_pcm_close(pcm);
3360         return WAVERR_BADFORMAT;
3361     } else if (wwi->format.Format.wFormatTag == WAVE_FORMAT_ADPCM) {
3362         FIXME("unimplemented format: WAVE_FORMAT_ADPCM\n");
3363         snd_pcm_close(pcm);
3364         return WAVERR_BADFORMAT;
3365     } else {
3366         ERR("invalid format: %0x04x\n", wwi->format.Format.wFormatTag);
3367         snd_pcm_close(pcm);
3368         return WAVERR_BADFORMAT;
3369     }
3370
3371     EXIT_ON_ERROR( snd_pcm_hw_params_set_format(pcm, hw_params, format), MMSYSERR_INVALPARAM, "unable to set required format");
3372
3373     rate = wwi->format.Format.nSamplesPerSec;
3374     dir = 0;
3375     err = snd_pcm_hw_params_set_rate_near(pcm, hw_params, &rate, &dir);
3376     if (err < 0) {
3377         ERR("Rate %ld Hz not available for playback: %s\n", wwi->format.Format.nSamplesPerSec, snd_strerror(rate));
3378         snd_pcm_close(pcm);
3379         return WAVERR_BADFORMAT;
3380     }
3381     if (rate != wwi->format.Format.nSamplesPerSec) {
3382         ERR("Rate doesn't match (requested %ld Hz, got %d Hz)\n", wwi->format.Format.nSamplesPerSec, rate);
3383         snd_pcm_close(pcm);
3384         return WAVERR_BADFORMAT;
3385     }
3386     
3387     dir=0; 
3388     EXIT_ON_ERROR( snd_pcm_hw_params_set_buffer_time_near(pcm, hw_params, &buffer_time, &dir), MMSYSERR_INVALPARAM, "unable to set buffer time");
3389     dir=0; 
3390     EXIT_ON_ERROR( snd_pcm_hw_params_set_period_time_near(pcm, hw_params, &period_time, &dir), MMSYSERR_INVALPARAM, "unable to set period time");
3391
3392     EXIT_ON_ERROR( snd_pcm_hw_params(pcm, hw_params), MMSYSERR_INVALPARAM, "unable to set hw params for playback");
3393     
3394     dir=0;
3395     err = snd_pcm_hw_params_get_period_size(hw_params, &period_size, &dir);
3396     err = snd_pcm_hw_params_get_buffer_size(hw_params, &buffer_size);
3397
3398     snd_pcm_sw_params_current(pcm, sw_params);
3399     EXIT_ON_ERROR( snd_pcm_sw_params_set_start_threshold(pcm, sw_params, dwFlags & WAVE_DIRECTSOUND ? INT_MAX : 1 ), MMSYSERR_ERROR, "unable to set start threshold");
3400     EXIT_ON_ERROR( snd_pcm_sw_params_set_silence_size(pcm, sw_params, 0), MMSYSERR_ERROR, "unable to set silence size");
3401     EXIT_ON_ERROR( snd_pcm_sw_params_set_avail_min(pcm, sw_params, period_size), MMSYSERR_ERROR, "unable to set avail min");
3402     EXIT_ON_ERROR( snd_pcm_sw_params_set_xfer_align(pcm, sw_params, 1), MMSYSERR_ERROR, "unable to set xfer align");
3403     EXIT_ON_ERROR( snd_pcm_sw_params_set_silence_threshold(pcm, sw_params, 0), MMSYSERR_ERROR, "unable to set silence threshold");
3404     EXIT_ON_ERROR( snd_pcm_sw_params(pcm, sw_params), MMSYSERR_ERROR, "unable to set sw params for playback");
3405 #undef EXIT_ON_ERROR
3406
3407     snd_pcm_prepare(pcm);
3408
3409     if (TRACE_ON(wave))
3410         ALSA_TraceParameters(hw_params, sw_params, FALSE);
3411
3412     /* now, we can save all required data for later use... */
3413     if ( wwi->hw_params )
3414         snd_pcm_hw_params_free(wwi->hw_params);
3415     snd_pcm_hw_params_malloc(&(wwi->hw_params));
3416     snd_pcm_hw_params_copy(wwi->hw_params, hw_params);
3417
3418     wwi->dwBufferSize = snd_pcm_frames_to_bytes(pcm, buffer_size);
3419     wwi->lpQueuePtr = wwi->lpPlayPtr = wwi->lpLoopPtr = NULL;
3420     wwi->handle = pcm;
3421
3422     ALSA_InitRingMessage(&wwi->msgRing);
3423
3424     wwi->count = snd_pcm_poll_descriptors_count (wwi->handle);
3425     if (wwi->count <= 0) {
3426         ERR("Invalid poll descriptors count\n");
3427         return MMSYSERR_ERROR;
3428     }
3429
3430     wwi->ufds = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY, sizeof(struct pollfd) * wwi->count);
3431     if (wwi->ufds == NULL) {
3432         ERR("No enough memory\n");
3433         return MMSYSERR_NOMEM;
3434     }
3435     if ((err = snd_pcm_poll_descriptors(wwi->handle, wwi->ufds, wwi->count)) < 0) {
3436         ERR("Unable to obtain poll descriptors for playback: %s\n", snd_strerror(err));
3437         return MMSYSERR_ERROR;
3438     }
3439
3440     wwi->dwPeriodSize = period_size;
3441     /*if (wwi->dwFragmentSize % wwi->format.Format.nBlockAlign)
3442         ERR("Fragment doesn't contain an integral number of data blocks\n");
3443     */
3444     TRACE("dwPeriodSize=%lu\n", wwi->dwPeriodSize);
3445     TRACE("wBitsPerSample=%u, nAvgBytesPerSec=%lu, nSamplesPerSec=%lu, nChannels=%u nBlockAlign=%u!\n",
3446           wwi->format.Format.wBitsPerSample, wwi->format.Format.nAvgBytesPerSec,
3447           wwi->format.Format.nSamplesPerSec, wwi->format.Format.nChannels,
3448           wwi->format.Format.nBlockAlign);
3449
3450     if (!(dwFlags & WAVE_DIRECTSOUND)) {
3451         wwi->hStartUpEvent = CreateEventW(NULL, FALSE, FALSE, NULL);
3452         wwi->hThread = CreateThread(NULL, 0, widRecorder, (LPVOID)(DWORD)wDevID, 0, &(wwi->dwThreadID));
3453         WaitForSingleObject(wwi->hStartUpEvent, INFINITE);
3454         CloseHandle(wwi->hStartUpEvent);
3455     } else {
3456         wwi->hThread = INVALID_HANDLE_VALUE;
3457         wwi->dwThreadID = 0;
3458     }
3459     wwi->hStartUpEvent = INVALID_HANDLE_VALUE;
3460
3461     return widNotifyClient(wwi, WIM_OPEN, 0L, 0L);
3462 }
3463
3464
3465 /**************************************************************************
3466  *                              widClose                        [internal]
3467  */
3468 static DWORD widClose(WORD wDevID)
3469 {
3470     DWORD               ret = MMSYSERR_NOERROR;
3471     WINE_WAVEIN*        wwi;
3472
3473     TRACE("(%u);\n", wDevID);
3474
3475     if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].handle == NULL) {
3476         WARN("bad device ID !\n");
3477         return MMSYSERR_BADDEVICEID;
3478     }
3479
3480     wwi = &WInDev[wDevID];
3481     if (wwi->lpQueuePtr) {
3482         WARN("buffers still playing !\n");
3483         ret = WAVERR_STILLPLAYING;
3484     } else {
3485         if (wwi->hThread != INVALID_HANDLE_VALUE) {
3486             ALSA_AddRingMessage(&wwi->msgRing, WINE_WM_CLOSING, 0, TRUE);
3487         }
3488         ALSA_DestroyRingMessage(&wwi->msgRing);
3489
3490         snd_pcm_hw_params_free(wwi->hw_params);
3491         wwi->hw_params = NULL;
3492
3493         snd_pcm_close(wwi->handle);
3494         wwi->handle = NULL;
3495
3496         ret = widNotifyClient(wwi, WIM_CLOSE, 0L, 0L);
3497     }
3498
3499     HeapFree(GetProcessHeap(), 0, wwi->ufds);
3500     return ret;
3501 }
3502
3503 /**************************************************************************
3504  *                              widAddBuffer                    [internal]
3505  *
3506  */
3507 static DWORD widAddBuffer(WORD wDevID, LPWAVEHDR lpWaveHdr, DWORD dwSize)
3508 {
3509     TRACE("(%u, %p, %08lX);\n", wDevID, lpWaveHdr, dwSize);
3510
3511     /* first, do the sanity checks... */
3512     if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].handle == NULL) {
3513         WARN("bad dev ID !\n");
3514         return MMSYSERR_BADDEVICEID;
3515     }
3516
3517     if (lpWaveHdr->lpData == NULL || !(lpWaveHdr->dwFlags & WHDR_PREPARED))
3518         return WAVERR_UNPREPARED;
3519
3520     if (lpWaveHdr->dwFlags & WHDR_INQUEUE)
3521         return WAVERR_STILLPLAYING;
3522
3523     lpWaveHdr->dwFlags &= ~WHDR_DONE;
3524     lpWaveHdr->dwFlags |= WHDR_INQUEUE;
3525     lpWaveHdr->lpNext = 0;
3526
3527     ALSA_AddRingMessage(&WInDev[wDevID].msgRing, WINE_WM_HEADER, (DWORD)lpWaveHdr, FALSE);
3528
3529     return MMSYSERR_NOERROR;
3530 }
3531
3532 /**************************************************************************
3533  *                              widStart                        [internal]
3534  *
3535  */
3536 static DWORD widStart(WORD wDevID, LPWAVEHDR lpWaveHdr, DWORD dwSize)
3537 {
3538     TRACE("(%u, %p, %08lX);\n", wDevID, lpWaveHdr, dwSize);
3539
3540     /* first, do the sanity checks... */
3541     if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].handle == NULL) {
3542         WARN("bad dev ID !\n");
3543         return MMSYSERR_BADDEVICEID;
3544     }
3545     
3546     ALSA_AddRingMessage(&WInDev[wDevID].msgRing, WINE_WM_STARTING, 0, TRUE);
3547
3548     Sleep(500);
3549
3550     return MMSYSERR_NOERROR;
3551 }
3552
3553 /**************************************************************************
3554  *                              widStop                 [internal]
3555  *
3556  */
3557 static DWORD widStop(WORD wDevID, LPWAVEHDR lpWaveHdr, DWORD dwSize)
3558 {
3559     TRACE("(%u, %p, %08lX);\n", wDevID, lpWaveHdr, dwSize);
3560
3561     /* first, do the sanity checks... */
3562     if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].handle == NULL) {
3563         WARN("bad dev ID !\n");
3564         return MMSYSERR_BADDEVICEID;
3565     }
3566
3567     ALSA_AddRingMessage(&WInDev[wDevID].msgRing, WINE_WM_STOPPING, 0, TRUE);
3568
3569     return MMSYSERR_NOERROR;
3570 }
3571
3572 /**************************************************************************
3573  *                      widReset                                [internal]
3574  */
3575 static DWORD widReset(WORD wDevID)
3576 {
3577     TRACE("(%u);\n", wDevID);
3578     if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].state == WINE_WS_CLOSED) {
3579         WARN("can't reset !\n");
3580         return MMSYSERR_INVALHANDLE;
3581     }
3582     ALSA_AddRingMessage(&WInDev[wDevID].msgRing, WINE_WM_RESETTING, 0, TRUE);
3583     return MMSYSERR_NOERROR;
3584 }
3585
3586 /**************************************************************************
3587  *                              widGetPosition                  [internal]
3588  */
3589 static DWORD widGetPosition(WORD wDevID, LPMMTIME lpTime, DWORD uSize)
3590 {
3591     WINE_WAVEIN*        wwi;
3592
3593     TRACE("(%u, %p, %lu);\n", wDevID, lpTime, uSize);
3594
3595     if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].state == WINE_WS_CLOSED) {
3596         WARN("can't get pos !\n");
3597         return MMSYSERR_INVALHANDLE;
3598     }
3599
3600     if (lpTime == NULL) {
3601         WARN("invalid parameter: lpTime = NULL\n");
3602         return MMSYSERR_INVALPARAM;
3603     }
3604
3605     wwi = &WInDev[wDevID];
3606     ALSA_AddRingMessage(&wwi->msgRing, WINE_WM_UPDATE, 0, TRUE);
3607
3608     return bytes_to_mmtime(lpTime, wwi->dwTotalRecorded, &wwi->format);
3609 }
3610
3611 /**************************************************************************
3612  *                              widGetNumDevs                   [internal]
3613  */
3614 static  DWORD   widGetNumDevs(void)
3615 {
3616     return ALSA_WidNumDevs;
3617 }
3618
3619 /**************************************************************************
3620  *                              widDevInterfaceSize             [internal]
3621  */
3622 static DWORD widDevInterfaceSize(UINT wDevID, LPDWORD dwParam1)
3623 {
3624     TRACE("(%u, %p)\n", wDevID, dwParam1);
3625
3626     *dwParam1 = MultiByteToWideChar(CP_ACP, 0, WInDev[wDevID].interface_name, -1,
3627                                     NULL, 0 ) * sizeof(WCHAR);
3628     return MMSYSERR_NOERROR;
3629 }
3630
3631 /**************************************************************************
3632  *                              widDevInterface                 [internal]
3633  */
3634 static DWORD widDevInterface(UINT wDevID, PWCHAR dwParam1, DWORD dwParam2)
3635 {
3636     if (dwParam2 >= MultiByteToWideChar(CP_ACP, 0, WInDev[wDevID].interface_name, -1,
3637                                         NULL, 0 ) * sizeof(WCHAR))
3638     {
3639         MultiByteToWideChar(CP_ACP, 0, WInDev[wDevID].interface_name, -1,
3640                             dwParam1, dwParam2 / sizeof(WCHAR));
3641         return MMSYSERR_NOERROR;
3642     }
3643     return MMSYSERR_INVALPARAM;
3644 }
3645
3646 /**************************************************************************
3647  *                              widDsCreate                     [internal]
3648  */
3649 static DWORD widDsCreate(UINT wDevID, PIDSCDRIVER* drv)
3650 {
3651     TRACE("(%d,%p)\n",wDevID,drv);
3652
3653     /* the HAL isn't much better than the HEL if we can't do mmap() */
3654     FIXME("DirectSoundCapture not implemented\n");
3655     MESSAGE("The (slower) DirectSound HEL mode will be used instead.\n");
3656     return MMSYSERR_NOTSUPPORTED;
3657 }
3658
3659 /**************************************************************************
3660  *                              widDsDesc                       [internal]
3661  */
3662 static DWORD widDsDesc(UINT wDevID, PDSDRIVERDESC desc)
3663 {
3664     memcpy(desc, &(WInDev[wDevID].ds_desc), sizeof(DSDRIVERDESC));
3665     return MMSYSERR_NOERROR;
3666 }
3667
3668 /**************************************************************************
3669  *                              widMessage (WINEALSA.@)
3670  */
3671 DWORD WINAPI ALSA_widMessage(UINT wDevID, UINT wMsg, DWORD dwUser,
3672                              DWORD dwParam1, DWORD dwParam2)
3673 {
3674     TRACE("(%u, %s, %08lX, %08lX, %08lX);\n",
3675           wDevID, getMessage(wMsg), dwUser, dwParam1, dwParam2);
3676
3677     switch (wMsg) {
3678     case DRVM_INIT:
3679     case DRVM_EXIT:
3680     case DRVM_ENABLE:
3681     case DRVM_DISABLE:
3682         /* FIXME: Pretend this is supported */
3683         return 0;
3684     case WIDM_OPEN:             return widOpen          (wDevID, (LPWAVEOPENDESC)dwParam1,      dwParam2);
3685     case WIDM_CLOSE:            return widClose         (wDevID);
3686     case WIDM_ADDBUFFER:        return widAddBuffer     (wDevID, (LPWAVEHDR)dwParam1,           dwParam2);
3687     case WIDM_PREPARE:          return MMSYSERR_NOTSUPPORTED;
3688     case WIDM_UNPREPARE:        return MMSYSERR_NOTSUPPORTED;
3689     case WIDM_GETDEVCAPS:       return widGetDevCaps    (wDevID, (LPWAVEOUTCAPSW)dwParam1,      dwParam2);
3690     case WIDM_GETNUMDEVS:       return widGetNumDevs    ();
3691     case WIDM_GETPOS:           return widGetPosition   (wDevID, (LPMMTIME)dwParam1,            dwParam2);
3692     case WIDM_RESET:            return widReset         (wDevID);
3693     case WIDM_START:            return widStart (wDevID, (LPWAVEHDR)dwParam1,           dwParam2);
3694     case WIDM_STOP:             return widStop  (wDevID, (LPWAVEHDR)dwParam1,           dwParam2);
3695     case DRV_QUERYDEVICEINTERFACESIZE: return widDevInterfaceSize       (wDevID, (LPDWORD)dwParam1);
3696     case DRV_QUERYDEVICEINTERFACE:     return widDevInterface           (wDevID, (PWCHAR)dwParam1, dwParam2);
3697     case DRV_QUERYDSOUNDIFACE:  return widDsCreate   (wDevID, (PIDSCDRIVER*)dwParam1);
3698     case DRV_QUERYDSOUNDDESC:   return widDsDesc     (wDevID, (PDSDRIVERDESC)dwParam1);
3699     default:
3700         FIXME("unknown message %d!\n", wMsg);
3701     }
3702     return MMSYSERR_NOTSUPPORTED;
3703 }
3704
3705 #else
3706
3707 /**************************************************************************
3708  *                              widMessage (WINEALSA.@)
3709  */
3710 DWORD WINAPI ALSA_widMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
3711                              DWORD dwParam1, DWORD dwParam2)
3712 {
3713     FIXME("(%u, %04X, %08lX, %08lX, %08lX):stub\n", wDevID, wMsg, dwUser, dwParam1, dwParam2);
3714     return MMSYSERR_NOTENABLED;
3715 }
3716
3717 /**************************************************************************
3718  *                              wodMessage (WINEALSA.@)
3719  */
3720 DWORD WINAPI ALSA_wodMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
3721                              DWORD dwParam1, DWORD dwParam2)
3722 {
3723     FIXME("(%u, %04X, %08lX, %08lX, %08lX):stub\n", wDevID, wMsg, dwUser, dwParam1, dwParam2);
3724     return MMSYSERR_NOTENABLED;
3725 }
3726
3727 #endif /* HAVE_ALSA */