2009-08-31 09:26:22 +02:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 The Music Player Daemon Project
|
2009-08-31 09:26:22 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-09-07 14:01:38 +02:00
|
|
|
#include "config.h"
|
2013-04-17 01:04:27 +02:00
|
|
|
#include "OpenALOutputPlugin.hxx"
|
2014-01-23 23:49:50 +01:00
|
|
|
#include "../OutputAPI.hxx"
|
2015-01-02 18:40:16 +01:00
|
|
|
#include "../Wrapper.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
|
|
|
#include "util/Domain.hxx"
|
2009-08-31 09:26:22 +02:00
|
|
|
|
2014-02-24 20:33:12 +01:00
|
|
|
#include <unistd.h>
|
2009-08-31 09:26:22 +02:00
|
|
|
|
2013-12-02 13:08:03 +01:00
|
|
|
#ifndef __APPLE__
|
2009-08-31 09:26:22 +02:00
|
|
|
#include <AL/al.h>
|
|
|
|
#include <AL/alc.h>
|
2009-09-07 14:01:38 +02:00
|
|
|
#else
|
|
|
|
#include <OpenAL/al.h>
|
|
|
|
#include <OpenAL/alc.h>
|
|
|
|
#endif
|
2009-08-31 09:26:22 +02:00
|
|
|
|
2015-01-03 20:00:16 +01:00
|
|
|
class OpenALOutput {
|
2015-01-02 18:40:16 +01:00
|
|
|
friend struct AudioOutputWrapper<OpenALOutput>;
|
|
|
|
|
2015-01-03 20:00:41 +01:00
|
|
|
/* should be enough for buffer size = 2048 */
|
|
|
|
static constexpr unsigned NUM_BUFFERS = 16;
|
|
|
|
|
2014-01-28 11:34:09 +01:00
|
|
|
AudioOutput base;
|
2011-09-16 23:31:48 +02:00
|
|
|
|
2009-08-31 09:26:22 +02:00
|
|
|
const char *device_name;
|
|
|
|
ALCdevice *device;
|
|
|
|
ALCcontext *context;
|
|
|
|
ALuint buffers[NUM_BUFFERS];
|
2011-12-13 21:40:44 +01:00
|
|
|
unsigned filled;
|
2009-08-31 09:26:22 +02:00
|
|
|
ALuint source;
|
|
|
|
ALenum format;
|
|
|
|
ALuint frequency;
|
2013-04-17 01:04:27 +02:00
|
|
|
|
2014-01-28 23:39:48 +01:00
|
|
|
OpenALOutput()
|
|
|
|
:base(openal_output_plugin) {}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
bool Configure(const config_param ¶m, Error &error);
|
|
|
|
|
|
|
|
static OpenALOutput *Create(const config_param ¶m, Error &error);
|
|
|
|
|
|
|
|
bool Open(AudioFormat &audio_format, Error &error);
|
|
|
|
|
|
|
|
void Close();
|
|
|
|
|
|
|
|
gcc_pure
|
|
|
|
unsigned Delay() const {
|
|
|
|
return filled < NUM_BUFFERS || HasProcessed()
|
|
|
|
? 0
|
|
|
|
/* we don't know exactly how long we must wait
|
|
|
|
for the next buffer to finish, so this is a
|
|
|
|
random guess: */
|
|
|
|
: 50;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t Play(const void *chunk, size_t size, Error &error);
|
|
|
|
|
|
|
|
void Cancel();
|
|
|
|
|
|
|
|
private:
|
|
|
|
gcc_pure
|
|
|
|
ALint GetSourceI(ALenum param) const {
|
|
|
|
ALint value;
|
|
|
|
alGetSourcei(source, param, &value);
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
gcc_pure
|
|
|
|
bool HasProcessed() const {
|
|
|
|
return GetSourceI(AL_BUFFERS_PROCESSED) > 0;
|
2013-04-17 01:04:27 +02:00
|
|
|
}
|
2015-01-02 18:40:16 +01:00
|
|
|
|
|
|
|
gcc_pure
|
|
|
|
bool IsPlaying() const {
|
|
|
|
return GetSourceI(AL_SOURCE_STATE) == AL_PLAYING;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetupContext(Error &error);
|
2009-08-31 09:26:22 +02:00
|
|
|
};
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
static constexpr Domain openal_output_domain("openal_output");
|
2009-08-31 09:26:22 +02:00
|
|
|
|
|
|
|
static ALenum
|
2013-08-03 21:00:50 +02:00
|
|
|
openal_audio_format(AudioFormat &audio_format)
|
2009-08-31 09:26:22 +02:00
|
|
|
{
|
2013-08-03 21:00:50 +02:00
|
|
|
/* note: cannot map SampleFormat::S8 to AL_FORMAT_STEREO8 or
|
2011-12-13 21:32:19 +01:00
|
|
|
AL_FORMAT_MONO8 since OpenAL expects unsigned 8 bit
|
|
|
|
samples, while MPD uses signed samples */
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
switch (audio_format.format) {
|
|
|
|
case SampleFormat::S16:
|
|
|
|
if (audio_format.channels == 2)
|
2009-08-31 09:26:22 +02:00
|
|
|
return AL_FORMAT_STEREO16;
|
2013-08-03 21:00:50 +02:00
|
|
|
if (audio_format.channels == 1)
|
2009-08-31 09:26:22 +02:00
|
|
|
return AL_FORMAT_MONO16;
|
2011-10-08 14:39:40 +02:00
|
|
|
|
|
|
|
/* fall back to mono */
|
2013-08-03 21:00:50 +02:00
|
|
|
audio_format.channels = 1;
|
2011-10-08 14:39:40 +02:00
|
|
|
return openal_audio_format(audio_format);
|
2009-08-31 09:26:22 +02:00
|
|
|
|
2009-11-10 17:11:34 +01:00
|
|
|
default:
|
|
|
|
/* fall back to 16 bit */
|
2013-08-03 21:00:50 +02:00
|
|
|
audio_format.format = SampleFormat::S16;
|
2011-10-08 14:39:40 +02:00
|
|
|
return openal_audio_format(audio_format);
|
2009-08-31 09:26:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
inline bool
|
|
|
|
OpenALOutput::SetupContext(Error &error)
|
2009-08-31 09:26:22 +02:00
|
|
|
{
|
2015-01-02 18:40:16 +01:00
|
|
|
device = alcOpenDevice(device_name);
|
2009-08-31 09:26:22 +02:00
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
if (device == nullptr) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(openal_output_domain,
|
|
|
|
"Error opening OpenAL device \"%s\"",
|
2015-01-02 18:40:16 +01:00
|
|
|
device_name);
|
2009-08-31 09:26:22 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
context = alcCreateContext(device, nullptr);
|
2009-08-31 09:26:22 +02:00
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
if (context == nullptr) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(openal_output_domain,
|
|
|
|
"Error creating context for \"%s\"",
|
2015-01-02 18:40:16 +01:00
|
|
|
device_name);
|
|
|
|
alcCloseDevice(device);
|
2009-08-31 09:26:22 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
inline bool
|
|
|
|
OpenALOutput::Configure(const config_param ¶m, Error &error)
|
2009-08-31 09:26:22 +02:00
|
|
|
{
|
2015-01-02 18:40:16 +01:00
|
|
|
if (!base.Configure(param, error))
|
|
|
|
return false;
|
2011-09-16 23:31:48 +02:00
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
device_name = param.GetBlockValue("device");
|
|
|
|
if (device_name == nullptr)
|
|
|
|
device_name = alcGetString(nullptr,
|
|
|
|
ALC_DEFAULT_DEVICE_SPECIFIER);
|
2009-09-06 21:33:34 +02:00
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
return true;
|
2009-08-31 09:26:22 +02:00
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
inline OpenALOutput *
|
|
|
|
OpenALOutput::Create(const config_param ¶m, Error &error)
|
2009-08-31 09:26:22 +02:00
|
|
|
{
|
2015-01-02 18:40:16 +01:00
|
|
|
OpenALOutput *oo = new OpenALOutput();
|
|
|
|
|
|
|
|
if (!oo->Configure(param, error)) {
|
|
|
|
delete oo;
|
|
|
|
return nullptr;
|
|
|
|
}
|
2009-08-31 09:26:22 +02:00
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
return oo;
|
2009-08-31 09:26:22 +02:00
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
inline bool
|
|
|
|
OpenALOutput::Open(AudioFormat &audio_format, Error &error)
|
2009-08-31 09:26:22 +02:00
|
|
|
{
|
2015-01-02 18:40:16 +01:00
|
|
|
format = openal_audio_format(audio_format);
|
2009-08-31 09:26:22 +02:00
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
if (!SetupContext(error))
|
2009-08-31 09:26:22 +02:00
|
|
|
return false;
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
alcMakeContextCurrent(context);
|
|
|
|
alGenBuffers(NUM_BUFFERS, buffers);
|
2009-08-31 09:26:22 +02:00
|
|
|
|
|
|
|
if (alGetError() != AL_NO_ERROR) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(openal_output_domain, "Failed to generate buffers");
|
2009-08-31 09:26:22 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
alGenSources(1, &source);
|
2009-08-31 09:26:22 +02:00
|
|
|
|
|
|
|
if (alGetError() != AL_NO_ERROR) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(openal_output_domain, "Failed to generate source");
|
2015-01-02 18:40:16 +01:00
|
|
|
alDeleteBuffers(NUM_BUFFERS, buffers);
|
2009-08-31 09:26:22 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
filled = 0;
|
|
|
|
frequency = audio_format.sample_rate;
|
2009-08-31 09:26:22 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
inline void
|
|
|
|
OpenALOutput::Close()
|
2009-08-31 09:26:22 +02:00
|
|
|
{
|
2015-01-02 18:40:16 +01:00
|
|
|
alcMakeContextCurrent(context);
|
|
|
|
alDeleteSources(1, &source);
|
|
|
|
alDeleteBuffers(NUM_BUFFERS, buffers);
|
|
|
|
alcDestroyContext(context);
|
|
|
|
alcCloseDevice(device);
|
2009-08-31 09:26:22 +02:00
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
inline size_t
|
|
|
|
OpenALOutput::Play(const void *chunk, size_t size, gcc_unused Error &error)
|
2011-12-13 21:48:15 +01:00
|
|
|
{
|
2015-01-02 18:40:16 +01:00
|
|
|
if (alcGetCurrentContext() != context)
|
|
|
|
alcMakeContextCurrent(context);
|
2011-12-13 21:48:15 +01:00
|
|
|
|
2009-08-31 09:26:22 +02:00
|
|
|
ALuint buffer;
|
2015-01-02 18:40:16 +01:00
|
|
|
if (filled < NUM_BUFFERS) {
|
2009-08-31 09:26:22 +02:00
|
|
|
/* fill all buffers */
|
2015-01-02 18:40:16 +01:00
|
|
|
buffer = buffers[filled];
|
|
|
|
filled++;
|
2009-08-31 09:26:22 +02:00
|
|
|
} else {
|
|
|
|
/* wait for processed buffer */
|
2015-01-02 18:40:16 +01:00
|
|
|
while (!HasProcessed())
|
2014-02-24 20:33:12 +01:00
|
|
|
usleep(10);
|
2009-08-31 09:26:22 +02:00
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
alSourceUnqueueBuffers(source, 1, &buffer);
|
2009-08-31 09:26:22 +02:00
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
alBufferData(buffer, format, chunk, size, frequency);
|
|
|
|
alSourceQueueBuffers(source, 1, &buffer);
|
2009-08-31 09:26:22 +02:00
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
if (!IsPlaying())
|
|
|
|
alSourcePlay(source);
|
2009-08-31 09:26:22 +02:00
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
inline void
|
|
|
|
OpenALOutput::Cancel()
|
2009-08-31 09:26:22 +02:00
|
|
|
{
|
2015-01-02 18:40:16 +01:00
|
|
|
filled = 0;
|
|
|
|
alcMakeContextCurrent(context);
|
|
|
|
alSourceStop(source);
|
2011-12-13 21:45:26 +01:00
|
|
|
|
|
|
|
/* force-unqueue all buffers */
|
2015-01-02 18:40:16 +01:00
|
|
|
alSourcei(source, AL_BUFFER, 0);
|
|
|
|
filled = 0;
|
2009-08-31 09:26:22 +02:00
|
|
|
}
|
|
|
|
|
2015-01-02 18:40:16 +01:00
|
|
|
typedef AudioOutputWrapper<OpenALOutput> Wrapper;
|
|
|
|
|
2014-01-28 11:22:27 +01:00
|
|
|
const struct AudioOutputPlugin openal_output_plugin = {
|
2013-04-17 01:04:27 +02:00
|
|
|
"openal",
|
|
|
|
nullptr,
|
2015-01-02 18:40:16 +01:00
|
|
|
&Wrapper::Init,
|
|
|
|
&Wrapper::Finish,
|
2013-04-17 01:04:27 +02:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2015-01-02 18:40:16 +01:00
|
|
|
&Wrapper::Open,
|
|
|
|
&Wrapper::Close,
|
|
|
|
&Wrapper::Delay,
|
2013-04-17 01:04:27 +02:00
|
|
|
nullptr,
|
2015-01-02 18:40:16 +01:00
|
|
|
&Wrapper::Play,
|
2013-04-17 01:04:27 +02:00
|
|
|
nullptr,
|
2015-01-02 18:40:16 +01:00
|
|
|
&Wrapper::Cancel,
|
2013-04-17 01:04:27 +02:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2009-08-31 09:26:22 +02:00
|
|
|
};
|