2002-08-01 20:22:38 +02:00
|
|
|
/*
|
|
|
|
* Wine Driver for Libaudioio
|
|
|
|
* Derived from the Wine OSS Sample Driver
|
|
|
|
* Copyright 1994 Martin Ayotte
|
|
|
|
* 1999 Eric Pouech (async playing in waveOut/waveIn)
|
|
|
|
* 2000 Eric Pouech (loops in waveOut)
|
|
|
|
* 2002 Robert Lunnon (Modifications for libaudioio)
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-08-01 20:22:38 +02:00
|
|
|
*
|
|
|
|
*
|
2004-01-06 23:08:33 +01:00
|
|
|
* Note large hacks done to effectively disable DSound altogether
|
|
|
|
* Also Input is not yet working (Lots more work to be done there)
|
|
|
|
* But this does make a reasonable output driver for solaris until the arts
|
|
|
|
* driver comes up to speed
|
2002-08-01 20:22:38 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME:
|
|
|
|
* pause in waveOut does not work correctly
|
|
|
|
* full duplex (in/out) is not working (device is opened twice for Out
|
|
|
|
* and In) (OSS is known for its poor duplex capabilities, alsa is
|
|
|
|
* better)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2002-08-01 20:22:38 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2002-08-17 02:43:16 +02:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2002-08-01 20:22:38 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2002-08-09 03:07:29 +02:00
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
#endif
|
2002-08-01 20:22:38 +02:00
|
|
|
#ifdef HAVE_SYS_MMAN_H
|
|
|
|
# include <sys/mman.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBAUDIOIO_H
|
|
|
|
#include <libaudioio.h>
|
|
|
|
#endif
|
|
|
|
#include "windef.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winbase.h"
|
2005-05-07 14:17:28 +02:00
|
|
|
#include "wine/unicode.h"
|
2002-08-01 20:22:38 +02:00
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winerror.h"
|
2005-05-07 14:17:28 +02:00
|
|
|
#include "winuser.h"
|
2002-08-01 20:22:38 +02:00
|
|
|
#include "mmddk.h"
|
|
|
|
#include "dsound.h"
|
|
|
|
#include "dsdriver.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wave);
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBAUDIOIO
|
|
|
|
|
|
|
|
/* Allow 1% deviation for sample rates (some ES137x cards) */
|
|
|
|
#define NEAR_MATCH(rate1,rate2) (((100*((int)(rate1)-(int)(rate2)))/(rate1))==0)
|
|
|
|
|
|
|
|
#define SOUND_DEV "/dev/audio"
|
|
|
|
#define DEFAULT_FRAGMENT_SIZE 4096
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define MAX_WAVEOUTDRV (1)
|
|
|
|
#define MAX_WAVEINDRV (1)
|
|
|
|
|
|
|
|
/* state diagram for waveOut writing:
|
|
|
|
*
|
|
|
|
* +---------+-------------+---------------+---------------------------------+
|
|
|
|
* | state | function | event | new state |
|
|
|
|
* +---------+-------------+---------------+---------------------------------+
|
|
|
|
* | | open() | | STOPPED |
|
|
|
|
* | PAUSED | write() | | PAUSED |
|
|
|
|
* | STOPPED | write() | <thrd create> | PLAYING |
|
|
|
|
* | PLAYING | write() | HEADER | PLAYING |
|
|
|
|
* | (other) | write() | <error> | |
|
|
|
|
* | (any) | pause() | PAUSING | PAUSED |
|
|
|
|
* | PAUSED | restart() | RESTARTING | PLAYING (if no thrd => STOPPED) |
|
|
|
|
* | (any) | reset() | RESETTING | STOPPED |
|
|
|
|
* | (any) | close() | CLOSING | CLOSED |
|
|
|
|
* +---------+-------------+---------------+---------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* states of the playing device */
|
|
|
|
#define WINE_WS_PLAYING 0
|
|
|
|
#define WINE_WS_PAUSED 1
|
|
|
|
#define WINE_WS_STOPPED 2
|
|
|
|
#define WINE_WS_CLOSED 3
|
|
|
|
|
|
|
|
/* events to be send to device */
|
|
|
|
#define WINE_WM_PAUSING (WM_USER + 1)
|
|
|
|
#define WINE_WM_RESTARTING (WM_USER + 2)
|
|
|
|
#define WINE_WM_RESETTING (WM_USER + 3)
|
|
|
|
#define WINE_WM_CLOSING (WM_USER + 4)
|
|
|
|
#define WINE_WM_HEADER (WM_USER + 5)
|
|
|
|
|
|
|
|
#define WINE_WM_FIRST WINE_WM_PAUSING
|
|
|
|
#define WINE_WM_LAST WINE_WM_HEADER
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int msg;
|
|
|
|
DWORD param;
|
|
|
|
} WWO_MSG;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int unixdev;
|
|
|
|
volatile int state; /* one of the WINE_WS_ manifest constants */
|
|
|
|
DWORD dwFragmentSize; /* size of OSS buffer fragment */
|
|
|
|
WAVEOPENDESC waveDesc;
|
|
|
|
WORD wFlags;
|
|
|
|
PCMWAVEFORMAT format;
|
|
|
|
LPWAVEHDR lpQueuePtr; /* start of queued WAVEHDRs (waiting to be notified) */
|
|
|
|
LPWAVEHDR lpPlayPtr; /* start of not yet fully played buffers */
|
|
|
|
LPWAVEHDR lpLoopPtr; /* pointer of first buffer in loop, if any */
|
|
|
|
DWORD dwLoops; /* private copy of loop counter */
|
|
|
|
|
|
|
|
DWORD dwLastFragDone; /* time in ms, when last played fragment will be actually played */
|
|
|
|
DWORD dwPlayedTotal; /* number of bytes played since opening */
|
|
|
|
|
|
|
|
/* info on current lpQueueHdr->lpWaveHdr */
|
|
|
|
DWORD dwOffCurrHdr; /* offset in lpPlayPtr->lpData for fragments */
|
|
|
|
DWORD dwRemain; /* number of bytes to write to end the current fragment */
|
|
|
|
|
|
|
|
/* synchronization stuff */
|
|
|
|
HANDLE hThread;
|
|
|
|
DWORD dwThreadID;
|
|
|
|
HANDLE hEvent;
|
|
|
|
#define WWO_RING_BUFFER_SIZE 30
|
|
|
|
WWO_MSG messages[WWO_RING_BUFFER_SIZE];
|
|
|
|
int msg_tosave;
|
|
|
|
int msg_toget;
|
|
|
|
HANDLE msg_event;
|
|
|
|
CRITICAL_SECTION msg_crst;
|
2004-12-06 21:55:25 +01:00
|
|
|
WAVEOUTCAPSW caps;
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
/* DirectSound stuff */
|
|
|
|
LPBYTE mapping;
|
|
|
|
DWORD maplen;
|
|
|
|
} WINE_WAVEOUT;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int unixdev;
|
|
|
|
volatile int state;
|
|
|
|
DWORD dwFragmentSize; /* OpenSound '/dev/dsp' give us that size */
|
|
|
|
WAVEOPENDESC waveDesc;
|
|
|
|
WORD wFlags;
|
|
|
|
PCMWAVEFORMAT format;
|
|
|
|
LPWAVEHDR lpQueuePtr;
|
|
|
|
DWORD dwTotalRecorded;
|
2004-12-06 21:55:25 +01:00
|
|
|
WAVEINCAPSW caps;
|
2002-08-01 20:22:38 +02:00
|
|
|
BOOL bTriggerSupport;
|
|
|
|
|
|
|
|
/* synchronization stuff */
|
|
|
|
HANDLE hThread;
|
|
|
|
DWORD dwThreadID;
|
|
|
|
HANDLE hEvent;
|
|
|
|
} WINE_WAVEIN;
|
|
|
|
|
|
|
|
static WINE_WAVEOUT WOutDev [MAX_WAVEOUTDRV];
|
|
|
|
static WINE_WAVEIN WInDev [MAX_WAVEINDRV ];
|
|
|
|
|
|
|
|
static DWORD wodDsCreate(UINT wDevID, PIDSDRIVER* drv);
|
2003-04-27 02:37:08 +02:00
|
|
|
static DWORD widDsCreate(UINT wDevID, PIDSCDRIVER* drv);
|
|
|
|
static DWORD wodDsDesc(UINT wDevID, PDSDRIVERDESC desc);
|
|
|
|
static DWORD widDsDesc(UINT wDevID, PDSDRIVERDESC desc);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
2004-07-24 01:01:21 +02:00
|
|
|
static DWORD bytes_to_mmtime(LPMMTIME lpTime, DWORD position,
|
|
|
|
PCMWAVEFORMAT* format)
|
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("wType=%04X wBitsPerSample=%u nSamplesPerSec=%u nChannels=%u nAvgBytesPerSec=%u\n",
|
2004-07-24 01:01:21 +02:00
|
|
|
lpTime->wType, format->wBitsPerSample, format->wf.nSamplesPerSec,
|
|
|
|
format->wf.nChannels, format->wf.nAvgBytesPerSec);
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("Position in bytes=%u\n", position);
|
2004-07-24 01:01:21 +02:00
|
|
|
|
|
|
|
switch (lpTime->wType) {
|
|
|
|
case TIME_SAMPLES:
|
|
|
|
lpTime->u.sample = position / (format->wBitsPerSample / 8 * format->wf.nChannels);
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("TIME_SAMPLES=%u\n", lpTime->u.sample);
|
2004-07-24 01:01:21 +02:00
|
|
|
break;
|
|
|
|
case TIME_MS:
|
|
|
|
lpTime->u.ms = 1000.0 * position / (format->wBitsPerSample / 8 * format->wf.nChannels * format->wf.nSamplesPerSec);
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("TIME_MS=%u\n", lpTime->u.ms);
|
2004-07-24 01:01:21 +02:00
|
|
|
break;
|
|
|
|
case TIME_SMPTE:
|
2005-03-02 14:39:23 +01:00
|
|
|
lpTime->u.smpte.fps = 30;
|
2005-05-07 14:17:28 +02:00
|
|
|
position = position / (format->wBitsPerSample / 8 * format->wf.nChannels);
|
|
|
|
position += (format->wf.nSamplesPerSec / lpTime->u.smpte.fps) - 1; /* round up */
|
|
|
|
lpTime->u.smpte.sec = position / format->wf.nSamplesPerSec;
|
|
|
|
position -= lpTime->u.smpte.sec * format->wf.nSamplesPerSec;
|
2004-07-24 01:01:21 +02:00
|
|
|
lpTime->u.smpte.min = lpTime->u.smpte.sec / 60;
|
|
|
|
lpTime->u.smpte.sec -= 60 * lpTime->u.smpte.min;
|
|
|
|
lpTime->u.smpte.hour = lpTime->u.smpte.min / 60;
|
|
|
|
lpTime->u.smpte.min -= 60 * lpTime->u.smpte.hour;
|
|
|
|
lpTime->u.smpte.fps = 30;
|
2005-05-07 14:17:28 +02:00
|
|
|
lpTime->u.smpte.frame = position * lpTime->u.smpte.fps / format->wf.nSamplesPerSec;
|
2004-07-24 01:01:21 +02:00
|
|
|
TRACE("TIME_SMPTE=%02u:%02u:%02u:%02u\n",
|
|
|
|
lpTime->u.smpte.hour, lpTime->u.smpte.min,
|
|
|
|
lpTime->u.smpte.sec, lpTime->u.smpte.frame);
|
|
|
|
break;
|
|
|
|
default:
|
2004-12-20 20:08:18 +01:00
|
|
|
FIXME("Format %d not supported, using TIME_BYTES !\n", lpTime->wType);
|
2004-07-24 01:01:21 +02:00
|
|
|
lpTime->wType = TIME_BYTES;
|
|
|
|
/* fall through */
|
|
|
|
case TIME_BYTES:
|
|
|
|
lpTime->u.cb = position;
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("TIME_BYTES=%u\n", lpTime->u.cb);
|
2004-07-24 01:01:21 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
2002-08-01 20:22:38 +02:00
|
|
|
/*======================================================================*
|
|
|
|
* Low level WAVE implementation *
|
|
|
|
*======================================================================*/
|
|
|
|
SampleSpec_t spec[2];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LONG LIBAUDIOIO_WaveInit(void)
|
|
|
|
{
|
|
|
|
int audio;
|
|
|
|
int smplrate;
|
|
|
|
int samplesize = 16;
|
|
|
|
int dsp_stereo = 1;
|
|
|
|
int bytespersmpl;
|
|
|
|
int caps;
|
|
|
|
int mask;
|
2004-12-06 21:55:25 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
int audio_fd;
|
|
|
|
int mode;
|
|
|
|
|
|
|
|
static const WCHAR ini_out[] = {'A','u','d','i','o','I','O',' ','W','a','v','e','O','u','t',' ','D','r','i','v','e','r',0};
|
|
|
|
static const WCHAR ini_in [] = {'A','u','d','i','o','I','O',' ','W','a','v','e','I','n',' ',' ','D','r','i','v','e','r',0};
|
2002-08-01 20:22:38 +02:00
|
|
|
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("Init ENTERED (%d) (%d) rate = %d\n",CLIENT_PLAYBACK,CLIENT_RECORD,spec[CLIENT_PLAYBACK].rate);
|
|
|
|
spec[CLIENT_RECORD].channels=spec[CLIENT_PLAYBACK].channels=2;
|
|
|
|
spec[CLIENT_RECORD].max_blocks=spec[CLIENT_PLAYBACK].max_blocks=16;
|
|
|
|
spec[CLIENT_RECORD].rate=spec[CLIENT_PLAYBACK].rate=44100;
|
|
|
|
spec[CLIENT_RECORD].encoding=spec[CLIENT_PLAYBACK].encoding= ENCODE_PCM;
|
|
|
|
spec[CLIENT_RECORD].precision=spec[CLIENT_PLAYBACK].precision=16 ;
|
|
|
|
spec[CLIENT_RECORD].endian=spec[CLIENT_PLAYBACK].endian=ENDIAN_INTEL;
|
|
|
|
spec[CLIENT_RECORD].disable_threads=spec[CLIENT_PLAYBACK].disable_threads=1;
|
|
|
|
spec[CLIENT_RECORD].type=spec[CLIENT_PLAYBACK].type=TYPE_SIGNED; /* in 16 bit mode this is what typical PC hardware expects */
|
2002-08-01 20:22:38 +02:00
|
|
|
|
2004-12-06 21:55:25 +01:00
|
|
|
mode = O_WRONLY|O_NDELAY;
|
2002-08-01 20:22:38 +02:00
|
|
|
|
2004-12-06 21:55:25 +01:00
|
|
|
/* start with output device */
|
2002-08-01 20:22:38 +02:00
|
|
|
|
2004-12-06 21:55:25 +01:00
|
|
|
/* initialize all device handles to -1 */
|
|
|
|
for (i = 0; i < MAX_WAVEOUTDRV; ++i)
|
|
|
|
{
|
|
|
|
WOutDev[i].unixdev = -1;
|
|
|
|
}
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
/* FIXME: only one device is supported */
|
|
|
|
memset(&WOutDev[0].caps, 0, sizeof(WOutDev[0].caps));
|
|
|
|
|
|
|
|
WOutDev[0].caps.wMid = 0x00FF; /* Manufac ID */
|
|
|
|
WOutDev[0].caps.wPid = 0x0001; /* Product ID */
|
2004-12-06 21:55:25 +01:00
|
|
|
strcpyW(WOutDev[0].caps.szPname, ini_out);
|
2002-08-01 20:22:38 +02:00
|
|
|
WOutDev[0].caps.vDriverVersion = 0x0100;
|
|
|
|
WOutDev[0].caps.dwFormats = 0x00000000;
|
|
|
|
WOutDev[0].caps.dwSupport = WAVECAPS_VOLUME;
|
|
|
|
|
|
|
|
/*
|
2004-01-06 23:08:33 +01:00
|
|
|
* Libaudioio works differently, you tell it what spec audio you want to write
|
|
|
|
* and it guarantees to match it by converting to the final format on the fly.
|
|
|
|
* So we don't need to read back and compare.
|
2002-08-01 20:22:38 +02:00
|
|
|
*/
|
|
|
|
|
2005-05-07 14:17:28 +02:00
|
|
|
bytespersmpl = spec[CLIENT_PLAYBACK].precision/8;
|
2002-08-01 20:22:38 +02:00
|
|
|
|
2005-05-07 14:17:28 +02:00
|
|
|
WOutDev[0].caps.wChannels = spec[CLIENT_PLAYBACK].channels;
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Fixme: Libaudioio 0.2 doesn't support balance yet (Libaudioio 0.3 does so this must be fixed later)*/
|
|
|
|
|
|
|
|
/* if (WOutDev[0].caps.wChannels > 1) WOutDev[0].caps.dwSupport |= WAVECAPS_LRVOLUME;*/
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("Init sammplerate= %d\n",spec[CLIENT_PLAYBACK].rate);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
2005-05-07 14:17:28 +02:00
|
|
|
smplrate = spec[CLIENT_PLAYBACK].rate;
|
2002-08-01 20:22:38 +02:00
|
|
|
/*
|
|
|
|
* We have set up the data format to be 16 bit signed in intel format
|
|
|
|
* For Big Endian machines libaudioio will convert the data to bigendian for us
|
|
|
|
*/
|
|
|
|
|
2004-12-06 21:55:25 +01:00
|
|
|
WOutDev[0].caps.dwFormats |= WAVE_FORMAT_4M16;
|
|
|
|
if (WOutDev[0].caps.wChannels > 1)
|
|
|
|
WOutDev[0].caps.dwFormats |= WAVE_FORMAT_4S16;
|
2002-08-01 20:22:38 +02:00
|
|
|
|
2004-01-06 23:08:33 +01:00
|
|
|
/* Don't understand this yet, but I don't think this functionality is portable, leave it here for future evaluation
|
2002-08-01 20:22:38 +02:00
|
|
|
* if (IOCTL(audio, SNDCTL_DSP_GETCAPS, caps) == 0) {
|
|
|
|
* TRACE("OSS dsp out caps=%08X\n", caps);
|
|
|
|
* if ((caps & DSP_CAP_REALTIME) && !(caps & DSP_CAP_BATCH)) {
|
|
|
|
* WOutDev[0].caps.dwSupport |= WAVECAPS_SAMPLEACCURATE;
|
|
|
|
* }
|
|
|
|
*/ /* well, might as well use the DirectSound cap flag for something */
|
|
|
|
/* if ((caps & DSP_CAP_TRIGGER) && (caps & DSP_CAP_MMAP) &&
|
|
|
|
* !(caps & DSP_CAP_BATCH))
|
|
|
|
* WOutDev[0].caps.dwSupport |= WAVECAPS_DIRECTSOUND;
|
|
|
|
* }
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note that libaudioio audio capture is not proven yet, in our open call
|
|
|
|
* set the spec for input audio the same as for output
|
|
|
|
*/
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("out dwFormats = %08X, dwSupport = %08X\n",
|
2002-08-01 20:22:38 +02:00
|
|
|
WOutDev[0].caps.dwFormats, WOutDev[0].caps.dwSupport);
|
|
|
|
|
2004-12-06 21:55:25 +01:00
|
|
|
for (i = 0; i < MAX_WAVEINDRV; ++i)
|
|
|
|
{
|
|
|
|
WInDev[i].unixdev = -1;
|
|
|
|
}
|
2002-08-01 20:22:38 +02:00
|
|
|
|
2004-12-06 21:55:25 +01:00
|
|
|
memset(&WInDev[0].caps, 0, sizeof(WInDev[0].caps));
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
WInDev[0].caps.wMid = 0x00FF; /* Manufac ID */
|
|
|
|
WInDev[0].caps.wPid = 0x0001; /* Product ID */
|
2004-12-06 21:55:25 +01:00
|
|
|
strcpyW(WInDev[0].caps.szPname, ini_in);
|
2002-08-01 20:22:38 +02:00
|
|
|
WInDev[0].caps.dwFormats = 0x00000000;
|
2005-05-07 14:17:28 +02:00
|
|
|
WInDev[0].caps.wChannels = spec[CLIENT_RECORD].channels;
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
WInDev[0].bTriggerSupport = TRUE; /* Maybe :-) */
|
|
|
|
|
2005-05-07 14:17:28 +02:00
|
|
|
bytespersmpl = spec[CLIENT_RECORD].precision/8;
|
|
|
|
smplrate = spec[CLIENT_RECORD].rate;
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
WInDev[0].caps.dwFormats |= WAVE_FORMAT_4M16;
|
|
|
|
if (WInDev[0].caps.wChannels > 1)
|
|
|
|
WInDev[0].caps.dwFormats |= WAVE_FORMAT_4S16;
|
|
|
|
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("in dwFormats = %08X\n", WInDev[0].caps.dwFormats);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* LIBAUDIOIO_NotifyClient [internal]
|
|
|
|
*/
|
|
|
|
static DWORD LIBAUDIOIO_NotifyClient(UINT wDevID, WORD wMsg, DWORD dwParam1, DWORD dwParam2)
|
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("wDevID = %04X wMsg = 0x%04x dwParm1 = %04X dwParam2 = %04X\n",wDevID, wMsg, dwParam1, dwParam2);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
switch (wMsg) {
|
|
|
|
case WOM_OPEN:
|
|
|
|
case WOM_CLOSE:
|
|
|
|
case WOM_DONE:
|
|
|
|
if (wDevID >= MAX_WAVEOUTDRV) return MCIERR_INTERNAL;
|
|
|
|
|
|
|
|
if (WOutDev[wDevID].wFlags != DCB_NULL &&
|
|
|
|
!DriverCallback(WOutDev[wDevID].waveDesc.dwCallback,
|
|
|
|
WOutDev[wDevID].wFlags,
|
|
|
|
WOutDev[wDevID].waveDesc.hWave,
|
|
|
|
wMsg,
|
|
|
|
WOutDev[wDevID].waveDesc.dwInstance,
|
|
|
|
dwParam1,
|
|
|
|
dwParam2)) {
|
|
|
|
WARN("can't notify client !\n");
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WIM_OPEN:
|
|
|
|
case WIM_CLOSE:
|
|
|
|
case WIM_DATA:
|
|
|
|
if (wDevID >= MAX_WAVEINDRV) return MCIERR_INTERNAL;
|
|
|
|
|
|
|
|
if (WInDev[wDevID].wFlags != DCB_NULL &&
|
|
|
|
!DriverCallback(WInDev[wDevID].waveDesc.dwCallback,
|
|
|
|
WInDev[wDevID].wFlags,
|
|
|
|
WInDev[wDevID].waveDesc.hWave,
|
|
|
|
wMsg,
|
|
|
|
WInDev[wDevID].waveDesc.dwInstance,
|
|
|
|
dwParam1,
|
|
|
|
dwParam2)) {
|
|
|
|
WARN("can't notify client !\n");
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("Unknown CB message %u\n", wMsg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*======================================================================*
|
|
|
|
* Low level WAVE OUT implementation *
|
|
|
|
*======================================================================*/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodPlayer_WriteFragments [internal]
|
|
|
|
*
|
|
|
|
* wodPlayer helper. Writes as many fragments as it can to unixdev.
|
|
|
|
* Returns TRUE in case of buffer underrun.
|
|
|
|
*/
|
|
|
|
static BOOL wodPlayer_WriteFragments(WINE_WAVEOUT* wwo)
|
|
|
|
{
|
|
|
|
LPWAVEHDR lpWaveHdr;
|
|
|
|
LPBYTE lpData;
|
|
|
|
int count;
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("wodPlayer_WriteFragments sammplerate= %d\n",spec[CLIENT_PLAYBACK].rate);
|
2002-08-01 20:22:38 +02:00
|
|
|
for (;;) {
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Libaudioio doesn't buffer the same way as linux, you can write data is any block size
|
|
|
|
*And libaudioio just tracks the number of blocks in the streams queue to control latency
|
|
|
|
*/
|
|
|
|
|
2008-04-22 08:18:14 +02:00
|
|
|
if (!AudioIOCheckWriteReady()) return FALSE; /* Returns false if you have exceeded your specified latency (No space left)*/
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
lpWaveHdr = wwo->lpPlayPtr;
|
|
|
|
if (!lpWaveHdr) {
|
|
|
|
if (wwo->dwRemain > 0 && /* still data to send to complete current fragment */
|
|
|
|
wwo->dwLastFragDone && /* first fragment has been played */
|
|
|
|
AudioIOCheckUnderrun()) { /* done with all waveOutWrite()' fragments */
|
|
|
|
/* FIXME: should do better handling here */
|
|
|
|
WARN("Oooch, buffer underrun !\n");
|
|
|
|
return TRUE; /* force resetting of waveOut device */
|
|
|
|
}
|
|
|
|
return FALSE; /* wait a bit */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wwo->dwOffCurrHdr == 0) {
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("Starting a new wavehdr %p of %d bytes\n", lpWaveHdr, lpWaveHdr->dwBufferLength);
|
2002-08-01 20:22:38 +02:00
|
|
|
if (lpWaveHdr->dwFlags & WHDR_BEGINLOOP) {
|
|
|
|
if (wwo->lpLoopPtr) {
|
|
|
|
WARN("Already in a loop. Discarding loop on this header (%p)\n", lpWaveHdr);
|
|
|
|
} else {
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("Starting loop (%dx) with %p\n", lpWaveHdr->dwLoops, lpWaveHdr);
|
2002-08-01 20:22:38 +02:00
|
|
|
wwo->lpLoopPtr = lpWaveHdr;
|
|
|
|
/* Windows does not touch WAVEHDR.dwLoops,
|
|
|
|
* so we need to make an internal copy */
|
|
|
|
wwo->dwLoops = lpWaveHdr->dwLoops;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lpData = lpWaveHdr->lpData;
|
|
|
|
|
|
|
|
/* finish current wave hdr ? */
|
|
|
|
if (wwo->dwOffCurrHdr + wwo->dwRemain >= lpWaveHdr->dwBufferLength) {
|
|
|
|
DWORD toWrite = lpWaveHdr->dwBufferLength - wwo->dwOffCurrHdr;
|
|
|
|
|
|
|
|
/* write end of current wave hdr */
|
|
|
|
count = AudioIOWrite(lpData + wwo->dwOffCurrHdr, toWrite);
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("write(%p[%5u], %5u) => %d\n", lpData, wwo->dwOffCurrHdr, toWrite, count);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
if (count > 0 || toWrite == 0) {
|
|
|
|
DWORD tc = GetTickCount();
|
|
|
|
|
|
|
|
if (wwo->dwLastFragDone /* + guard time ?? */ < tc)
|
|
|
|
wwo->dwLastFragDone = tc;
|
|
|
|
wwo->dwLastFragDone += (toWrite * 1000) / wwo->format.wf.nAvgBytesPerSec;
|
|
|
|
|
|
|
|
lpWaveHdr->reserved = wwo->dwLastFragDone;
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("Tagging hdr %p with %08x\n", lpWaveHdr, wwo->dwLastFragDone);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
/* WAVEHDR written, go to next one */
|
|
|
|
if ((lpWaveHdr->dwFlags & WHDR_ENDLOOP) && wwo->lpLoopPtr) {
|
|
|
|
if (--wwo->dwLoops > 0) {
|
|
|
|
wwo->lpPlayPtr = wwo->lpLoopPtr;
|
|
|
|
} else {
|
|
|
|
/* last one played */
|
|
|
|
if (wwo->lpLoopPtr != lpWaveHdr && (lpWaveHdr->dwFlags & WHDR_BEGINLOOP)) {
|
|
|
|
FIXME("Correctly handled case ? (ending loop buffer also starts a new loop)\n");
|
|
|
|
/* shall we consider the END flag for the closing loop or for
|
|
|
|
* the opening one or for both ???
|
|
|
|
* code assumes for closing loop only
|
|
|
|
*/
|
|
|
|
wwo->lpLoopPtr = lpWaveHdr;
|
|
|
|
} else {
|
|
|
|
wwo->lpLoopPtr = NULL;
|
|
|
|
}
|
|
|
|
wwo->lpPlayPtr = lpWaveHdr->lpNext;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
wwo->lpPlayPtr = lpWaveHdr->lpNext;
|
|
|
|
}
|
|
|
|
wwo->dwOffCurrHdr = 0;
|
|
|
|
if ((wwo->dwRemain -= count) == 0) {
|
|
|
|
wwo->dwRemain = wwo->dwFragmentSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue; /* try to go to use next wavehdr */
|
|
|
|
} else {
|
|
|
|
count = AudioIOWrite( lpData + wwo->dwOffCurrHdr, wwo->dwRemain);
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("write(%p[%5u], %5u) => %d\n", lpData, wwo->dwOffCurrHdr, wwo->dwRemain, count);
|
2002-08-01 20:22:38 +02:00
|
|
|
if (count > 0) {
|
|
|
|
DWORD tc = GetTickCount();
|
|
|
|
|
|
|
|
if (wwo->dwLastFragDone /* + guard time ?? */ < tc)
|
|
|
|
wwo->dwLastFragDone = tc;
|
|
|
|
wwo->dwLastFragDone += (wwo->dwRemain * 1000) / wwo->format.wf.nAvgBytesPerSec;
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("Tagging frag with %08x\n", wwo->dwLastFragDone);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
wwo->dwOffCurrHdr += count;
|
|
|
|
wwo->dwRemain = wwo->dwFragmentSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int wodPlayer_Message(WINE_WAVEOUT *wwo, int msg, DWORD param)
|
|
|
|
{
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("wodPlayerMessage sammplerate= %d msg=%d\n",spec[CLIENT_PLAYBACK].rate,msg);
|
2002-08-01 20:22:38 +02:00
|
|
|
EnterCriticalSection(&wwo->msg_crst);
|
|
|
|
if ((wwo->msg_tosave == wwo->msg_toget) /* buffer overflow ? */
|
|
|
|
&& (wwo->messages[wwo->msg_toget].msg))
|
|
|
|
{
|
|
|
|
ERR("buffer overflow !?\n");
|
|
|
|
LeaveCriticalSection(&wwo->msg_crst);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
wwo->messages[wwo->msg_tosave].msg = msg;
|
|
|
|
wwo->messages[wwo->msg_tosave].param = param;
|
|
|
|
wwo->msg_tosave++;
|
|
|
|
if (wwo->msg_tosave > WWO_RING_BUFFER_SIZE-1)
|
|
|
|
wwo->msg_tosave = 0;
|
|
|
|
LeaveCriticalSection(&wwo->msg_crst);
|
|
|
|
/* signal a new message */
|
|
|
|
SetEvent(wwo->msg_event);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int wodPlayer_RetrieveMessage(WINE_WAVEOUT *wwo, int *msg, DWORD *param)
|
|
|
|
{
|
|
|
|
EnterCriticalSection(&wwo->msg_crst);
|
|
|
|
|
|
|
|
if (wwo->msg_toget == wwo->msg_tosave) /* buffer empty ? */
|
|
|
|
{
|
|
|
|
LeaveCriticalSection(&wwo->msg_crst);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*msg = wwo->messages[wwo->msg_toget].msg;
|
|
|
|
wwo->messages[wwo->msg_toget].msg = 0;
|
|
|
|
*param = wwo->messages[wwo->msg_toget].param;
|
|
|
|
wwo->msg_toget++;
|
|
|
|
if (wwo->msg_toget > WWO_RING_BUFFER_SIZE-1)
|
|
|
|
wwo->msg_toget = 0;
|
|
|
|
LeaveCriticalSection(&wwo->msg_crst);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodPlayer_Notify [internal]
|
|
|
|
*
|
|
|
|
* wodPlayer helper. Notifies (and remove from queue) all the wavehdr which content
|
|
|
|
* have been played (actually to speaker, not to unixdev fd).
|
|
|
|
*/
|
|
|
|
static void wodPlayer_Notify(WINE_WAVEOUT* wwo, WORD uDevID, BOOL force)
|
|
|
|
{
|
|
|
|
LPWAVEHDR lpWaveHdr;
|
|
|
|
DWORD tc = GetTickCount();
|
|
|
|
|
|
|
|
while (wwo->lpQueuePtr &&
|
|
|
|
(force ||
|
|
|
|
(wwo->lpQueuePtr != wwo->lpPlayPtr && wwo->lpQueuePtr != wwo->lpLoopPtr))) {
|
|
|
|
lpWaveHdr = wwo->lpQueuePtr;
|
|
|
|
|
|
|
|
if (lpWaveHdr->reserved > tc && !force) break;
|
|
|
|
|
|
|
|
wwo->dwPlayedTotal += lpWaveHdr->dwBufferLength;
|
|
|
|
wwo->lpQueuePtr = lpWaveHdr->lpNext;
|
|
|
|
|
|
|
|
lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
|
|
|
|
lpWaveHdr->dwFlags |= WHDR_DONE;
|
|
|
|
|
|
|
|
TRACE("Notifying client with %p\n", lpWaveHdr);
|
|
|
|
if (LIBAUDIOIO_NotifyClient(uDevID, WOM_DONE, (DWORD)lpWaveHdr, 0) != MMSYSERR_NOERROR) {
|
|
|
|
WARN("can't notify client !\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodPlayer_Reset [internal]
|
|
|
|
*
|
|
|
|
* wodPlayer helper. Resets current output stream.
|
|
|
|
*/
|
|
|
|
static void wodPlayer_Reset(WINE_WAVEOUT* wwo, WORD uDevID, BOOL reset)
|
|
|
|
{
|
|
|
|
/* updates current notify list */
|
|
|
|
wodPlayer_Notify(wwo, uDevID, FALSE);
|
|
|
|
|
|
|
|
/* flush all possible output */
|
|
|
|
/*
|
|
|
|
*FIXME In the original code I think this aborted IO. With Libaudioio you have to wait
|
2004-01-14 06:39:05 +01:00
|
|
|
* The following function just blocks until I/O is complete
|
2002-08-01 20:22:38 +02:00
|
|
|
* There is possibly a way to abort the blocks buffered in streams
|
|
|
|
* but this approach seems to work OK
|
|
|
|
*/
|
|
|
|
AudioIOFlush();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wwo->dwOffCurrHdr = 0;
|
|
|
|
wwo->dwRemain = wwo->dwFragmentSize;
|
|
|
|
if (reset) {
|
|
|
|
/* empty notify list */
|
|
|
|
wodPlayer_Notify(wwo, uDevID, TRUE);
|
|
|
|
|
|
|
|
wwo->lpPlayPtr = wwo->lpQueuePtr = wwo->lpLoopPtr = NULL;
|
|
|
|
wwo->state = WINE_WS_STOPPED;
|
|
|
|
wwo->dwPlayedTotal = 0;
|
|
|
|
} else {
|
|
|
|
/* FIXME: this is not accurate when looping, but can be do better ? */
|
|
|
|
wwo->lpPlayPtr = (wwo->lpLoopPtr) ? wwo->lpLoopPtr : wwo->lpQueuePtr;
|
|
|
|
wwo->state = WINE_WS_PAUSED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodPlayer [internal]
|
|
|
|
*/
|
|
|
|
static DWORD CALLBACK wodPlayer(LPVOID pmt)
|
|
|
|
{
|
|
|
|
WORD uDevID = (DWORD)pmt;
|
|
|
|
WINE_WAVEOUT* wwo = (WINE_WAVEOUT*)&WOutDev[uDevID];
|
|
|
|
WAVEHDR* lpWaveHdr;
|
|
|
|
DWORD dwSleepTime;
|
|
|
|
int msg;
|
|
|
|
DWORD param;
|
|
|
|
DWORD tc;
|
|
|
|
BOOL had_msg;
|
|
|
|
|
|
|
|
wwo->state = WINE_WS_STOPPED;
|
|
|
|
|
|
|
|
wwo->dwLastFragDone = 0;
|
|
|
|
wwo->dwOffCurrHdr = 0;
|
|
|
|
wwo->dwRemain = wwo->dwFragmentSize;
|
|
|
|
wwo->lpQueuePtr = wwo->lpPlayPtr = wwo->lpLoopPtr = NULL;
|
|
|
|
wwo->dwPlayedTotal = 0;
|
|
|
|
|
|
|
|
TRACE("imhere[0]\n");
|
|
|
|
SetEvent(wwo->hEvent);
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
/* wait for dwSleepTime or an event in thread's queue
|
|
|
|
* FIXME:
|
|
|
|
* - is wait time calculation optimal ?
|
|
|
|
* - these 100 ms parts should be changed, but Eric reports
|
|
|
|
* that the wodPlayer thread might lock up if we use INFINITE
|
|
|
|
* (strange !), so I better don't change that now... */
|
|
|
|
if (wwo->state != WINE_WS_PLAYING)
|
|
|
|
dwSleepTime = 100;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tc = GetTickCount();
|
|
|
|
if (tc < wwo->dwLastFragDone)
|
|
|
|
{
|
|
|
|
/* calculate sleep time depending on when the last fragment
|
|
|
|
will be played */
|
|
|
|
dwSleepTime = (wwo->dwLastFragDone - tc)*7/10;
|
|
|
|
if (dwSleepTime > 100)
|
|
|
|
dwSleepTime = 100;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
dwSleepTime = 0;
|
|
|
|
}
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("imhere[1] tc = %08x\n", GetTickCount());
|
2002-08-01 20:22:38 +02:00
|
|
|
if (dwSleepTime)
|
|
|
|
WaitForSingleObject(wwo->msg_event, dwSleepTime);
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("imhere[2] (q=%p p=%p) tc = %08x\n", wwo->lpQueuePtr,
|
2002-08-01 20:22:38 +02:00
|
|
|
wwo->lpPlayPtr, GetTickCount());
|
|
|
|
had_msg = FALSE;
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("Looking for message\n");
|
2002-08-01 20:22:38 +02:00
|
|
|
while (wodPlayer_RetrieveMessage(wwo, &msg, ¶m)) {
|
|
|
|
had_msg = TRUE;
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("Processing message\n");
|
2002-08-01 20:22:38 +02:00
|
|
|
switch (msg) {
|
|
|
|
case WINE_WM_PAUSING:
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("WINE_WM_PAUSING\n");
|
2002-08-01 20:22:38 +02:00
|
|
|
wodPlayer_Reset(wwo, uDevID, FALSE);
|
|
|
|
wwo->state = WINE_WS_PAUSED;
|
|
|
|
SetEvent(wwo->hEvent);
|
|
|
|
break;
|
|
|
|
case WINE_WM_RESTARTING:
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("WINE_WM_RESTARTING\n");
|
2002-08-01 20:22:38 +02:00
|
|
|
wwo->state = WINE_WS_PLAYING;
|
|
|
|
SetEvent(wwo->hEvent);
|
|
|
|
break;
|
|
|
|
case WINE_WM_HEADER:
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("WINE_WM_HEADER\n");
|
2002-08-01 20:22:38 +02:00
|
|
|
lpWaveHdr = (LPWAVEHDR)param;
|
|
|
|
|
|
|
|
/* insert buffer at the end of queue */
|
|
|
|
{
|
|
|
|
LPWAVEHDR* wh;
|
|
|
|
for (wh = &(wwo->lpQueuePtr); *wh; wh = &((*wh)->lpNext));
|
|
|
|
*wh = lpWaveHdr;
|
|
|
|
}
|
|
|
|
if (!wwo->lpPlayPtr) wwo->lpPlayPtr = lpWaveHdr;
|
|
|
|
if (wwo->state == WINE_WS_STOPPED)
|
|
|
|
wwo->state = WINE_WS_PLAYING;
|
|
|
|
break;
|
|
|
|
case WINE_WM_RESETTING:
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("WINE_WM_RESETTING\n");
|
2002-08-01 20:22:38 +02:00
|
|
|
wodPlayer_Reset(wwo, uDevID, TRUE);
|
|
|
|
SetEvent(wwo->hEvent);
|
|
|
|
break;
|
|
|
|
case WINE_WM_CLOSING:
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("WINE_WM_CLOSING\n");
|
2002-08-01 20:22:38 +02:00
|
|
|
/* sanity check: this should not happen since the device must have been reset before */
|
|
|
|
if (wwo->lpQueuePtr || wwo->lpPlayPtr) ERR("out of sync\n");
|
|
|
|
wwo->hThread = 0;
|
|
|
|
wwo->state = WINE_WS_CLOSED;
|
|
|
|
SetEvent(wwo->hEvent);
|
|
|
|
ExitThread(0);
|
|
|
|
/* shouldn't go here */
|
|
|
|
default:
|
|
|
|
FIXME("unknown message %d\n", msg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (wwo->state == WINE_WS_PLAYING) {
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("Writing Fragment\n");
|
2002-08-01 20:22:38 +02:00
|
|
|
wodPlayer_WriteFragments(wwo);
|
|
|
|
}
|
|
|
|
wodPlayer_Notify(wwo, uDevID, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!had_msg) { /* if we've received a msg we've just done this so we
|
|
|
|
won't repeat it */
|
|
|
|
if (wwo->state == WINE_WS_PLAYING) {
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("Writing Fragment (entry 2)\n");
|
2002-08-01 20:22:38 +02:00
|
|
|
wodPlayer_WriteFragments(wwo);
|
|
|
|
}
|
|
|
|
wodPlayer_Notify(wwo, uDevID, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ExitThread(0);
|
|
|
|
/* just for not generating compilation warnings... should never be executed */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodGetDevCaps [internal]
|
|
|
|
*/
|
2004-12-06 21:55:25 +01:00
|
|
|
static DWORD wodGetDevCaps(WORD wDevID, LPWAVEOUTCAPSW lpCaps, DWORD dwSize)
|
2002-08-01 20:22:38 +02:00
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%u, %p, %u);\n", wDevID, lpCaps, dwSize);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
if (lpCaps == NULL) return MMSYSERR_NOTENABLED;
|
|
|
|
|
|
|
|
if (wDevID >= MAX_WAVEOUTDRV) {
|
|
|
|
TRACE("MAX_WAVOUTDRV reached !\n");
|
|
|
|
return MMSYSERR_BADDEVICEID;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(lpCaps, &WOutDev[wDevID].caps, min(dwSize, sizeof(*lpCaps)));
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodOpen [internal]
|
|
|
|
*/
|
|
|
|
static DWORD wodOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
|
|
|
|
{
|
|
|
|
int audio;
|
|
|
|
int format;
|
|
|
|
int sample_rate;
|
|
|
|
int dsp_stereo;
|
|
|
|
int fragment_size;
|
|
|
|
int audio_fragment;
|
|
|
|
WINE_WAVEOUT* wwo;
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%u, %p, %08X);\n", wDevID, lpDesc, dwFlags);
|
2002-08-01 20:22:38 +02:00
|
|
|
if (lpDesc == NULL) {
|
|
|
|
WARN("Invalid Parameter !\n");
|
|
|
|
return MMSYSERR_INVALPARAM;
|
|
|
|
}
|
|
|
|
if (wDevID >= MAX_WAVEOUTDRV) {
|
|
|
|
TRACE("MAX_WAVOUTDRV reached !\n");
|
|
|
|
return MMSYSERR_BADDEVICEID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* only PCM format is supported so far... */
|
|
|
|
if (lpDesc->lpFormat->wFormatTag != WAVE_FORMAT_PCM ||
|
|
|
|
lpDesc->lpFormat->nChannels == 0 ||
|
2004-04-26 22:03:59 +02:00
|
|
|
lpDesc->lpFormat->nSamplesPerSec == 0 ||
|
|
|
|
(lpDesc->lpFormat->wBitsPerSample!=8 && lpDesc->lpFormat->wBitsPerSample!=16)) {
|
2006-10-20 12:59:02 +02:00
|
|
|
WARN("Bad format: tag=%04X nChannels=%d nSamplesPerSec=%d !\n",
|
2002-08-01 20:22:38 +02:00
|
|
|
lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
|
|
|
|
lpDesc->lpFormat->nSamplesPerSec);
|
|
|
|
return WAVERR_BADFORMAT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dwFlags & WAVE_FORMAT_QUERY) {
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("Query format: tag=%04X nChannels=%d nSamplesPerSec=%d !\n",
|
2002-08-01 20:22:38 +02:00
|
|
|
lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
|
|
|
|
lpDesc->lpFormat->nSamplesPerSec);
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
wwo = &WOutDev[wDevID];
|
|
|
|
|
|
|
|
if ((dwFlags & WAVE_DIRECTSOUND) && !(wwo->caps.dwSupport & WAVECAPS_DIRECTSOUND))
|
|
|
|
/* not supported, ignore it */
|
|
|
|
dwFlags &= ~WAVE_DIRECTSOUND;
|
|
|
|
|
|
|
|
if (access(SOUND_DEV, 0) != 0)
|
|
|
|
return MMSYSERR_NOTENABLED;
|
|
|
|
|
2005-05-07 14:17:28 +02:00
|
|
|
audio = AudioIOOpenX( O_WRONLY|O_NDELAY,&spec[CLIENT_PLAYBACK],&spec[CLIENT_PLAYBACK]);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
if (audio == -1) {
|
|
|
|
WARN("can't open sound device %s (%s)!\n", SOUND_DEV, strerror(errno));
|
|
|
|
return MMSYSERR_ALLOCATED;
|
|
|
|
}
|
|
|
|
/* fcntl(audio, F_SETFD, 1); *//* set close on exec flag - Dunno about this (RL)*/
|
|
|
|
wwo->unixdev = audio;
|
|
|
|
wwo->wFlags = HIWORD(dwFlags & CALLBACK_TYPEMASK);
|
|
|
|
|
2008-03-25 23:22:10 +01:00
|
|
|
wwo->waveDesc = *lpDesc;
|
2002-08-01 20:22:38 +02:00
|
|
|
memcpy(&wwo->format, lpDesc->lpFormat, sizeof(PCMWAVEFORMAT));
|
|
|
|
|
|
|
|
if (wwo->format.wBitsPerSample == 0) {
|
|
|
|
WARN("Resetting zeroed wBitsPerSample\n");
|
|
|
|
wwo->format.wBitsPerSample = 8 *
|
|
|
|
(wwo->format.wf.nAvgBytesPerSec /
|
|
|
|
wwo->format.wf.nSamplesPerSec) /
|
|
|
|
wwo->format.wf.nChannels;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dwFlags & WAVE_DIRECTSOUND) {
|
|
|
|
if (wwo->caps.dwSupport & WAVECAPS_SAMPLEACCURATE)
|
|
|
|
/* we have realtime DirectSound, fragments just waste our time,
|
|
|
|
* but a large buffer is good, so choose 64KB (32 * 2^11) */
|
|
|
|
audio_fragment = 0x0020000B;
|
|
|
|
else
|
|
|
|
/* to approximate realtime, we must use small fragments,
|
|
|
|
* let's try to fragment the above 64KB (256 * 2^8) */
|
|
|
|
audio_fragment = 0x01000008;
|
|
|
|
} else {
|
|
|
|
/* shockwave player uses only 4 1k-fragments at a rate of 22050 bytes/sec
|
|
|
|
* thus leading to 46ms per fragment, and a turnaround time of 185ms
|
|
|
|
*/
|
|
|
|
/* 16 fragments max, 2^10=1024 bytes per fragment */
|
|
|
|
audio_fragment = 0x000F000A;
|
|
|
|
}
|
|
|
|
sample_rate = wwo->format.wf.nSamplesPerSec;
|
|
|
|
dsp_stereo = (wwo->format.wf.nChannels > 1) ? 1 : 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*Set the sample rate*/
|
2005-05-07 14:17:28 +02:00
|
|
|
spec[CLIENT_PLAYBACK].rate=sample_rate;
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
/*And the size and signedness*/
|
2005-05-07 14:17:28 +02:00
|
|
|
spec[CLIENT_PLAYBACK].precision=(wwo->format.wBitsPerSample );
|
|
|
|
if (spec[CLIENT_PLAYBACK].precision==16) spec[CLIENT_PLAYBACK].type=TYPE_SIGNED; else spec[CLIENT_PLAYBACK].type=TYPE_UNSIGNED;
|
|
|
|
spec[CLIENT_PLAYBACK].channels=(wwo->format.wf.nChannels);
|
|
|
|
spec[CLIENT_PLAYBACK].encoding=ENCODE_PCM;
|
|
|
|
spec[CLIENT_PLAYBACK].endian=ENDIAN_INTEL;
|
|
|
|
spec[CLIENT_PLAYBACK].max_blocks=16; /*FIXME This is the libaudioio equivalent to fragments, it controls latency*/
|
2002-08-01 20:22:38 +02:00
|
|
|
|
2005-05-07 14:17:28 +02:00
|
|
|
audio = AudioIOOpenX( O_WRONLY|O_NDELAY,&spec[CLIENT_PLAYBACK],&spec[CLIENT_PLAYBACK]);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
if (audio == -1) {
|
|
|
|
WARN("can't open sound device %s (%s)!\n", SOUND_DEV, strerror(errno));
|
|
|
|
return MMSYSERR_ALLOCATED;
|
|
|
|
}
|
|
|
|
/* fcntl(audio, F_SETFD, 1); *//* set close on exec flag */
|
|
|
|
wwo->unixdev = audio;
|
|
|
|
|
|
|
|
|
|
|
|
/* even if we set fragment size above, read it again, just in case */
|
|
|
|
|
|
|
|
wwo->dwFragmentSize = DEFAULT_FRAGMENT_SIZE;
|
|
|
|
|
|
|
|
wwo->msg_toget = 0;
|
|
|
|
wwo->msg_tosave = 0;
|
2004-12-06 21:55:25 +01:00
|
|
|
wwo->msg_event = CreateEventW(NULL, FALSE, FALSE, NULL);
|
2002-08-01 20:22:38 +02:00
|
|
|
memset(wwo->messages, 0, sizeof(WWO_MSG)*WWO_RING_BUFFER_SIZE);
|
|
|
|
InitializeCriticalSection(&wwo->msg_crst);
|
2007-03-10 22:11:26 +01:00
|
|
|
wwo->msg_crst.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": WINE_WAVEOUT.msg_crst");
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
if (!(dwFlags & WAVE_DIRECTSOUND)) {
|
2005-05-07 14:17:28 +02:00
|
|
|
TRACE("Starting wodPlayer Thread\n");
|
2004-12-06 21:55:25 +01:00
|
|
|
wwo->hEvent = CreateEventW(NULL, FALSE, FALSE, NULL);
|
2002-08-01 20:22:38 +02:00
|
|
|
wwo->hThread = CreateThread(NULL, 0, wodPlayer, (LPVOID)(DWORD)wDevID, 0, &(wwo->dwThreadID));
|
2005-04-27 11:39:55 +02:00
|
|
|
if (wwo->hThread)
|
|
|
|
SetThreadPriority(wwo->hThread, THREAD_PRIORITY_TIME_CRITICAL);
|
2002-08-01 20:22:38 +02:00
|
|
|
WaitForSingleObject(wwo->hEvent, INFINITE);
|
|
|
|
} else {
|
|
|
|
wwo->hEvent = INVALID_HANDLE_VALUE;
|
|
|
|
wwo->hThread = INVALID_HANDLE_VALUE;
|
|
|
|
wwo->dwThreadID = 0;
|
|
|
|
}
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("fd=%d fragmentSize=%d\n",
|
2002-08-01 20:22:38 +02:00
|
|
|
wwo->unixdev, wwo->dwFragmentSize);
|
|
|
|
if (wwo->dwFragmentSize % wwo->format.wf.nBlockAlign)
|
|
|
|
ERR("Fragment doesn't contain an integral number of data blocks\n");
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("wBitsPerSample=%u, nAvgBytesPerSec=%u, nSamplesPerSec=%u, nChannels=%u nBlockAlign=%u!\n",
|
2002-08-01 20:22:38 +02:00
|
|
|
wwo->format.wBitsPerSample, wwo->format.wf.nAvgBytesPerSec,
|
|
|
|
wwo->format.wf.nSamplesPerSec, wwo->format.wf.nChannels,
|
|
|
|
wwo->format.wf.nBlockAlign);
|
|
|
|
|
|
|
|
if (LIBAUDIOIO_NotifyClient(wDevID, WOM_OPEN, 0L, 0L) != MMSYSERR_NOERROR) {
|
|
|
|
WARN("can't notify client !\n");
|
|
|
|
return MMSYSERR_INVALPARAM;
|
|
|
|
}
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodClose [internal]
|
|
|
|
*/
|
|
|
|
static DWORD wodClose(WORD wDevID)
|
|
|
|
{
|
|
|
|
DWORD ret = MMSYSERR_NOERROR;
|
|
|
|
WINE_WAVEOUT* wwo;
|
|
|
|
|
|
|
|
TRACE("(%u);\n", wDevID);
|
|
|
|
|
|
|
|
if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("bad device ID !\n");
|
|
|
|
return MMSYSERR_BADDEVICEID;
|
|
|
|
}
|
|
|
|
|
|
|
|
wwo = &WOutDev[wDevID];
|
|
|
|
if (wwo->lpQueuePtr) {
|
|
|
|
WARN("buffers still playing !\n");
|
|
|
|
ret = WAVERR_STILLPLAYING;
|
|
|
|
} else {
|
|
|
|
TRACE("imhere[3-close]\n");
|
2007-03-10 22:11:26 +01:00
|
|
|
|
|
|
|
wwo->msg_crst.DebugInfo->Spare[0] = 0;
|
|
|
|
DeleteCriticalSection(&wwo->msg_crst);
|
|
|
|
|
2002-08-01 20:22:38 +02:00
|
|
|
if (wwo->hEvent != INVALID_HANDLE_VALUE) {
|
|
|
|
wodPlayer_Message(wwo, WINE_WM_CLOSING, 0);
|
|
|
|
WaitForSingleObject(wwo->hEvent, INFINITE);
|
|
|
|
CloseHandle(wwo->hEvent);
|
|
|
|
}
|
|
|
|
if (wwo->mapping) {
|
|
|
|
munmap(wwo->mapping, wwo->maplen);
|
|
|
|
wwo->mapping = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioIOClose();
|
|
|
|
wwo->unixdev = -1;
|
|
|
|
wwo->dwFragmentSize = 0;
|
|
|
|
if (LIBAUDIOIO_NotifyClient(wDevID, WOM_CLOSE, 0L, 0L) != MMSYSERR_NOERROR) {
|
|
|
|
WARN("can't notify client !\n");
|
|
|
|
ret = MMSYSERR_INVALPARAM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodWrite [internal]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static DWORD wodWrite(WORD wDevID, LPWAVEHDR lpWaveHdr, DWORD dwSize)
|
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%u, %p, %08X);\n", wDevID, lpWaveHdr, dwSize);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
/* first, do the sanity checks... */
|
|
|
|
if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("bad dev ID !\n");
|
|
|
|
return MMSYSERR_BADDEVICEID;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lpWaveHdr->lpData == NULL || !(lpWaveHdr->dwFlags & WHDR_PREPARED))
|
|
|
|
return WAVERR_UNPREPARED;
|
|
|
|
|
|
|
|
if (lpWaveHdr->dwFlags & WHDR_INQUEUE)
|
|
|
|
return WAVERR_STILLPLAYING;
|
|
|
|
|
|
|
|
lpWaveHdr->dwFlags &= ~WHDR_DONE;
|
|
|
|
lpWaveHdr->dwFlags |= WHDR_INQUEUE;
|
|
|
|
lpWaveHdr->lpNext = 0;
|
|
|
|
|
|
|
|
TRACE("imhere[3-HEADER]\n");
|
|
|
|
wodPlayer_Message(&WOutDev[wDevID], WINE_WM_HEADER, (DWORD)lpWaveHdr);
|
|
|
|
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodPause [internal]
|
|
|
|
*/
|
|
|
|
static DWORD wodPause(WORD wDevID)
|
|
|
|
{
|
|
|
|
TRACE("(%u);!\n", wDevID);
|
|
|
|
|
|
|
|
if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("bad device ID !\n");
|
|
|
|
return MMSYSERR_BADDEVICEID;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("imhere[3-PAUSING]\n");
|
|
|
|
wodPlayer_Message(&WOutDev[wDevID], WINE_WM_PAUSING, 0);
|
|
|
|
WaitForSingleObject(WOutDev[wDevID].hEvent, INFINITE);
|
|
|
|
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodRestart [internal]
|
|
|
|
*/
|
|
|
|
static DWORD wodRestart(WORD wDevID)
|
|
|
|
{
|
|
|
|
TRACE("(%u);\n", wDevID);
|
|
|
|
|
|
|
|
if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("bad device ID !\n");
|
|
|
|
return MMSYSERR_BADDEVICEID;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (WOutDev[wDevID].state == WINE_WS_PAUSED) {
|
|
|
|
TRACE("imhere[3-RESTARTING]\n");
|
|
|
|
wodPlayer_Message(&WOutDev[wDevID], WINE_WM_RESTARTING, 0);
|
|
|
|
WaitForSingleObject(WOutDev[wDevID].hEvent, INFINITE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: is NotifyClient with WOM_DONE right ? (Comet Busters 1.3.3 needs this notification) */
|
|
|
|
/* FIXME: Myst crashes with this ... hmm -MM
|
|
|
|
if (LIBAUDIOIO_NotifyClient(wDevID, WOM_DONE, 0L, 0L) != MMSYSERR_NOERROR) {
|
|
|
|
WARN("can't notify client !\n");
|
|
|
|
return MMSYSERR_INVALPARAM;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodReset [internal]
|
|
|
|
*/
|
|
|
|
static DWORD wodReset(WORD wDevID)
|
|
|
|
{
|
|
|
|
TRACE("(%u);\n", wDevID);
|
|
|
|
|
|
|
|
if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("bad device ID !\n");
|
|
|
|
return MMSYSERR_BADDEVICEID;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("imhere[3-RESET]\n");
|
|
|
|
wodPlayer_Message(&WOutDev[wDevID], WINE_WM_RESETTING, 0);
|
|
|
|
WaitForSingleObject(WOutDev[wDevID].hEvent, INFINITE);
|
|
|
|
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodGetPosition [internal]
|
|
|
|
*/
|
|
|
|
static DWORD wodGetPosition(WORD wDevID, LPMMTIME lpTime, DWORD uSize)
|
|
|
|
{
|
|
|
|
WINE_WAVEOUT* wwo;
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%u, %p, %u);\n", wDevID, lpTime, uSize);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
if (wDevID >= MAX_WAVEOUTDRV || WOutDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("bad device ID !\n");
|
|
|
|
return MMSYSERR_BADDEVICEID;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lpTime == NULL) return MMSYSERR_INVALPARAM;
|
|
|
|
|
|
|
|
wwo = &WOutDev[wDevID];
|
|
|
|
|
2004-07-24 01:01:21 +02:00
|
|
|
return bytes_to_mmtime(lpTime, wwo->dwPlayedTotal, &wwo->format);
|
2002-08-01 20:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodGetVolume [internal]
|
|
|
|
*/
|
|
|
|
static DWORD wodGetVolume(WORD wDevID, LPDWORD lpdwVol)
|
|
|
|
{
|
|
|
|
int vol,bal;
|
|
|
|
DWORD left, right;
|
|
|
|
|
|
|
|
TRACE("(%u, %p);\n", wDevID, lpdwVol);
|
|
|
|
|
|
|
|
if (lpdwVol == NULL)
|
|
|
|
return MMSYSERR_NOTENABLED;
|
|
|
|
|
|
|
|
vol=AudioIOGetPlaybackVolume();
|
|
|
|
bal=AudioIOGetPlaybackBalance();
|
|
|
|
|
|
|
|
|
|
|
|
if(bal<0) {
|
|
|
|
left = vol;
|
|
|
|
right=-(vol*(-100+bal)/100);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
right = vol;
|
|
|
|
left=(vol*(100-bal)/100);
|
|
|
|
}
|
|
|
|
|
|
|
|
*lpdwVol = ((left * 0xFFFFl) / 100) + (((right * 0xFFFFl) / 100) << 16);
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodSetVolume [internal]
|
|
|
|
*/
|
|
|
|
static DWORD wodSetVolume(WORD wDevID, DWORD dwParam)
|
|
|
|
{
|
|
|
|
int volume,bal;
|
|
|
|
DWORD left, right;
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%u, %08X);\n", wDevID, dwParam);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
left = (LOWORD(dwParam) * 100) / 0xFFFFl;
|
|
|
|
right = (HIWORD(dwParam) * 100) / 0xFFFFl;
|
|
|
|
volume = max(left , right );
|
|
|
|
bal=min(left,right);
|
|
|
|
bal=bal*100/volume;
|
|
|
|
if(right>left) bal=-100+bal; else bal=100-bal;
|
|
|
|
|
|
|
|
AudioIOSetPlaybackVolume(volume);
|
|
|
|
AudioIOSetPlaybackBalance(bal);
|
|
|
|
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* wodGetNumDevs [internal]
|
|
|
|
*/
|
|
|
|
static DWORD wodGetNumDevs(void)
|
|
|
|
{
|
|
|
|
DWORD ret = 1;
|
|
|
|
|
|
|
|
/* FIXME: For now, only one sound device (SOUND_DEV) is allowed */
|
|
|
|
int audio = open(SOUND_DEV, O_WRONLY|O_NDELAY, 0);
|
|
|
|
|
|
|
|
if (audio == -1) {
|
|
|
|
if (errno != EBUSY)
|
|
|
|
ret = 0;
|
|
|
|
} else {
|
|
|
|
close(audio);
|
|
|
|
|
|
|
|
}
|
|
|
|
TRACE("NumDrivers = %d\n",ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
2002-08-09 03:07:29 +02:00
|
|
|
* wodMessage (WINEAUDIOIO.@)
|
2002-08-01 20:22:38 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI LIBAUDIOIO_wodMessage(UINT wDevID, UINT wMsg, DWORD dwUser,
|
|
|
|
DWORD dwParam1, DWORD dwParam2)
|
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%u, %04X, %08X, %08X, %08X);\n",
|
2002-08-01 20:22:38 +02:00
|
|
|
wDevID, wMsg, dwUser, dwParam1, dwParam2);
|
|
|
|
|
|
|
|
switch (wMsg) {
|
|
|
|
case DRVM_INIT:
|
|
|
|
case DRVM_EXIT:
|
|
|
|
case DRVM_ENABLE:
|
|
|
|
case DRVM_DISABLE:
|
|
|
|
/* FIXME: Pretend this is supported */
|
|
|
|
return 0;
|
|
|
|
case WODM_OPEN: return wodOpen (wDevID, (LPWAVEOPENDESC)dwParam1, dwParam2);
|
|
|
|
case WODM_CLOSE: return wodClose (wDevID);
|
|
|
|
case WODM_WRITE: return wodWrite (wDevID, (LPWAVEHDR)dwParam1, dwParam2);
|
|
|
|
case WODM_PAUSE: return wodPause (wDevID);
|
|
|
|
case WODM_GETPOS: return wodGetPosition (wDevID, (LPMMTIME)dwParam1, dwParam2);
|
|
|
|
case WODM_BREAKLOOP: return MMSYSERR_NOTSUPPORTED;
|
2005-03-19 18:11:02 +01:00
|
|
|
case WODM_PREPARE: return MMSYSERR_NOTSUPPORTED;
|
|
|
|
case WODM_UNPREPARE: return MMSYSERR_NOTSUPPORTED;
|
2004-12-06 21:55:25 +01:00
|
|
|
case WODM_GETDEVCAPS: return wodGetDevCaps (wDevID, (LPWAVEOUTCAPSW)dwParam1, dwParam2);
|
2002-08-01 20:22:38 +02:00
|
|
|
case WODM_GETNUMDEVS: return wodGetNumDevs ();
|
|
|
|
case WODM_GETPITCH: return MMSYSERR_NOTSUPPORTED;
|
|
|
|
case WODM_SETPITCH: return MMSYSERR_NOTSUPPORTED;
|
|
|
|
case WODM_GETPLAYBACKRATE: return MMSYSERR_NOTSUPPORTED;
|
|
|
|
case WODM_SETPLAYBACKRATE: return MMSYSERR_NOTSUPPORTED;
|
|
|
|
case WODM_GETVOLUME: return wodGetVolume (wDevID, (LPDWORD)dwParam1);
|
|
|
|
case WODM_SETVOLUME: return wodSetVolume (wDevID, dwParam1);
|
|
|
|
case WODM_RESTART: return wodRestart (wDevID);
|
|
|
|
case WODM_RESET: return wodReset (wDevID);
|
|
|
|
|
2003-04-27 02:37:08 +02:00
|
|
|
case DRV_QUERYDSOUNDIFACE: return wodDsCreate (wDevID, (PIDSDRIVER*)dwParam1);
|
|
|
|
case DRV_QUERYDSOUNDDESC: return wodDsDesc (wDevID, (PDSDRIVERDESC)dwParam1);
|
2002-08-01 20:22:38 +02:00
|
|
|
default:
|
|
|
|
FIXME("unknown message %d!\n", wMsg);
|
|
|
|
}
|
|
|
|
return MMSYSERR_NOTSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*======================================================================*
|
|
|
|
* Low level DSOUND implementation *
|
2008-04-22 08:18:14 +02:00
|
|
|
* While I have tampered somewhat with this code it is wholly unlikely that it works
|
|
|
|
* Elsewhere the driver returns Not Implemented for DirectSound
|
2002-08-01 20:22:38 +02:00
|
|
|
* While it may be possible to map the sound device on Solaris
|
|
|
|
* Doing so would bypass the libaudioio library and therefore break any conversions
|
|
|
|
* that the libaudioio sample specification converter is doing
|
|
|
|
* **** All this is untested so far
|
|
|
|
*======================================================================*/
|
|
|
|
|
|
|
|
typedef struct IDsDriverImpl IDsDriverImpl;
|
|
|
|
typedef struct IDsDriverBufferImpl IDsDriverBufferImpl;
|
|
|
|
|
|
|
|
struct IDsDriverImpl
|
|
|
|
{
|
|
|
|
/* IUnknown fields */
|
2005-06-06 21:50:35 +02:00
|
|
|
const IDsDriverVtbl *lpVtbl;
|
2006-10-20 12:59:02 +02:00
|
|
|
LONG ref;
|
2002-08-01 20:22:38 +02:00
|
|
|
/* IDsDriverImpl fields */
|
|
|
|
UINT wDevID;
|
|
|
|
IDsDriverBufferImpl*primary;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct IDsDriverBufferImpl
|
|
|
|
{
|
|
|
|
/* IUnknown fields */
|
2005-06-06 21:50:35 +02:00
|
|
|
const IDsDriverBufferVtbl *lpVtbl;
|
2006-10-20 12:59:02 +02:00
|
|
|
LONG ref;
|
2002-08-01 20:22:38 +02:00
|
|
|
/* IDsDriverBufferImpl fields */
|
|
|
|
IDsDriverImpl* drv;
|
|
|
|
DWORD buflen;
|
|
|
|
};
|
|
|
|
|
|
|
|
static HRESULT DSDB_MapPrimary(IDsDriverBufferImpl *dsdb)
|
|
|
|
{
|
|
|
|
WINE_WAVEOUT *wwo = &(WOutDev[dsdb->drv->wDevID]);
|
|
|
|
if (!wwo->mapping) {
|
|
|
|
wwo->mapping = mmap(NULL, wwo->maplen, PROT_WRITE, MAP_SHARED,
|
|
|
|
wwo->unixdev, 0);
|
|
|
|
if (wwo->mapping == (LPBYTE)-1) {
|
|
|
|
ERR("(%p): Could not map sound device for direct access (errno=%d)\n", dsdb, errno);
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
}
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%p): sound device has been mapped for direct access at %p, size=%d\n", dsdb, wwo->mapping, wwo->maplen);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
/* for some reason, es1371 and sblive! sometimes have junk in here. */
|
|
|
|
memset(wwo->mapping,0,wwo->maplen); /* clear it, or we get junk noise */
|
|
|
|
}
|
|
|
|
return DS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT DSDB_UnmapPrimary(IDsDriverBufferImpl *dsdb)
|
|
|
|
{
|
|
|
|
WINE_WAVEOUT *wwo = &(WOutDev[dsdb->drv->wDevID]);
|
|
|
|
if (wwo->mapping) {
|
|
|
|
if (munmap(wwo->mapping, wwo->maplen) < 0) {
|
|
|
|
ERR("(%p): Could not unmap sound device (errno=%d)\n", dsdb, errno);
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
}
|
|
|
|
wwo->mapping = NULL;
|
|
|
|
TRACE("(%p): sound device unmapped\n", dsdb);
|
|
|
|
}
|
|
|
|
return DS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverBufferImpl_QueryInterface(PIDSDRIVERBUFFER iface, REFIID riid, LPVOID *ppobj)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
/* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
|
2002-08-01 20:22:38 +02:00
|
|
|
FIXME("(): stub!\n");
|
|
|
|
return DSERR_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IDsDriverBufferImpl_AddRef(PIDSDRIVERBUFFER iface)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
|
2005-01-12 20:55:24 +01:00
|
|
|
return InterlockedIncrement(&This->ref);
|
2002-08-01 20:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IDsDriverBufferImpl_Release(PIDSDRIVERBUFFER iface)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
|
2005-01-12 20:55:24 +01:00
|
|
|
ULONG refCount = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
if (refCount)
|
|
|
|
return refCount;
|
2002-08-01 20:22:38 +02:00
|
|
|
if (This == This->drv->primary)
|
|
|
|
This->drv->primary = NULL;
|
|
|
|
DSDB_UnmapPrimary(This);
|
|
|
|
HeapFree(GetProcessHeap(),0,This);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverBufferImpl_Lock(PIDSDRIVERBUFFER iface,
|
|
|
|
LPVOID*ppvAudio1,LPDWORD pdwLen1,
|
|
|
|
LPVOID*ppvAudio2,LPDWORD pdwLen2,
|
|
|
|
DWORD dwWritePosition,DWORD dwWriteLen,
|
|
|
|
DWORD dwFlags)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
/* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
|
2002-08-01 20:22:38 +02:00
|
|
|
/* since we (GetDriverDesc flags) have specified DSDDESC_DONTNEEDPRIMARYLOCK,
|
|
|
|
* and that we don't support secondary buffers, this method will never be called */
|
|
|
|
TRACE("(%p): stub\n",iface);
|
|
|
|
return DSERR_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverBufferImpl_Unlock(PIDSDRIVERBUFFER iface,
|
|
|
|
LPVOID pvAudio1,DWORD dwLen1,
|
|
|
|
LPVOID pvAudio2,DWORD dwLen2)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
/* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
|
2002-08-01 20:22:38 +02:00
|
|
|
TRACE("(%p): stub\n",iface);
|
|
|
|
return DSERR_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverBufferImpl_SetFormat(PIDSDRIVERBUFFER iface,
|
|
|
|
LPWAVEFORMATEX pwfx)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
/* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
TRACE("(%p,%p)\n",iface,pwfx);
|
|
|
|
/* On our request (GetDriverDesc flags), DirectSound has by now used
|
|
|
|
* waveOutClose/waveOutOpen to set the format...
|
|
|
|
* unfortunately, this means our mmap() is now gone...
|
|
|
|
* so we need to somehow signal to our DirectSound implementation
|
|
|
|
* that it should completely recreate this HW buffer...
|
|
|
|
* this unexpected error code should do the trick... */
|
|
|
|
return DSERR_BUFFERLOST;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverBufferImpl_SetFrequency(PIDSDRIVERBUFFER iface, DWORD dwFreq)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
/* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%p,%d): stub\n",iface,dwFreq);
|
2002-08-01 20:22:38 +02:00
|
|
|
return DSERR_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverBufferImpl_SetVolumePan(PIDSDRIVERBUFFER iface, PDSVOLUMEPAN pVolPan)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
/* IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface; */
|
2002-08-01 20:22:38 +02:00
|
|
|
FIXME("(%p,%p): stub!\n",iface,pVolPan);
|
2003-09-22 23:13:33 +02:00
|
|
|
return DS_OK;
|
2002-08-01 20:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverBufferImpl_SetPosition(PIDSDRIVERBUFFER iface, DWORD dwNewPos)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
/* IDsDriverImpl *This = (IDsDriverImpl *)iface; */
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%p,%d): stub\n",iface,dwNewPos);
|
2002-08-01 20:22:38 +02:00
|
|
|
return DSERR_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverBufferImpl_GetPosition(PIDSDRIVERBUFFER iface,
|
|
|
|
LPDWORD lpdwPlay, LPDWORD lpdwWrite)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
|
2002-08-09 03:07:29 +02:00
|
|
|
#if 0
|
|
|
|
count_info info;
|
|
|
|
#endif
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
TRACE("(%p)\n",iface);
|
|
|
|
if (WOutDev[This->drv->wDevID].unixdev == -1) {
|
|
|
|
ERR("device not open, but accessing?\n");
|
|
|
|
return DSERR_UNINITIALIZED;
|
|
|
|
}
|
|
|
|
/*Libaudioio doesn't support this (Yet anyway)*/
|
|
|
|
return DSERR_UNSUPPORTED;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverBufferImpl_Play(PIDSDRIVERBUFFER iface, DWORD dwRes1, DWORD dwRes2, DWORD dwFlags)
|
|
|
|
{
|
|
|
|
#if 0
|
2006-10-20 12:59:02 +02:00
|
|
|
IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
|
2002-08-01 20:22:38 +02:00
|
|
|
int enable = PCM_ENABLE_OUTPUT;
|
|
|
|
TRACE("(%p,%lx,%lx,%lx)\n",iface,dwRes1,dwRes2,dwFlags);
|
|
|
|
if (ioctl(WOutDev[This->drv->wDevID].unixdev, SNDCTL_DSP_SETTRIGGER, &enable) < 0) {
|
|
|
|
ERR("ioctl failed (%d)\n", errno);
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return DS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverBufferImpl_Stop(PIDSDRIVERBUFFER iface)
|
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
#if 0
|
2004-09-08 03:50:37 +02:00
|
|
|
IDsDriverBufferImpl *This = (IDsDriverBufferImpl *)iface;
|
2002-08-01 20:22:38 +02:00
|
|
|
int enable = 0;
|
|
|
|
TRACE("(%p)\n",iface);
|
|
|
|
/* no more playing */
|
|
|
|
if (ioctl(WOutDev[This->drv->wDevID].unixdev, SNDCTL_DSP_SETTRIGGER, &enable) < 0) {
|
|
|
|
ERR("ioctl failed (%d)\n", errno);
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if 0
|
|
|
|
/* the play position must be reset to the beginning of the buffer */
|
|
|
|
if (ioctl(WOutDev[This->drv->wDevID].unixdev, SNDCTL_DSP_RESET, 0) < 0) {
|
|
|
|
ERR("ioctl failed (%d)\n", errno);
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* Most OSS drivers just can't stop the playback without closing the device...
|
|
|
|
* so we need to somehow signal to our DirectSound implementation
|
|
|
|
* that it should completely recreate this HW buffer...
|
|
|
|
* this unexpected error code should do the trick... */
|
|
|
|
return DSERR_BUFFERLOST;
|
|
|
|
}
|
|
|
|
|
2005-06-06 21:50:35 +02:00
|
|
|
static const IDsDriverBufferVtbl dsdbvt =
|
2002-08-01 20:22:38 +02:00
|
|
|
{
|
|
|
|
IDsDriverBufferImpl_QueryInterface,
|
|
|
|
IDsDriverBufferImpl_AddRef,
|
|
|
|
IDsDriverBufferImpl_Release,
|
|
|
|
IDsDriverBufferImpl_Lock,
|
|
|
|
IDsDriverBufferImpl_Unlock,
|
|
|
|
IDsDriverBufferImpl_SetFormat,
|
|
|
|
IDsDriverBufferImpl_SetFrequency,
|
|
|
|
IDsDriverBufferImpl_SetVolumePan,
|
|
|
|
IDsDriverBufferImpl_SetPosition,
|
|
|
|
IDsDriverBufferImpl_GetPosition,
|
|
|
|
IDsDriverBufferImpl_Play,
|
|
|
|
IDsDriverBufferImpl_Stop
|
|
|
|
};
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverImpl_QueryInterface(PIDSDRIVER iface, REFIID riid, LPVOID *ppobj)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
/* IDsDriverImpl *This = (IDsDriverImpl *)iface; */
|
2002-08-01 20:22:38 +02:00
|
|
|
FIXME("(%p): stub!\n",iface);
|
|
|
|
return DSERR_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IDsDriverImpl_AddRef(PIDSDRIVER iface)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDsDriverImpl *This = (IDsDriverImpl *)iface;
|
2005-01-12 20:55:24 +01:00
|
|
|
return InterlockedIncrement(&This->ref);
|
2002-08-01 20:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI IDsDriverImpl_Release(PIDSDRIVER iface)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDsDriverImpl *This = (IDsDriverImpl *)iface;
|
2005-01-12 20:55:24 +01:00
|
|
|
ULONG refCount = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
if (refCount)
|
|
|
|
return refCount;
|
2002-08-01 20:22:38 +02:00
|
|
|
HeapFree(GetProcessHeap(),0,This);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverImpl_GetDriverDesc(PIDSDRIVER iface, PDSDRIVERDESC pDesc)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDsDriverImpl *This = (IDsDriverImpl *)iface;
|
2002-08-01 20:22:38 +02:00
|
|
|
TRACE("(%p,%p)\n",iface,pDesc);
|
|
|
|
pDesc->dwFlags = DSDDESC_DOMMSYSTEMOPEN | DSDDESC_DOMMSYSTEMSETFORMAT |
|
|
|
|
DSDDESC_USESYSTEMMEMORY | DSDDESC_DONTNEEDPRIMARYLOCK;
|
2003-04-27 02:37:08 +02:00
|
|
|
strcpy(pDesc->szDesc,"Wine AudioIO DirectSound Driver");
|
2005-01-28 18:21:07 +01:00
|
|
|
strcpy(pDesc->szDrvname,"wineaudioio.drv");
|
2002-08-01 20:22:38 +02:00
|
|
|
pDesc->dnDevNode = WOutDev[This->wDevID].waveDesc.dnDevNode;
|
|
|
|
pDesc->wVxdId = 0;
|
|
|
|
pDesc->wReserved = 0;
|
|
|
|
pDesc->ulDeviceNum = This->wDevID;
|
|
|
|
pDesc->dwHeapType = DSDHEAP_NOHEAP;
|
|
|
|
pDesc->pvDirectDrawHeap = NULL;
|
|
|
|
pDesc->dwMemStartAddress = 0;
|
|
|
|
pDesc->dwMemEndAddress = 0;
|
|
|
|
pDesc->dwMemAllocExtra = 0;
|
|
|
|
pDesc->pvReserved1 = NULL;
|
|
|
|
pDesc->pvReserved2 = NULL;
|
|
|
|
return DS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverImpl_Open(PIDSDRIVER iface)
|
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
#if 0
|
2004-09-08 03:50:37 +02:00
|
|
|
IDsDriverImpl *This = (IDsDriverImpl *)iface;
|
2002-08-01 20:22:38 +02:00
|
|
|
int enable = 0;
|
|
|
|
|
|
|
|
TRACE("(%p)\n",iface);
|
|
|
|
/* make sure the card doesn't start playing before we want it to */
|
|
|
|
if (ioctl(WOutDev[This->wDevID].unixdev, SNDCTL_DSP_SETTRIGGER, &enable) < 0) {
|
|
|
|
ERR("ioctl failed (%d)\n", errno);
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return DS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverImpl_Close(PIDSDRIVER iface)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDsDriverImpl *This = (IDsDriverImpl *)iface;
|
2002-08-01 20:22:38 +02:00
|
|
|
TRACE("(%p)\n",iface);
|
|
|
|
if (This->primary) {
|
|
|
|
ERR("problem with DirectSound: primary not released\n");
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
}
|
|
|
|
return DS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverImpl_GetCaps(PIDSDRIVER iface, PDSDRIVERCAPS pCaps)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
/* IDsDriverImpl *This = (IDsDriverImpl *)iface; */
|
2002-08-01 20:22:38 +02:00
|
|
|
TRACE("(%p,%p)\n",iface,pCaps);
|
|
|
|
memset(pCaps, 0, sizeof(*pCaps));
|
|
|
|
/* FIXME: need to check actual capabilities */
|
|
|
|
pCaps->dwFlags = DSCAPS_PRIMARYMONO | DSCAPS_PRIMARYSTEREO |
|
|
|
|
DSCAPS_PRIMARY8BIT | DSCAPS_PRIMARY16BIT;
|
|
|
|
pCaps->dwPrimaryBuffers = 1;
|
2003-09-03 21:28:20 +02:00
|
|
|
pCaps->dwMinSecondarySampleRate = DSBFREQUENCY_MIN;
|
|
|
|
pCaps->dwMaxSecondarySampleRate = DSBFREQUENCY_MAX;
|
2002-08-01 20:22:38 +02:00
|
|
|
/* the other fields only apply to secondary buffers, which we don't support
|
|
|
|
* (unless we want to mess with wavetable synthesizers and MIDI) */
|
|
|
|
return DS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverImpl_CreateSoundBuffer(PIDSDRIVER iface,
|
|
|
|
LPWAVEFORMATEX pwfx,
|
|
|
|
DWORD dwFlags, DWORD dwCardAddress,
|
|
|
|
LPDWORD pdwcbBufferSize,
|
|
|
|
LPBYTE *ppbBuffer,
|
|
|
|
LPVOID *ppvObj)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDsDriverImpl *This = (IDsDriverImpl *)iface;
|
2002-08-01 20:22:38 +02:00
|
|
|
IDsDriverBufferImpl** ippdsdb = (IDsDriverBufferImpl**)ppvObj;
|
|
|
|
HRESULT err;
|
2002-08-09 03:07:29 +02:00
|
|
|
#if 0
|
|
|
|
audio_buf_info info;
|
2002-08-01 20:22:38 +02:00
|
|
|
int enable = 0;
|
2006-10-20 12:59:02 +02:00
|
|
|
#endif
|
2002-08-01 20:22:38 +02:00
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%p,%p,%x,%x)\n",iface,pwfx,dwFlags,dwCardAddress);
|
2002-08-01 20:22:38 +02:00
|
|
|
/* we only support primary buffers */
|
|
|
|
if (!(dwFlags & DSBCAPS_PRIMARYBUFFER))
|
|
|
|
return DSERR_UNSUPPORTED;
|
|
|
|
if (This->primary)
|
|
|
|
return DSERR_ALLOCATED;
|
|
|
|
if (dwFlags & (DSBCAPS_CTRLFREQUENCY | DSBCAPS_CTRLPAN))
|
|
|
|
return DSERR_CONTROLUNAVAIL;
|
|
|
|
|
2005-03-24 22:01:35 +01:00
|
|
|
*ippdsdb = HeapAlloc(GetProcessHeap(),0,sizeof(IDsDriverBufferImpl));
|
2002-08-01 20:22:38 +02:00
|
|
|
if (*ippdsdb == NULL)
|
|
|
|
return DSERR_OUTOFMEMORY;
|
2003-04-10 20:17:34 +02:00
|
|
|
(*ippdsdb)->lpVtbl = &dsdbvt;
|
2002-08-01 20:22:38 +02:00
|
|
|
(*ippdsdb)->ref = 1;
|
|
|
|
(*ippdsdb)->drv = This;
|
|
|
|
|
|
|
|
/* check how big the DMA buffer is now */
|
|
|
|
#if 0
|
|
|
|
if (ioctl(WOutDev[This->wDevID].unixdev, SNDCTL_DSP_GETOSPACE, &info) < 0) {
|
|
|
|
ERR("ioctl failed (%d)\n", errno);
|
|
|
|
HeapFree(GetProcessHeap(),0,*ippdsdb);
|
|
|
|
*ippdsdb = NULL;
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
}
|
|
|
|
#endif
|
2002-08-09 03:07:29 +02:00
|
|
|
WOutDev[This->wDevID].maplen =64*1024; /* Map 64 K at a time */
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
(*ippdsdb)->buflen = info.fragstotal * info.fragsize;
|
|
|
|
#endif
|
|
|
|
/* map the DMA buffer */
|
|
|
|
err = DSDB_MapPrimary(*ippdsdb);
|
|
|
|
if (err != DS_OK) {
|
|
|
|
HeapFree(GetProcessHeap(),0,*ippdsdb);
|
|
|
|
*ippdsdb = NULL;
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* primary buffer is ready to go */
|
|
|
|
*pdwcbBufferSize = WOutDev[This->wDevID].maplen;
|
|
|
|
*ppbBuffer = WOutDev[This->wDevID].mapping;
|
|
|
|
|
|
|
|
/* some drivers need some extra nudging after mapping */
|
|
|
|
#if 0
|
|
|
|
if (ioctl(WOutDev[This->wDevID].unixdev, SNDCTL_DSP_SETTRIGGER, &enable) < 0) {
|
|
|
|
ERR("ioctl failed (%d)\n", errno);
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
This->primary = *ippdsdb;
|
|
|
|
|
|
|
|
return DS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI IDsDriverImpl_DuplicateSoundBuffer(PIDSDRIVER iface,
|
|
|
|
PIDSDRIVERBUFFER pBuffer,
|
|
|
|
LPVOID *ppvObj)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
/* IDsDriverImpl *This = (IDsDriverImpl *)iface; */
|
2002-08-01 20:22:38 +02:00
|
|
|
TRACE("(%p,%p): stub\n",iface,pBuffer);
|
|
|
|
return DSERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2005-06-06 21:50:35 +02:00
|
|
|
static const IDsDriverVtbl dsdvt =
|
2002-08-01 20:22:38 +02:00
|
|
|
{
|
|
|
|
IDsDriverImpl_QueryInterface,
|
|
|
|
IDsDriverImpl_AddRef,
|
|
|
|
IDsDriverImpl_Release,
|
|
|
|
IDsDriverImpl_GetDriverDesc,
|
|
|
|
IDsDriverImpl_Open,
|
|
|
|
IDsDriverImpl_Close,
|
|
|
|
IDsDriverImpl_GetCaps,
|
|
|
|
IDsDriverImpl_CreateSoundBuffer,
|
|
|
|
IDsDriverImpl_DuplicateSoundBuffer
|
|
|
|
};
|
|
|
|
|
|
|
|
static DWORD wodDsCreate(UINT wDevID, PIDSDRIVER* drv)
|
|
|
|
{
|
|
|
|
IDsDriverImpl** idrv = (IDsDriverImpl**)drv;
|
|
|
|
|
|
|
|
/* the HAL isn't much better than the HEL if we can't do mmap() */
|
|
|
|
if (!(WOutDev[wDevID].caps.dwSupport & WAVECAPS_DIRECTSOUND)) {
|
|
|
|
ERR("DirectSound flag not set\n");
|
|
|
|
MESSAGE("This sound card's driver does not support direct access\n");
|
|
|
|
MESSAGE("The (slower) DirectSound HEL mode will be used instead.\n");
|
|
|
|
return MMSYSERR_NOTSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2005-03-24 22:01:35 +01:00
|
|
|
*idrv = HeapAlloc(GetProcessHeap(),0,sizeof(IDsDriverImpl));
|
2002-08-01 20:22:38 +02:00
|
|
|
if (!*idrv)
|
|
|
|
return MMSYSERR_NOMEM;
|
2003-04-10 20:17:34 +02:00
|
|
|
(*idrv)->lpVtbl = &dsdvt;
|
2002-08-01 20:22:38 +02:00
|
|
|
(*idrv)->ref = 1;
|
|
|
|
|
|
|
|
(*idrv)->wDevID = wDevID;
|
|
|
|
(*idrv)->primary = NULL;
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
2003-04-27 02:37:08 +02:00
|
|
|
static DWORD wodDsDesc(UINT wDevID, PDSDRIVERDESC desc)
|
|
|
|
{
|
|
|
|
memset(desc, 0, sizeof(*desc));
|
|
|
|
strcpy(desc->szDesc, "Wine LIBAUDIOIO DirectSound Driver");
|
2005-01-28 18:21:07 +01:00
|
|
|
strcpy(desc->szDrvname, "wineaudioio.drv");
|
2003-04-27 02:37:08 +02:00
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
2002-08-01 20:22:38 +02:00
|
|
|
/*======================================================================*
|
|
|
|
* Low level WAVE IN implementation *
|
|
|
|
*======================================================================*/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* widGetDevCaps [internal]
|
|
|
|
*/
|
2004-12-06 21:55:25 +01:00
|
|
|
static DWORD widGetDevCaps(WORD wDevID, LPWAVEINCAPSW lpCaps, DWORD dwSize)
|
2002-08-01 20:22:38 +02:00
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%u, %p, %u);\n", wDevID, lpCaps, dwSize);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
if (lpCaps == NULL) return MMSYSERR_NOTENABLED;
|
|
|
|
|
|
|
|
if (wDevID >= MAX_WAVEINDRV) {
|
|
|
|
TRACE("MAX_WAVINDRV reached !\n");
|
|
|
|
return MMSYSERR_BADDEVICEID;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(lpCaps, &WInDev[wDevID].caps, min(dwSize, sizeof(*lpCaps)));
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* widRecorder [internal]
|
|
|
|
*/
|
|
|
|
static DWORD CALLBACK widRecorder(LPVOID pmt)
|
|
|
|
{
|
|
|
|
WORD uDevID = (DWORD)pmt;
|
|
|
|
WINE_WAVEIN* wwi = (WINE_WAVEIN*)&WInDev[uDevID];
|
|
|
|
WAVEHDR* lpWaveHdr;
|
|
|
|
DWORD dwSleepTime;
|
|
|
|
MSG msg;
|
|
|
|
DWORD bytesRead;
|
|
|
|
|
|
|
|
|
|
|
|
int fragments;
|
|
|
|
int fragsize;
|
|
|
|
int fragstotal;
|
|
|
|
int bytes;
|
|
|
|
|
|
|
|
LPVOID buffer = HeapAlloc(GetProcessHeap(),
|
|
|
|
HEAP_ZERO_MEMORY,
|
|
|
|
wwi->dwFragmentSize);
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
BYTE *pOffset = buffer;
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
PeekMessageA(&msg, 0, 0, 0, 0);
|
|
|
|
wwi->state = WINE_WS_STOPPED;
|
|
|
|
wwi->dwTotalRecorded = 0;
|
|
|
|
|
|
|
|
SetEvent(wwi->hEvent);
|
|
|
|
|
|
|
|
|
|
|
|
/* make sleep time to be # of ms to output a fragment */
|
|
|
|
dwSleepTime = (wwi->dwFragmentSize * 1000) / wwi->format.wf.nAvgBytesPerSec;
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("sleeptime=%d ms\n", dwSleepTime);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
for (; ; ) {
|
|
|
|
/* wait for dwSleepTime or an event in thread's queue */
|
|
|
|
/* FIXME: could improve wait time depending on queue state,
|
|
|
|
* ie, number of queued fragments
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (wwi->lpQueuePtr != NULL && wwi->state == WINE_WS_PLAYING)
|
|
|
|
{
|
|
|
|
lpWaveHdr = wwi->lpQueuePtr;
|
|
|
|
|
|
|
|
bytes=fragsize=AudioIORecordingAvailable();
|
2006-10-20 12:59:02 +02:00
|
|
|
fragments=fragstotal=1;
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
TRACE("info={frag=%d fsize=%d ftotal=%d bytes=%d}\n", fragments, fragsize, fragstotal, bytes);
|
|
|
|
|
|
|
|
|
|
|
|
/* read all the fragments accumulated so far */
|
|
|
|
while ((fragments > 0) && (wwi->lpQueuePtr))
|
|
|
|
{
|
|
|
|
fragments --;
|
|
|
|
|
|
|
|
if (lpWaveHdr->dwBufferLength - lpWaveHdr->dwBytesRecorded >= wwi->dwFragmentSize)
|
|
|
|
{
|
|
|
|
/* directly read fragment in wavehdr */
|
|
|
|
bytesRead = AudioIORead(
|
|
|
|
lpWaveHdr->lpData + lpWaveHdr->dwBytesRecorded,
|
|
|
|
wwi->dwFragmentSize);
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("bytesRead=%d (direct)\n", bytesRead);
|
2002-08-01 20:22:38 +02:00
|
|
|
if (bytesRead != (DWORD) -1)
|
|
|
|
{
|
|
|
|
/* update number of bytes recorded in current buffer and by this device */
|
|
|
|
lpWaveHdr->dwBytesRecorded += bytesRead;
|
|
|
|
wwi->dwTotalRecorded += bytesRead;
|
|
|
|
|
|
|
|
/* buffer is full. notify client */
|
|
|
|
if (lpWaveHdr->dwBytesRecorded == lpWaveHdr->dwBufferLength)
|
|
|
|
{
|
|
|
|
/* must copy the value of next waveHdr, because we have no idea of what
|
|
|
|
* will be done with the content of lpWaveHdr in callback
|
|
|
|
*/
|
|
|
|
LPWAVEHDR lpNext = lpWaveHdr->lpNext;
|
|
|
|
|
|
|
|
lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
|
|
|
|
lpWaveHdr->dwFlags |= WHDR_DONE;
|
|
|
|
|
|
|
|
if (LIBAUDIOIO_NotifyClient(uDevID, WIM_DATA,
|
|
|
|
(DWORD)lpWaveHdr, 0) != MMSYSERR_NOERROR)
|
|
|
|
{
|
|
|
|
WARN("can't notify client !\n");
|
|
|
|
}
|
|
|
|
lpWaveHdr = wwi->lpQueuePtr = lpNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* read the fragment in a local buffer */
|
|
|
|
bytesRead = AudioIORead( buffer, wwi->dwFragmentSize);
|
|
|
|
pOffset = buffer;
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("bytesRead=%d (local)\n", bytesRead);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
/* copy data in client buffers */
|
|
|
|
while (bytesRead != (DWORD) -1 && bytesRead > 0)
|
|
|
|
{
|
|
|
|
DWORD dwToCopy = min (bytesRead, lpWaveHdr->dwBufferLength - lpWaveHdr->dwBytesRecorded);
|
|
|
|
|
|
|
|
memcpy(lpWaveHdr->lpData + lpWaveHdr->dwBytesRecorded,
|
|
|
|
pOffset,
|
|
|
|
dwToCopy);
|
|
|
|
|
|
|
|
/* update number of bytes recorded in current buffer and by this device */
|
|
|
|
lpWaveHdr->dwBytesRecorded += dwToCopy;
|
|
|
|
wwi->dwTotalRecorded += dwToCopy;
|
|
|
|
bytesRead -= dwToCopy;
|
|
|
|
pOffset += dwToCopy;
|
|
|
|
|
|
|
|
/* client buffer is full. notify client */
|
|
|
|
if (lpWaveHdr->dwBytesRecorded == lpWaveHdr->dwBufferLength)
|
|
|
|
{
|
|
|
|
/* must copy the value of next waveHdr, because we have no idea of what
|
|
|
|
* will be done with the content of lpWaveHdr in callback
|
|
|
|
*/
|
|
|
|
LPWAVEHDR lpNext = lpWaveHdr->lpNext;
|
|
|
|
TRACE("lpNext=%p\n", lpNext);
|
|
|
|
|
|
|
|
lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
|
|
|
|
lpWaveHdr->dwFlags |= WHDR_DONE;
|
|
|
|
|
|
|
|
if (LIBAUDIOIO_NotifyClient(uDevID, WIM_DATA,
|
|
|
|
(DWORD)lpWaveHdr, 0) != MMSYSERR_NOERROR)
|
|
|
|
{
|
|
|
|
WARN("can't notify client !\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
wwi->lpQueuePtr = lpWaveHdr = lpNext;
|
|
|
|
if (!lpNext && bytesRead) {
|
|
|
|
/* no more buffer to copy data to, but we did read more.
|
|
|
|
* what hasn't been copied will be dropped
|
|
|
|
*/
|
2006-10-20 12:59:02 +02:00
|
|
|
WARN("buffer under run! %u bytes dropped.\n", bytesRead);
|
2002-08-01 20:22:38 +02:00
|
|
|
wwi->lpQueuePtr = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MsgWaitForMultipleObjects(0, NULL, FALSE, dwSleepTime, QS_POSTMESSAGE);
|
|
|
|
|
|
|
|
while (PeekMessageA(&msg, 0, WINE_WM_FIRST, WINE_WM_LAST, PM_REMOVE)) {
|
|
|
|
|
|
|
|
TRACE("msg=0x%x wParam=0x%x lParam=0x%lx\n", msg.message, msg.wParam, msg.lParam);
|
|
|
|
switch (msg.message) {
|
|
|
|
case WINE_WM_PAUSING:
|
|
|
|
wwi->state = WINE_WS_PAUSED;
|
|
|
|
|
|
|
|
AudioIORecordingPause();
|
|
|
|
SetEvent(wwi->hEvent);
|
|
|
|
break;
|
|
|
|
case WINE_WM_RESTARTING:
|
|
|
|
{
|
|
|
|
|
|
|
|
wwi->state = WINE_WS_PLAYING;
|
|
|
|
|
|
|
|
if (wwi->bTriggerSupport)
|
|
|
|
{
|
|
|
|
/* start the recording */
|
|
|
|
AudioIORecordingResume();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unsigned char data[4];
|
|
|
|
/* read 4 bytes to start the recording */
|
|
|
|
AudioIORead( data, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
SetEvent(wwi->hEvent);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WINE_WM_HEADER:
|
|
|
|
lpWaveHdr = (LPWAVEHDR)msg.lParam;
|
|
|
|
lpWaveHdr->lpNext = 0;
|
|
|
|
|
|
|
|
/* insert buffer at the end of queue */
|
|
|
|
{
|
|
|
|
LPWAVEHDR* wh;
|
|
|
|
for (wh = &(wwi->lpQueuePtr); *wh; wh = &((*wh)->lpNext));
|
|
|
|
*wh = lpWaveHdr;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WINE_WM_RESETTING:
|
|
|
|
wwi->state = WINE_WS_STOPPED;
|
|
|
|
/* return all buffers to the app */
|
|
|
|
for (lpWaveHdr = wwi->lpQueuePtr; lpWaveHdr; lpWaveHdr = lpWaveHdr->lpNext) {
|
|
|
|
TRACE("reset %p %p\n", lpWaveHdr, lpWaveHdr->lpNext);
|
|
|
|
lpWaveHdr->dwFlags &= ~WHDR_INQUEUE;
|
|
|
|
lpWaveHdr->dwFlags |= WHDR_DONE;
|
|
|
|
|
|
|
|
if (LIBAUDIOIO_NotifyClient(uDevID, WIM_DATA,
|
|
|
|
(DWORD)lpWaveHdr, 0) != MMSYSERR_NOERROR) {
|
|
|
|
WARN("can't notify client !\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
wwi->lpQueuePtr = NULL;
|
|
|
|
SetEvent(wwi->hEvent);
|
|
|
|
break;
|
|
|
|
case WINE_WM_CLOSING:
|
|
|
|
wwi->hThread = 0;
|
|
|
|
wwi->state = WINE_WS_CLOSED;
|
|
|
|
SetEvent(wwi->hEvent);
|
|
|
|
HeapFree(GetProcessHeap(), 0, buffer);
|
|
|
|
ExitThread(0);
|
|
|
|
/* shouldn't go here */
|
|
|
|
default:
|
|
|
|
FIXME("unknown message %d\n", msg.message);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ExitThread(0);
|
|
|
|
/* just for not generating compilation warnings... should never be executed */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* widOpen [internal]
|
|
|
|
*/
|
|
|
|
static DWORD widOpen(WORD wDevID, LPWAVEOPENDESC lpDesc, DWORD dwFlags)
|
|
|
|
{
|
|
|
|
int audio;
|
|
|
|
int fragment_size;
|
|
|
|
int sample_rate;
|
|
|
|
int format;
|
|
|
|
int dsp_stereo;
|
|
|
|
WINE_WAVEIN* wwi;
|
|
|
|
int audio_fragment;
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%u, %p, %08X);\n", wDevID, lpDesc, dwFlags);
|
2002-08-01 20:22:38 +02:00
|
|
|
if (lpDesc == NULL) {
|
|
|
|
WARN("Invalid Parameter !\n");
|
|
|
|
return MMSYSERR_INVALPARAM;
|
|
|
|
}
|
|
|
|
if (wDevID >= MAX_WAVEINDRV) return MMSYSERR_BADDEVICEID;
|
|
|
|
|
|
|
|
/* only PCM format is supported so far... */
|
|
|
|
if (lpDesc->lpFormat->wFormatTag != WAVE_FORMAT_PCM ||
|
|
|
|
lpDesc->lpFormat->nChannels == 0 ||
|
2004-04-26 22:03:59 +02:00
|
|
|
lpDesc->lpFormat->nSamplesPerSec == 0 ||
|
|
|
|
(lpDesc->lpFormat->wBitsPerSample!=8 && lpDesc->lpFormat->wBitsPerSample!=16)) {
|
2006-10-20 12:59:02 +02:00
|
|
|
WARN("Bad format: tag=%04X nChannels=%d nSamplesPerSec=%d !\n",
|
2002-08-01 20:22:38 +02:00
|
|
|
lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
|
|
|
|
lpDesc->lpFormat->nSamplesPerSec);
|
|
|
|
return WAVERR_BADFORMAT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dwFlags & WAVE_FORMAT_QUERY) {
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("Query format: tag=%04X nChannels=%d nSamplesPerSec=%d !\n",
|
2002-08-01 20:22:38 +02:00
|
|
|
lpDesc->lpFormat->wFormatTag, lpDesc->lpFormat->nChannels,
|
|
|
|
lpDesc->lpFormat->nSamplesPerSec);
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (access(SOUND_DEV,0) != 0) return MMSYSERR_NOTENABLED;
|
2005-05-07 14:17:28 +02:00
|
|
|
audio = AudioIOOpenX( O_RDONLY|O_NDELAY, &spec[CLIENT_RECORD],&spec[CLIENT_RECORD]);
|
2002-08-01 20:22:38 +02:00
|
|
|
if (audio == -1) {
|
|
|
|
WARN("can't open sound device %s (%s)!\n", SOUND_DEV, strerror(errno));
|
|
|
|
return MMSYSERR_ALLOCATED;
|
|
|
|
}
|
|
|
|
fcntl(audio, F_SETFD, 1); /* set close on exec flag */
|
|
|
|
|
|
|
|
wwi = &WInDev[wDevID];
|
|
|
|
if (wwi->lpQueuePtr) {
|
|
|
|
WARN("Should have an empty queue (%p)\n", wwi->lpQueuePtr);
|
|
|
|
wwi->lpQueuePtr = NULL;
|
|
|
|
}
|
|
|
|
wwi->unixdev = audio;
|
|
|
|
wwi->dwTotalRecorded = 0;
|
|
|
|
wwi->wFlags = HIWORD(dwFlags & CALLBACK_TYPEMASK);
|
|
|
|
|
2008-03-25 23:22:10 +01:00
|
|
|
wwi->waveDesc = *lpDesc;
|
2002-08-01 20:22:38 +02:00
|
|
|
memcpy(&wwi->format, lpDesc->lpFormat, sizeof(PCMWAVEFORMAT));
|
|
|
|
|
|
|
|
if (wwi->format.wBitsPerSample == 0) {
|
|
|
|
WARN("Resetting zeroed wBitsPerSample\n");
|
|
|
|
wwi->format.wBitsPerSample = 8 *
|
|
|
|
(wwi->format.wf.nAvgBytesPerSec /
|
|
|
|
wwi->format.wf.nSamplesPerSec) /
|
|
|
|
wwi->format.wf.nChannels;
|
|
|
|
}
|
|
|
|
|
2005-05-07 14:17:28 +02:00
|
|
|
spec[CLIENT_RECORD].rate=sample_rate = wwi->format.wf.nSamplesPerSec;
|
|
|
|
dsp_stereo = ((spec[CLIENT_RECORD].channels=wwi->format.wf.nChannels) > 1) ? TRUE : FALSE;
|
|
|
|
spec[CLIENT_RECORD].precision= wwi->format.wBitsPerSample;
|
|
|
|
spec[CLIENT_RECORD].type=(spec[CLIENT_RECORD].precision==16)?TYPE_SIGNED:TYPE_UNSIGNED;
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
/* This is actually hand tuned to work so that my SB Live:
|
|
|
|
* - does not skip
|
|
|
|
* - does not buffer too much
|
|
|
|
* when sending with the Shoutcast winamp plugin
|
|
|
|
*/
|
|
|
|
/* 7 fragments max, 2^10 = 1024 bytes per fragment */
|
|
|
|
audio_fragment = 0x0007000A;
|
|
|
|
fragment_size=4096;
|
|
|
|
if (fragment_size == -1) {
|
|
|
|
AudioIOClose();
|
|
|
|
wwi->unixdev = -1;
|
|
|
|
return MMSYSERR_NOTENABLED;
|
|
|
|
}
|
|
|
|
wwi->dwFragmentSize = fragment_size;
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("wBitsPerSample=%u, nAvgBytesPerSec=%u, nSamplesPerSec=%u, nChannels=%u nBlockAlign=%u!\n",
|
2002-08-01 20:22:38 +02:00
|
|
|
wwi->format.wBitsPerSample, wwi->format.wf.nAvgBytesPerSec,
|
|
|
|
wwi->format.wf.nSamplesPerSec, wwi->format.wf.nChannels,
|
|
|
|
wwi->format.wf.nBlockAlign);
|
|
|
|
|
2004-12-06 21:55:25 +01:00
|
|
|
wwi->hEvent = CreateEventW(NULL, FALSE, FALSE, NULL);
|
2002-08-01 20:22:38 +02:00
|
|
|
wwi->hThread = CreateThread(NULL, 0, widRecorder, (LPVOID)(DWORD)wDevID, 0, &(wwi->dwThreadID));
|
2005-04-27 11:39:55 +02:00
|
|
|
if (wwi->hThread)
|
|
|
|
SetThreadPriority(wwi->hThread, THREAD_PRIORITY_TIME_CRITICAL);
|
2002-08-01 20:22:38 +02:00
|
|
|
WaitForSingleObject(wwi->hEvent, INFINITE);
|
|
|
|
|
|
|
|
if (LIBAUDIOIO_NotifyClient(wDevID, WIM_OPEN, 0L, 0L) != MMSYSERR_NOERROR) {
|
|
|
|
WARN("can't notify client !\n");
|
|
|
|
return MMSYSERR_INVALPARAM;
|
|
|
|
}
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* widClose [internal]
|
|
|
|
*/
|
|
|
|
static DWORD widClose(WORD wDevID)
|
|
|
|
{
|
|
|
|
WINE_WAVEIN* wwi;
|
|
|
|
|
|
|
|
TRACE("(%u);\n", wDevID);
|
|
|
|
if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("can't close !\n");
|
|
|
|
return MMSYSERR_INVALHANDLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
wwi = &WInDev[wDevID];
|
|
|
|
|
|
|
|
if (wwi->lpQueuePtr != NULL) {
|
|
|
|
WARN("still buffers open !\n");
|
|
|
|
return WAVERR_STILLPLAYING;
|
|
|
|
}
|
|
|
|
|
|
|
|
PostThreadMessageA(wwi->dwThreadID, WINE_WM_CLOSING, 0, 0);
|
|
|
|
WaitForSingleObject(wwi->hEvent, INFINITE);
|
|
|
|
CloseHandle(wwi->hEvent);
|
|
|
|
AudioIOClose();
|
|
|
|
wwi->unixdev = -1;
|
|
|
|
wwi->dwFragmentSize = 0;
|
|
|
|
if (LIBAUDIOIO_NotifyClient(wDevID, WIM_CLOSE, 0L, 0L) != MMSYSERR_NOERROR) {
|
|
|
|
WARN("can't notify client !\n");
|
|
|
|
return MMSYSERR_INVALPARAM;
|
|
|
|
}
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* widAddBuffer [internal]
|
|
|
|
*/
|
|
|
|
static DWORD widAddBuffer(WORD wDevID, LPWAVEHDR lpWaveHdr, DWORD dwSize)
|
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%u, %p, %08X);\n", wDevID, lpWaveHdr, dwSize);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("can't do it !\n");
|
|
|
|
return MMSYSERR_INVALHANDLE;
|
|
|
|
}
|
|
|
|
if (!(lpWaveHdr->dwFlags & WHDR_PREPARED)) {
|
|
|
|
TRACE("never been prepared !\n");
|
|
|
|
return WAVERR_UNPREPARED;
|
|
|
|
}
|
|
|
|
if (lpWaveHdr->dwFlags & WHDR_INQUEUE) {
|
|
|
|
TRACE("header already in use !\n");
|
|
|
|
return WAVERR_STILLPLAYING;
|
|
|
|
}
|
|
|
|
|
|
|
|
lpWaveHdr->dwFlags |= WHDR_INQUEUE;
|
|
|
|
lpWaveHdr->dwFlags &= ~WHDR_DONE;
|
|
|
|
lpWaveHdr->dwBytesRecorded = 0;
|
|
|
|
lpWaveHdr->lpNext = NULL;
|
|
|
|
|
|
|
|
PostThreadMessageA(WInDev[wDevID].dwThreadID, WINE_WM_HEADER, 0, (DWORD)lpWaveHdr);
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* widStart [internal]
|
|
|
|
*/
|
|
|
|
static DWORD widStart(WORD wDevID)
|
|
|
|
{
|
|
|
|
TRACE("(%u);\n", wDevID);
|
|
|
|
if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("can't start recording !\n");
|
|
|
|
return MMSYSERR_INVALHANDLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PostThreadMessageA(WInDev[wDevID].dwThreadID, WINE_WM_RESTARTING, 0, 0);
|
|
|
|
WaitForSingleObject(WInDev[wDevID].hEvent, INFINITE);
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* widStop [internal]
|
|
|
|
*/
|
|
|
|
static DWORD widStop(WORD wDevID)
|
|
|
|
{
|
|
|
|
TRACE("(%u);\n", wDevID);
|
|
|
|
if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("can't stop !\n");
|
|
|
|
return MMSYSERR_INVALHANDLE;
|
|
|
|
}
|
2008-04-22 08:18:14 +02:00
|
|
|
/* FIXME: reset isn't stop */
|
2002-08-01 20:22:38 +02:00
|
|
|
PostThreadMessageA(WInDev[wDevID].dwThreadID, WINE_WM_RESETTING, 0, 0);
|
|
|
|
WaitForSingleObject(WInDev[wDevID].hEvent, INFINITE);
|
|
|
|
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* widReset [internal]
|
|
|
|
*/
|
|
|
|
static DWORD widReset(WORD wDevID)
|
|
|
|
{
|
|
|
|
TRACE("(%u);\n", wDevID);
|
|
|
|
if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("can't reset !\n");
|
|
|
|
return MMSYSERR_INVALHANDLE;
|
|
|
|
}
|
|
|
|
PostThreadMessageA(WInDev[wDevID].dwThreadID, WINE_WM_RESETTING, 0, 0);
|
|
|
|
WaitForSingleObject(WInDev[wDevID].hEvent, INFINITE);
|
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* widGetPosition [internal]
|
|
|
|
*/
|
|
|
|
static DWORD widGetPosition(WORD wDevID, LPMMTIME lpTime, DWORD uSize)
|
|
|
|
{
|
|
|
|
WINE_WAVEIN* wwi;
|
|
|
|
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%u, %p, %u);\n", wDevID, lpTime, uSize);
|
2002-08-01 20:22:38 +02:00
|
|
|
|
|
|
|
if (wDevID >= MAX_WAVEINDRV || WInDev[wDevID].unixdev == -1) {
|
|
|
|
WARN("can't get pos !\n");
|
|
|
|
return MMSYSERR_INVALHANDLE;
|
|
|
|
}
|
|
|
|
if (lpTime == NULL) return MMSYSERR_INVALPARAM;
|
|
|
|
|
|
|
|
wwi = &WInDev[wDevID];
|
|
|
|
|
2004-07-24 01:01:21 +02:00
|
|
|
return bytes_to_mmtime(lpTime, wwi->dwTotalRecorded, &wwi->format);
|
2002-08-01 20:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
2002-08-09 03:07:29 +02:00
|
|
|
* widMessage (WINEAUDIOIO.@)
|
2002-08-01 20:22:38 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI LIBAUDIOIO_widMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
|
|
|
|
DWORD dwParam1, DWORD dwParam2)
|
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
TRACE("(%u, %04X, %08X, %08X, %08X);\n",
|
2002-08-01 20:22:38 +02:00
|
|
|
wDevID, wMsg, dwUser, dwParam1, dwParam2);
|
|
|
|
|
|
|
|
switch (wMsg) {
|
|
|
|
case DRVM_INIT:
|
|
|
|
case DRVM_EXIT:
|
|
|
|
case DRVM_ENABLE:
|
|
|
|
case DRVM_DISABLE:
|
|
|
|
/* FIXME: Pretend this is supported */
|
|
|
|
return 0;
|
|
|
|
case WIDM_OPEN: return widOpen (wDevID, (LPWAVEOPENDESC)dwParam1, dwParam2);
|
|
|
|
case WIDM_CLOSE: return widClose (wDevID);
|
|
|
|
case WIDM_ADDBUFFER: return widAddBuffer (wDevID, (LPWAVEHDR)dwParam1, dwParam2);
|
2005-03-19 18:11:02 +01:00
|
|
|
case WIDM_PREPARE: return MMSYSERR_NOTSUPPORTED;
|
|
|
|
case WIDM_UNPREPARE: return MMSYSERR_NOTSUPPORTED;
|
2004-12-06 21:55:25 +01:00
|
|
|
case WIDM_GETDEVCAPS: return widGetDevCaps (wDevID, (LPWAVEINCAPSW)dwParam1, dwParam2);
|
2002-08-01 20:22:38 +02:00
|
|
|
case WIDM_GETNUMDEVS: return wodGetNumDevs (); /* same number of devices in output as in input */
|
|
|
|
case WIDM_GETPOS: return widGetPosition(wDevID, (LPMMTIME)dwParam1, dwParam2);
|
|
|
|
case WIDM_RESET: return widReset (wDevID);
|
|
|
|
case WIDM_START: return widStart (wDevID);
|
|
|
|
case WIDM_STOP: return widStop (wDevID);
|
2003-04-27 02:37:08 +02:00
|
|
|
case DRV_QUERYDSOUNDIFACE: return widDsCreate (wDevID, (PIDSCDRIVER*)dwParam1);
|
|
|
|
case DRV_QUERYDSOUNDDESC: return widDsDesc (wDevID, (PDSDRIVERDESC)dwParam1);
|
2002-08-01 20:22:38 +02:00
|
|
|
default:
|
|
|
|
FIXME("unknown message %u!\n", wMsg);
|
|
|
|
}
|
|
|
|
return MMSYSERR_NOTSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2003-04-27 02:37:08 +02:00
|
|
|
/*======================================================================*
|
|
|
|
* Low level DSOUND capture implementation *
|
|
|
|
*======================================================================*/
|
2004-01-14 06:39:05 +01:00
|
|
|
static DWORD widDsCreate(UINT wDevID, PIDSCDRIVER* drv)
|
2003-04-27 02:37:08 +02:00
|
|
|
{
|
|
|
|
/* we can't perform memory mapping as we don't have a file stream
|
|
|
|
interface with arts like we do with oss */
|
|
|
|
MESSAGE("This sound card's driver does not support direct access\n");
|
|
|
|
MESSAGE("The (slower) DirectSound HEL mode will be used instead.\n");
|
|
|
|
return MMSYSERR_NOTSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DWORD widDsDesc(UINT wDevID, PDSDRIVERDESC desc)
|
|
|
|
{
|
|
|
|
memset(desc, 0, sizeof(*desc));
|
|
|
|
strcpy(desc->szDesc, "Wine LIBAUDIOIO DirectSound Driver");
|
2005-01-28 18:21:07 +01:00
|
|
|
strcpy(desc->szDrvname, "wineaudioio.drv");
|
2003-04-27 02:37:08 +02:00
|
|
|
return MMSYSERR_NOERROR;
|
|
|
|
}
|
|
|
|
|
2002-08-01 20:22:38 +02:00
|
|
|
#else /* HAVE_LIBAUDIOIO */
|
|
|
|
|
|
|
|
/**************************************************************************
|
2002-08-09 03:07:29 +02:00
|
|
|
* wodMessage (WINEAUDIOIO.@)
|
2002-08-01 20:22:38 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI LIBAUDIOIO_wodMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
|
|
|
|
DWORD dwParam1, DWORD dwParam2)
|
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
FIXME("(%u, %04X, %08X, %08X, %08X):stub\n", wDevID, wMsg, dwUser, dwParam1, dwParam2);
|
2002-08-01 20:22:38 +02:00
|
|
|
return MMSYSERR_NOTENABLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
2002-08-09 03:07:29 +02:00
|
|
|
* widMessage (WINEAUDIOIO.@)
|
2002-08-01 20:22:38 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI LIBAUDIOIO_widMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
|
|
|
|
DWORD dwParam1, DWORD dwParam2)
|
|
|
|
{
|
2006-10-20 12:59:02 +02:00
|
|
|
FIXME("(%u, %04X, %08X, %08X, %08X):stub\n", wDevID, wMsg, dwUser, dwParam1, dwParam2);
|
2002-08-01 20:22:38 +02:00
|
|
|
return MMSYSERR_NOTENABLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HAVE_LIBAUDIOIO */
|