mpd/src/output/plugins/WinmmOutputPlugin.cxx

338 lines
7.8 KiB
C++
Raw Normal View History

/*
2016-02-26 17:54:05 +01:00
* Copyright 2003-2016 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
2013-02-22 20:29:03 +01:00
#include "WinmmOutputPlugin.hxx"
2014-01-23 23:49:50 +01:00
#include "../OutputAPI.hxx"
#include "pcm/PcmBuffer.hxx"
2014-01-24 16:25:21 +01:00
#include "mixer/MixerList.hxx"
#include "fs/AllocatedPath.hxx"
#include "util/RuntimeError.hxx"
#include "util/Macros.hxx"
#include "util/StringCompare.hxx"
#include <stdlib.h>
#include <string.h>
2013-02-22 20:29:03 +01:00
struct WinmmBuffer {
PcmBuffer buffer;
WAVEHDR hdr;
};
2013-02-22 20:29:03 +01:00
struct WinmmOutput {
AudioOutput base;
const UINT device_id;
HWAVEOUT handle;
/**
* This event is triggered by Windows when a buffer is
* finished.
*/
HANDLE event;
2013-02-22 20:29:03 +01:00
WinmmBuffer buffers[8];
unsigned next_buffer;
WinmmOutput(const ConfigBlock &block);
};
static std::runtime_error
MakeWaveOutError(MMRESULT result, const char *prefix)
{
char buffer[256];
if (waveOutGetErrorTextA(result, buffer,
ARRAY_SIZE(buffer)) == MMSYSERR_NOERROR)
return FormatRuntimeError("%s: %s", prefix, buffer);
else
return std::runtime_error(prefix);
}
2010-10-08 22:45:08 +02:00
HWAVEOUT
winmm_output_get_handle(WinmmOutput &output)
2010-10-08 22:45:08 +02:00
{
return output.handle;
2010-10-08 22:45:08 +02:00
}
static bool
winmm_output_test_default_device(void)
{
return waveOutGetNumDevs() > 0;
}
static UINT
get_device_id(const char *device_name)
{
/* if device is not specified use wave mapper */
if (device_name == nullptr)
return WAVE_MAPPER;
UINT numdevs = waveOutGetNumDevs();
/* check for device id */
char *endptr;
UINT id = strtoul(device_name, &endptr, 0);
if (endptr > device_name && *endptr == 0) {
if (id >= numdevs)
throw FormatRuntimeError("device \"%s\" is not found",
device_name);
return id;
}
/* check for device name */
const AllocatedPath device_name_fs =
AllocatedPath::FromUTF8Throw(device_name);
for (UINT i = 0; i < numdevs; i++) {
WAVEOUTCAPS caps;
MMRESULT result = waveOutGetDevCaps(i, &caps, sizeof(caps));
if (result != MMSYSERR_NOERROR)
continue;
/* szPname is only 32 chars long, so it is often truncated.
Use partial match to work around this. */
if (StringStartsWith(device_name_fs.c_str(), caps.szPname))
return i;
}
throw FormatRuntimeError("device \"%s\" is not found", device_name);
}
WinmmOutput::WinmmOutput(const ConfigBlock &block)
:base(winmm_output_plugin, block),
device_id(get_device_id(block.GetBlockValue("device")))
{
}
static AudioOutput *
winmm_output_init(const ConfigBlock &block, Error &)
{
return &(new WinmmOutput(block))->base;
}
static void
winmm_output_finish(AudioOutput *ao)
{
2013-02-22 20:29:03 +01:00
WinmmOutput *wo = (WinmmOutput *)ao;
2013-02-22 20:29:03 +01:00
delete wo;
}
static bool
winmm_output_open(AudioOutput *ao, AudioFormat &audio_format, Error &)
{
2013-02-22 20:29:03 +01:00
WinmmOutput *wo = (WinmmOutput *)ao;
2013-02-22 20:29:03 +01:00
wo->event = CreateEvent(nullptr, false, false, nullptr);
if (wo->event == nullptr)
throw std::runtime_error("CreateEvent() failed");
2013-08-03 21:00:50 +02:00
switch (audio_format.format) {
case SampleFormat::S8:
case SampleFormat::S16:
break;
2013-08-03 21:00:50 +02:00
case SampleFormat::S24_P32:
case SampleFormat::S32:
case SampleFormat::FLOAT:
case SampleFormat::DSD:
case SampleFormat::UNDEFINED:
/* we havn't tested formats other than S16 */
2013-08-03 21:00:50 +02:00
audio_format.format = SampleFormat::S16;
break;
}
2013-08-03 21:00:50 +02:00
if (audio_format.channels > 2)
/* same here: more than stereo was not tested */
2013-08-03 21:00:50 +02:00
audio_format.channels = 2;
WAVEFORMATEX format;
format.wFormatTag = WAVE_FORMAT_PCM;
2013-08-03 21:00:50 +02:00
format.nChannels = audio_format.channels;
format.nSamplesPerSec = audio_format.sample_rate;
format.nBlockAlign = audio_format.GetFrameSize();
format.nAvgBytesPerSec = format.nSamplesPerSec * format.nBlockAlign;
2013-08-03 21:00:50 +02:00
format.wBitsPerSample = audio_format.GetSampleSize() * 8;
format.cbSize = 0;
MMRESULT result = waveOutOpen(&wo->handle, wo->device_id, &format,
(DWORD_PTR)wo->event, 0, CALLBACK_EVENT);
if (result != MMSYSERR_NOERROR) {
CloseHandle(wo->event);
throw MakeWaveOutError(result, "waveOutOpen() failed");
}
for (unsigned i = 0; i < ARRAY_SIZE(wo->buffers); ++i) {
memset(&wo->buffers[i].hdr, 0, sizeof(wo->buffers[i].hdr));
}
wo->next_buffer = 0;
return true;
}
static void
winmm_output_close(AudioOutput *ao)
{
2013-02-22 20:29:03 +01:00
WinmmOutput *wo = (WinmmOutput *)ao;
for (unsigned i = 0; i < ARRAY_SIZE(wo->buffers); ++i)
wo->buffers[i].buffer.Clear();
waveOutClose(wo->handle);
CloseHandle(wo->event);
}
/**
* Copy data into a buffer, and prepare the wave header.
*/
static void
2013-02-22 20:29:03 +01:00
winmm_set_buffer(WinmmOutput *wo, WinmmBuffer *buffer,
const void *data, size_t size)
{
void *dest = buffer->buffer.Get(size);
2013-02-22 20:29:03 +01:00
assert(dest != nullptr);
memcpy(dest, data, size);
memset(&buffer->hdr, 0, sizeof(buffer->hdr));
2013-02-22 20:29:03 +01:00
buffer->hdr.lpData = (LPSTR)dest;
buffer->hdr.dwBufferLength = size;
MMRESULT result = waveOutPrepareHeader(wo->handle, &buffer->hdr,
sizeof(buffer->hdr));
if (result != MMSYSERR_NOERROR)
throw MakeWaveOutError(result,
"waveOutPrepareHeader() failed");
}
/**
* Wait until the buffer is finished.
*/
static void
winmm_drain_buffer(WinmmOutput *wo, WinmmBuffer *buffer)
{
if ((buffer->hdr.dwFlags & WHDR_DONE) == WHDR_DONE)
/* already finished */
return;
while (true) {
MMRESULT result = waveOutUnprepareHeader(wo->handle,
&buffer->hdr,
sizeof(buffer->hdr));
if (result == MMSYSERR_NOERROR)
return;
else if (result != WAVERR_STILLPLAYING)
throw MakeWaveOutError(result,
"waveOutUnprepareHeader() failed");
/* wait some more */
WaitForSingleObject(wo->event, INFINITE);
}
}
static size_t
winmm_output_play(AudioOutput *ao, const void *chunk, size_t size, Error &)
{
2013-02-22 20:29:03 +01:00
WinmmOutput *wo = (WinmmOutput *)ao;
/* get the next buffer from the ring and prepare it */
2013-02-22 20:29:03 +01:00
WinmmBuffer *buffer = &wo->buffers[wo->next_buffer];
winmm_drain_buffer(wo, buffer);
winmm_set_buffer(wo, buffer, chunk, size);
/* enqueue the buffer */
MMRESULT result = waveOutWrite(wo->handle, &buffer->hdr,
sizeof(buffer->hdr));
if (result != MMSYSERR_NOERROR) {
waveOutUnprepareHeader(wo->handle, &buffer->hdr,
sizeof(buffer->hdr));
throw MakeWaveOutError(result, "waveOutWrite() failed");
}
/* mark our buffer as "used" */
wo->next_buffer = (wo->next_buffer + 1) %
ARRAY_SIZE(wo->buffers);
return size;
}
static void
winmm_drain_all_buffers(WinmmOutput *wo)
{
for (unsigned i = wo->next_buffer; i < ARRAY_SIZE(wo->buffers); ++i)
winmm_drain_buffer(wo, &wo->buffers[i]);
for (unsigned i = 0; i < wo->next_buffer; ++i)
winmm_drain_buffer(wo, &wo->buffers[i]);
}
static void
2013-02-22 20:29:03 +01:00
winmm_stop(WinmmOutput *wo)
{
waveOutReset(wo->handle);
for (unsigned i = 0; i < ARRAY_SIZE(wo->buffers); ++i) {
2013-02-22 20:29:03 +01:00
WinmmBuffer *buffer = &wo->buffers[i];
waveOutUnprepareHeader(wo->handle, &buffer->hdr,
sizeof(buffer->hdr));
}
}
static void
winmm_output_drain(AudioOutput *ao)
{
2013-02-22 20:29:03 +01:00
WinmmOutput *wo = (WinmmOutput *)ao;
try {
winmm_drain_all_buffers(wo);
} catch (...) {
winmm_stop(wo);
throw;
}
}
static void
winmm_output_cancel(AudioOutput *ao)
{
2013-02-22 20:29:03 +01:00
WinmmOutput *wo = (WinmmOutput *)ao;
winmm_stop(wo);
}
const struct AudioOutputPlugin winmm_output_plugin = {
2013-02-22 20:29:03 +01:00
"winmm",
winmm_output_test_default_device,
winmm_output_init,
winmm_output_finish,
nullptr,
nullptr,
winmm_output_open,
winmm_output_close,
nullptr,
nullptr,
winmm_output_play,
winmm_output_drain,
winmm_output_cancel,
nullptr,
&winmm_mixer_plugin,
};