2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-09-08 04:16:08 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-09-08 04:16:08 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-04-17 00:56:09 +02:00
|
|
|
#include "AoOutputPlugin.hxx"
|
2014-01-23 23:49:50 +01:00
|
|
|
#include "../OutputAPI.hxx"
|
2016-11-02 12:36:13 +01:00
|
|
|
#include "system/Error.hxx"
|
2014-12-03 21:38:06 +01:00
|
|
|
#include "util/DivideString.hxx"
|
2014-12-03 21:39:45 +01:00
|
|
|
#include "util/SplitString.hxx"
|
2016-11-02 12:36:13 +01:00
|
|
|
#include "util/RuntimeError.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Domain.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2004-09-08 04:16:08 +02:00
|
|
|
|
|
|
|
#include <ao/ao.h>
|
2008-11-25 16:10:01 +01:00
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2011-02-13 02:37:28 +01:00
|
|
|
/* An ao_sample_format, with all fields set to zero: */
|
2013-04-17 00:56:09 +02:00
|
|
|
static ao_sample_format OUR_AO_FORMAT_INITIALIZER;
|
2011-02-13 02:37:28 +01:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
static unsigned ao_output_ref;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2017-08-09 16:58:44 +02:00
|
|
|
class AoOutput final : AudioOutput {
|
2016-11-02 12:36:13 +01:00
|
|
|
const size_t write_size;
|
2009-02-25 19:08:49 +01:00
|
|
|
int driver;
|
2016-11-02 12:36:13 +01:00
|
|
|
ao_option *options = nullptr;
|
2006-07-20 18:02:40 +02:00
|
|
|
ao_device *device;
|
2013-04-17 00:56:09 +02:00
|
|
|
|
2016-11-02 12:36:13 +01:00
|
|
|
AoOutput(const ConfigBlock &block);
|
2017-01-25 10:33:27 +01:00
|
|
|
~AoOutput();
|
|
|
|
|
2017-01-25 10:46:09 +01:00
|
|
|
public:
|
2017-08-09 16:58:44 +02:00
|
|
|
static AudioOutput *Create(EventLoop &, const ConfigBlock &block) {
|
2017-01-25 10:33:27 +01:00
|
|
|
return new AoOutput(block);
|
|
|
|
}
|
|
|
|
|
2017-08-09 16:58:44 +02:00
|
|
|
void Open(AudioFormat &audio_format) override;
|
|
|
|
void Close() noexcept override;
|
2017-01-25 10:33:27 +01:00
|
|
|
|
2017-08-09 16:58:44 +02:00
|
|
|
size_t Play(const void *chunk, size_t size) override;
|
2013-04-17 00:56:09 +02:00
|
|
|
};
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
static constexpr Domain ao_output_domain("ao_output");
|
2009-02-26 22:04:59 +01:00
|
|
|
|
2016-11-02 12:36:13 +01:00
|
|
|
|
|
|
|
static std::system_error
|
|
|
|
MakeAoError()
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2016-11-02 12:36:13 +01:00
|
|
|
const char *error = "Unknown libao failure";
|
2008-11-25 16:17:48 +01:00
|
|
|
|
|
|
|
switch (errno) {
|
|
|
|
case AO_ENODRIVER:
|
|
|
|
error = "No such libao driver";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_ENOTLIVE:
|
|
|
|
error = "This driver is not a libao live device";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_EBADOPTION:
|
|
|
|
error = "Invalid libao option";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_EOPENDEVICE:
|
|
|
|
error = "Cannot open the libao device";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_EFAIL:
|
|
|
|
error = "Generic libao failure";
|
|
|
|
break;
|
2004-10-20 18:16:50 +02:00
|
|
|
}
|
2008-11-25 16:17:48 +01:00
|
|
|
|
2016-11-02 12:36:13 +01:00
|
|
|
return MakeErrno(errno, error);
|
2004-10-20 18:16:50 +02:00
|
|
|
}
|
|
|
|
|
2016-11-02 12:36:13 +01:00
|
|
|
AoOutput::AoOutput(const ConfigBlock &block)
|
2017-08-09 16:58:44 +02:00
|
|
|
:AudioOutput(0),
|
2016-11-02 12:36:13 +01:00
|
|
|
write_size(block.GetBlockValue("write_size", 1024u))
|
2004-10-28 07:14:55 +02:00
|
|
|
{
|
2009-02-25 19:08:49 +01:00
|
|
|
if (ao_output_ref == 0) {
|
2004-10-20 18:05:13 +02:00
|
|
|
ao_initialize();
|
|
|
|
}
|
2009-02-25 19:08:49 +01:00
|
|
|
ao_output_ref++;
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2016-11-02 12:36:13 +01:00
|
|
|
const char *value = block.GetBlockValue("driver", "default");
|
2009-02-26 22:04:59 +01:00
|
|
|
if (0 == strcmp(value, "default"))
|
2013-04-17 00:56:09 +02:00
|
|
|
driver = ao_default_driver_id();
|
2009-02-26 22:04:59 +01:00
|
|
|
else
|
2013-04-17 00:56:09 +02:00
|
|
|
driver = ao_driver_id(value);
|
2009-02-26 22:04:59 +01:00
|
|
|
|
2016-11-02 12:36:13 +01:00
|
|
|
if (driver < 0)
|
|
|
|
throw FormatRuntimeError("\"%s\" is not a valid ao driver",
|
|
|
|
value);
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2013-04-17 00:56:09 +02:00
|
|
|
ao_info *ai = ao_driver_info(driver);
|
2016-11-02 12:36:13 +01:00
|
|
|
if (ai == nullptr)
|
|
|
|
throw std::runtime_error("problems getting driver info");
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatDebug(ao_output_domain, "using ao driver \"%s\" for \"%s\"\n",
|
2015-01-21 22:13:44 +01:00
|
|
|
ai->short_name, block.GetBlockValue("name", nullptr));
|
2004-11-02 19:31:54 +01:00
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
value = block.GetBlockValue("options", nullptr);
|
2013-04-17 00:56:09 +02:00
|
|
|
if (value != nullptr) {
|
2014-12-03 21:39:45 +01:00
|
|
|
for (const auto &i : SplitString(value, ';')) {
|
2014-12-04 23:05:44 +01:00
|
|
|
const DivideString ss(i.c_str(), '=', true);
|
2009-01-03 13:20:12 +01:00
|
|
|
|
2016-11-02 12:36:13 +01:00
|
|
|
if (!ss.IsDefined())
|
|
|
|
throw FormatRuntimeError("problems parsing options \"%s\"",
|
2014-12-03 21:39:45 +01:00
|
|
|
i.c_str());
|
2009-01-03 13:20:12 +01:00
|
|
|
|
2014-12-02 22:29:41 +01:00
|
|
|
ao_append_option(&options, ss.GetFirst(), ss.GetSecond());
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
2013-04-17 00:56:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-25 10:33:27 +01:00
|
|
|
AoOutput::~AoOutput()
|
2013-04-17 00:56:09 +02:00
|
|
|
{
|
2017-01-25 10:33:27 +01:00
|
|
|
ao_free_options(options);
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
ao_output_ref--;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-25 19:08:49 +01:00
|
|
|
if (ao_output_ref == 0)
|
2006-07-20 18:02:40 +02:00
|
|
|
ao_shutdown();
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2017-01-25 10:33:27 +01:00
|
|
|
void
|
|
|
|
AoOutput::Open(AudioFormat &audio_format)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2011-02-13 02:37:28 +01:00
|
|
|
ao_sample_format format = OUR_AO_FORMAT_INITIALIZER;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
switch (audio_format.format) {
|
|
|
|
case SampleFormat::S8:
|
2009-11-10 17:11:34 +01:00
|
|
|
format.bits = 8;
|
|
|
|
break;
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
case SampleFormat::S16:
|
2009-11-10 17:11:34 +01:00
|
|
|
format.bits = 16;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* support for 24 bit samples in libao is currently
|
|
|
|
dubious, and until we have sorted that out,
|
|
|
|
convert everything to 16 bit */
|
2013-08-03 21:00:50 +02:00
|
|
|
audio_format.format = SampleFormat::S16;
|
2009-11-10 17:11:34 +01:00
|
|
|
format.bits = 16;
|
|
|
|
break;
|
|
|
|
}
|
2008-12-09 07:39:24 +01:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
format.rate = audio_format.sample_rate;
|
2004-10-20 18:05:13 +02:00
|
|
|
format.byte_format = AO_FMT_NATIVE;
|
2013-08-03 21:00:50 +02:00
|
|
|
format.channels = audio_format.channels;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2017-01-25 10:33:27 +01:00
|
|
|
device = ao_open_live(driver, &format, options);
|
|
|
|
if (device == nullptr)
|
2016-11-02 12:36:13 +01:00
|
|
|
throw MakeAoError();
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2017-01-25 10:33:27 +01:00
|
|
|
void
|
2017-08-09 16:58:44 +02:00
|
|
|
AoOutput::Close() noexcept
|
2004-10-20 18:05:13 +02:00
|
|
|
{
|
2017-01-25 10:33:27 +01:00
|
|
|
ao_close(device);
|
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2017-01-25 10:33:27 +01:00
|
|
|
size_t
|
|
|
|
AoOutput::Play(const void *chunk, size_t size)
|
|
|
|
{
|
|
|
|
if (size > write_size)
|
|
|
|
size = write_size;
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2017-01-25 10:44:19 +01:00
|
|
|
/* For whatever reason, libao wants a non-const pointer.
|
|
|
|
Let's hope it does not write to the buffer, and use the
|
|
|
|
union deconst hack to * work around this API misdesign. */
|
|
|
|
char *data = const_cast<char *>((const char *)chunk);
|
|
|
|
|
2017-01-25 10:33:27 +01:00
|
|
|
if (ao_play(device, data, size) == 0)
|
2016-11-02 12:36:13 +01:00
|
|
|
throw MakeAoError();
|
2004-09-08 04:16:08 +02:00
|
|
|
|
2009-02-23 09:29:56 +01:00
|
|
|
return size;
|
2004-09-08 04:16:08 +02:00
|
|
|
}
|
|
|
|
|
2014-01-28 11:22:27 +01:00
|
|
|
const struct AudioOutputPlugin ao_output_plugin = {
|
2013-04-17 00:56:09 +02:00
|
|
|
"ao",
|
|
|
|
nullptr,
|
2017-08-09 16:58:44 +02:00
|
|
|
&AoOutput::Create,
|
2013-04-17 00:56:09 +02:00
|
|
|
nullptr,
|
2004-09-08 04:16:08 +02:00
|
|
|
};
|