2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-09-24 07:20:26 +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.
|
2008-09-24 07:20:26 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-04 09:46:41 +01:00
|
|
|
#include "OutputThread.hxx"
|
2014-01-28 11:42:54 +01:00
|
|
|
#include "Internal.hxx"
|
2013-07-30 08:34:10 +02:00
|
|
|
#include "OutputAPI.hxx"
|
2014-01-28 11:42:54 +01:00
|
|
|
#include "Domain.hxx"
|
2013-04-09 01:24:52 +02:00
|
|
|
#include "pcm/PcmMix.hxx"
|
2013-01-10 10:44:04 +01:00
|
|
|
#include "notify.hxx"
|
2014-01-24 16:31:52 +01:00
|
|
|
#include "filter/FilterInternal.hxx"
|
|
|
|
#include "filter/plugins/ConvertFilterPlugin.hxx"
|
|
|
|
#include "filter/plugins/ReplayGainFilterPlugin.hxx"
|
2013-01-04 22:31:53 +01:00
|
|
|
#include "PlayerControl.hxx"
|
2013-01-04 10:16:16 +01:00
|
|
|
#include "MusicPipe.hxx"
|
|
|
|
#include "MusicChunk.hxx"
|
2014-01-14 09:59:04 +01:00
|
|
|
#include "thread/Util.hxx"
|
2014-01-23 10:07:14 +01:00
|
|
|
#include "thread/Name.hxx"
|
2013-08-07 10:31:31 +02:00
|
|
|
#include "system/FatalError.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2013-10-15 09:21:13 +02:00
|
|
|
#include "Compiler.h"
|
2008-09-24 07:20:26 +02:00
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <assert.h>
|
2013-07-30 20:11:57 +02:00
|
|
|
#include <string.h>
|
2009-02-25 19:53:38 +01:00
|
|
|
|
2014-01-28 11:34:09 +01:00
|
|
|
static void ao_command_finished(AudioOutput *ao)
|
2008-09-24 07:20:26 +02:00
|
|
|
{
|
|
|
|
assert(ao->command != AO_COMMAND_NONE);
|
|
|
|
ao->command = AO_COMMAND_NONE;
|
2009-10-29 17:06:40 +01:00
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2013-01-10 10:44:04 +01:00
|
|
|
audio_output_client_notify.Signal();
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2008-09-24 07:20:26 +02:00
|
|
|
}
|
|
|
|
|
2009-10-23 10:55:52 +02:00
|
|
|
static bool
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_enable(AudioOutput *ao)
|
2009-10-23 10:55:52 +02:00
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2009-10-29 17:06:40 +01:00
|
|
|
bool success;
|
2009-10-23 10:55:52 +02:00
|
|
|
|
|
|
|
if (ao->really_enabled)
|
|
|
|
return true;
|
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2013-08-10 18:02:44 +02:00
|
|
|
success = ao_plugin_enable(ao, error);
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2009-10-29 17:06:40 +01:00
|
|
|
if (!success) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatError(error,
|
|
|
|
"Failed to enable \"%s\" [%s]",
|
2014-01-29 00:53:49 +01:00
|
|
|
ao->name, ao->plugin.name);
|
2009-10-23 10:55:52 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ao->really_enabled = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_close(AudioOutput *ao, bool drain);
|
2009-10-23 10:55:52 +02:00
|
|
|
|
|
|
|
static void
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_disable(AudioOutput *ao)
|
2009-10-23 10:55:52 +02:00
|
|
|
{
|
|
|
|
if (ao->open)
|
2009-10-29 15:59:40 +01:00
|
|
|
ao_close(ao, false);
|
2009-10-23 10:55:52 +02:00
|
|
|
|
|
|
|
if (ao->really_enabled) {
|
|
|
|
ao->really_enabled = false;
|
2009-10-29 17:06:40 +01:00
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2011-09-16 23:31:48 +02:00
|
|
|
ao_plugin_disable(ao);
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2009-10-23 10:55:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
static AudioFormat
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_filter_open(AudioOutput *ao, AudioFormat &format,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error_r)
|
2010-05-02 17:38:02 +02:00
|
|
|
{
|
2013-08-03 21:00:50 +02:00
|
|
|
assert(format.IsValid());
|
2011-03-16 23:37:41 +01:00
|
|
|
|
2010-05-02 15:57:59 +02:00
|
|
|
/* the replay_gain filter cannot fail here */
|
2013-12-24 10:52:30 +01:00
|
|
|
if (ao->replay_gain_filter != nullptr &&
|
|
|
|
!ao->replay_gain_filter->Open(format, error_r).IsDefined())
|
|
|
|
return AudioFormat::Undefined();
|
|
|
|
|
|
|
|
if (ao->other_replay_gain_filter != nullptr &&
|
|
|
|
!ao->other_replay_gain_filter->Open(format, error_r).IsDefined()) {
|
|
|
|
if (ao->replay_gain_filter != nullptr)
|
|
|
|
ao->replay_gain_filter->Close();
|
|
|
|
return AudioFormat::Undefined();
|
|
|
|
}
|
2010-05-02 15:57:59 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
const AudioFormat af = ao->filter->Open(format, error_r);
|
|
|
|
if (!af.IsDefined()) {
|
2013-10-19 18:19:03 +02:00
|
|
|
if (ao->replay_gain_filter != nullptr)
|
2013-02-01 18:40:36 +01:00
|
|
|
ao->replay_gain_filter->Close();
|
2013-10-19 18:19:03 +02:00
|
|
|
if (ao->other_replay_gain_filter != nullptr)
|
2013-02-01 18:40:36 +01:00
|
|
|
ao->other_replay_gain_filter->Close();
|
2010-05-02 15:57:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return af;
|
2010-05-02 17:38:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_filter_close(AudioOutput *ao)
|
2010-05-02 17:38:02 +02:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
if (ao->replay_gain_filter != nullptr)
|
2013-02-01 18:40:36 +01:00
|
|
|
ao->replay_gain_filter->Close();
|
2013-10-19 18:19:03 +02:00
|
|
|
if (ao->other_replay_gain_filter != nullptr)
|
2013-02-01 18:40:36 +01:00
|
|
|
ao->other_replay_gain_filter->Close();
|
2010-05-02 15:57:59 +02:00
|
|
|
|
2013-02-01 18:40:36 +01:00
|
|
|
ao->filter->Close();
|
2010-05-02 17:38:02 +02:00
|
|
|
}
|
|
|
|
|
2009-07-06 08:04:18 +02:00
|
|
|
static void
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_open(AudioOutput *ao)
|
2009-07-06 08:04:18 +02:00
|
|
|
{
|
|
|
|
bool success;
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2009-11-10 17:57:14 +01:00
|
|
|
struct audio_format_string af_string;
|
2009-07-06 08:04:18 +02:00
|
|
|
|
|
|
|
assert(!ao->open);
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(ao->pipe != nullptr);
|
|
|
|
assert(ao->chunk == nullptr);
|
2013-08-03 21:00:50 +02:00
|
|
|
assert(ao->in_audio_format.IsValid());
|
2009-07-06 08:04:18 +02:00
|
|
|
|
2013-11-24 20:20:57 +01:00
|
|
|
ao->fail_timer.Reset();
|
2010-11-07 15:30:18 +01:00
|
|
|
|
2009-10-23 10:55:52 +02:00
|
|
|
/* enable the device (just in case the last enable has failed) */
|
|
|
|
|
|
|
|
if (!ao_enable(ao))
|
|
|
|
/* still no luck */
|
|
|
|
return;
|
|
|
|
|
2009-07-06 10:01:47 +02:00
|
|
|
/* open the filter */
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
const AudioFormat filter_audio_format =
|
2013-08-10 18:02:44 +02:00
|
|
|
ao_filter_open(ao, ao->in_audio_format, error);
|
2013-08-03 21:00:50 +02:00
|
|
|
if (!filter_audio_format.IsDefined()) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatError(error, "Failed to open filter for \"%s\" [%s]",
|
2014-01-29 00:53:49 +01:00
|
|
|
ao->name, ao->plugin.name);
|
2009-07-06 10:01:47 +02:00
|
|
|
|
2013-11-24 20:20:57 +01:00
|
|
|
ao->fail_timer.Update();
|
2009-07-06 10:01:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
assert(filter_audio_format.IsValid());
|
2011-03-16 23:37:41 +01:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
ao->out_audio_format = filter_audio_format;
|
|
|
|
ao->out_audio_format.ApplyMask(ao->config_audio_format);
|
2009-07-06 10:01:47 +02:00
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2013-08-10 18:02:44 +02:00
|
|
|
success = ao_plugin_open(ao, ao->out_audio_format, error);
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2009-07-06 08:04:18 +02:00
|
|
|
|
|
|
|
assert(!ao->open);
|
|
|
|
|
|
|
|
if (!success) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatError(error, "Failed to open \"%s\" [%s]",
|
2014-01-29 00:53:49 +01:00
|
|
|
ao->name, ao->plugin.name);
|
2009-07-06 08:04:18 +02:00
|
|
|
|
2010-05-02 17:38:02 +02:00
|
|
|
ao_filter_close(ao);
|
2013-11-24 20:20:57 +01:00
|
|
|
ao->fail_timer.Update();
|
2009-07-06 08:04:18 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-11 16:15:38 +01:00
|
|
|
if (!convert_filter_set(ao->convert_filter, ao->out_audio_format,
|
|
|
|
error)) {
|
|
|
|
FormatError(error, "Failed to convert for \"%s\" [%s]",
|
2014-01-29 00:53:49 +01:00
|
|
|
ao->name, ao->plugin.name);
|
2013-11-11 16:15:38 +01:00
|
|
|
|
|
|
|
ao_filter_close(ao);
|
2013-11-24 20:20:57 +01:00
|
|
|
ao->fail_timer.Update();
|
2013-11-11 16:15:38 +01:00
|
|
|
return;
|
|
|
|
}
|
2009-07-06 08:04:18 +02:00
|
|
|
|
|
|
|
ao->open = true;
|
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatDebug(output_domain,
|
|
|
|
"opened plugin=%s name=\"%s\" audio_format=%s",
|
2014-01-29 00:53:49 +01:00
|
|
|
ao->plugin.name, ao->name,
|
2013-09-27 22:31:24 +02:00
|
|
|
audio_format_to_string(ao->out_audio_format, &af_string));
|
2009-07-06 08:04:18 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
if (ao->in_audio_format != ao->out_audio_format)
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatDebug(output_domain, "converting from %s",
|
|
|
|
audio_format_to_string(ao->in_audio_format,
|
|
|
|
&af_string));
|
2009-07-06 08:04:18 +02:00
|
|
|
}
|
|
|
|
|
2009-02-10 22:09:07 +01:00
|
|
|
static void
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_close(AudioOutput *ao, bool drain)
|
2009-02-10 22:09:07 +01:00
|
|
|
{
|
|
|
|
assert(ao->open);
|
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
ao->pipe = nullptr;
|
2009-03-09 19:25:26 +01:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
ao->chunk = nullptr;
|
2009-03-25 17:07:15 +01:00
|
|
|
ao->open = false;
|
2009-10-29 17:06:40 +01:00
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2009-03-09 19:25:26 +01:00
|
|
|
|
2009-10-29 15:59:40 +01:00
|
|
|
if (drain)
|
2011-09-16 23:31:48 +02:00
|
|
|
ao_plugin_drain(ao);
|
2009-10-29 15:59:40 +01:00
|
|
|
else
|
2011-09-16 23:31:48 +02:00
|
|
|
ao_plugin_cancel(ao);
|
2009-10-29 15:59:40 +01:00
|
|
|
|
2011-09-16 23:31:48 +02:00
|
|
|
ao_plugin_close(ao);
|
2010-05-02 17:38:02 +02:00
|
|
|
ao_filter_close(ao);
|
2009-03-08 04:13:55 +01:00
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2009-10-29 17:06:40 +01:00
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatDebug(output_domain, "closed plugin=%s name=\"%s\"",
|
2014-01-29 00:53:49 +01:00
|
|
|
ao->plugin.name, ao->name);
|
2009-02-10 22:09:07 +01:00
|
|
|
}
|
|
|
|
|
2009-07-06 10:01:47 +02:00
|
|
|
static void
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_reopen_filter(AudioOutput *ao)
|
2009-07-06 10:01:47 +02:00
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2009-07-06 10:01:47 +02:00
|
|
|
|
2010-05-02 17:38:02 +02:00
|
|
|
ao_filter_close(ao);
|
2013-08-03 21:00:50 +02:00
|
|
|
const AudioFormat filter_audio_format =
|
2013-08-10 18:02:44 +02:00
|
|
|
ao_filter_open(ao, ao->in_audio_format, error);
|
2013-11-11 16:15:38 +01:00
|
|
|
if (!filter_audio_format.IsDefined() ||
|
|
|
|
!convert_filter_set(ao->convert_filter, ao->out_audio_format,
|
|
|
|
error)) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatError(error,
|
|
|
|
"Failed to open filter for \"%s\" [%s]",
|
2014-01-29 00:53:49 +01:00
|
|
|
ao->name, ao->plugin.name);
|
2009-07-06 10:01:47 +02:00
|
|
|
|
|
|
|
/* this is a little code duplication fro ao_close(),
|
|
|
|
but we cannot call this function because we must
|
|
|
|
not call filter_close(ao->filter) again */
|
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
ao->pipe = nullptr;
|
2009-07-06 10:01:47 +02:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
ao->chunk = nullptr;
|
2009-07-06 10:01:47 +02:00
|
|
|
ao->open = false;
|
2013-11-24 20:20:57 +01:00
|
|
|
ao->fail_timer.Update();
|
2009-07-06 10:01:47 +02:00
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2011-09-16 23:31:48 +02:00
|
|
|
ao_plugin_close(ao);
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2009-07-06 10:01:47 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-06 10:01:02 +02:00
|
|
|
static void
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_reopen(AudioOutput *ao)
|
2009-07-06 10:01:02 +02:00
|
|
|
{
|
2013-08-03 21:00:50 +02:00
|
|
|
if (!ao->config_audio_format.IsFullyDefined()) {
|
2009-07-06 10:01:02 +02:00
|
|
|
if (ao->open) {
|
2013-09-26 21:51:45 +02:00
|
|
|
const MusicPipe *mp = ao->pipe;
|
2009-10-29 15:59:40 +01:00
|
|
|
ao_close(ao, true);
|
2009-07-06 10:01:02 +02:00
|
|
|
ao->pipe = mp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* no audio format is configured: copy in->out, let
|
|
|
|
the output's open() method determine the effective
|
|
|
|
out_audio_format */
|
|
|
|
ao->out_audio_format = ao->in_audio_format;
|
2013-08-03 21:00:50 +02:00
|
|
|
ao->out_audio_format.ApplyMask(ao->config_audio_format);
|
2009-07-06 10:01:02 +02:00
|
|
|
}
|
|
|
|
|
2009-07-06 10:01:47 +02:00
|
|
|
if (ao->open)
|
|
|
|
/* the audio format has changed, and all filters have
|
|
|
|
to be reconfigured */
|
|
|
|
ao_reopen_filter(ao);
|
|
|
|
else
|
2009-07-06 10:01:02 +02:00
|
|
|
ao_open(ao);
|
|
|
|
}
|
|
|
|
|
2010-11-05 08:02:38 +01:00
|
|
|
/**
|
|
|
|
* Wait until the output's delay reaches zero.
|
|
|
|
*
|
|
|
|
* @return true if playback should be continued, false if a command
|
|
|
|
* was issued
|
|
|
|
*/
|
|
|
|
static bool
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_wait(AudioOutput *ao)
|
2010-11-05 08:02:38 +01:00
|
|
|
{
|
|
|
|
while (true) {
|
2011-09-16 23:31:48 +02:00
|
|
|
unsigned delay = ao_plugin_delay(ao);
|
2010-11-05 08:02:38 +01:00
|
|
|
if (delay == 0)
|
|
|
|
return true;
|
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
(void)ao->cond.timed_wait(ao->mutex, delay);
|
2010-11-05 08:02:38 +01:00
|
|
|
|
|
|
|
if (ao->command != AO_COMMAND_NONE)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-04 09:46:41 +01:00
|
|
|
static const void *
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_chunk_data(AudioOutput *ao, const struct music_chunk *chunk,
|
2013-02-01 18:40:36 +01:00
|
|
|
Filter *replay_gain_filter,
|
2010-05-02 15:57:59 +02:00
|
|
|
unsigned *replay_gain_serial_p,
|
2010-05-02 16:32:38 +02:00
|
|
|
size_t *length_r)
|
2008-09-24 07:20:26 +02:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(chunk != nullptr);
|
2013-01-04 21:38:46 +01:00
|
|
|
assert(!chunk->IsEmpty());
|
|
|
|
assert(chunk->CheckFormat(ao->in_audio_format));
|
2008-11-02 20:16:56 +01:00
|
|
|
|
2013-01-04 09:46:41 +01:00
|
|
|
const void *data = chunk->data;
|
2010-05-02 16:32:38 +02:00
|
|
|
size_t length = chunk->length;
|
|
|
|
|
|
|
|
(void)ao;
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
assert(length % ao->in_audio_format.GetFrameSize() == 0);
|
2010-05-02 16:32:38 +02:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
if (length > 0 && replay_gain_filter != nullptr) {
|
2010-05-02 15:57:59 +02:00
|
|
|
if (chunk->replay_gain_serial != *replay_gain_serial_p) {
|
|
|
|
replay_gain_filter_set_info(replay_gain_filter,
|
|
|
|
chunk->replay_gain_serial != 0
|
|
|
|
? &chunk->replay_gain_info
|
2013-10-19 18:19:03 +02:00
|
|
|
: nullptr);
|
2010-05-02 15:57:59 +02:00
|
|
|
*replay_gain_serial_p = chunk->replay_gain_serial;
|
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2013-02-01 18:40:36 +01:00
|
|
|
data = replay_gain_filter->FilterPCM(data, length,
|
2013-08-10 18:02:44 +02:00
|
|
|
&length, error);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (data == nullptr) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatError(error, "\"%s\" [%s] failed to filter",
|
2014-01-29 00:53:49 +01:00
|
|
|
ao->name, ao->plugin.name);
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2010-05-02 15:57:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-02 16:32:38 +02:00
|
|
|
*length_r = length;
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2013-01-04 09:46:41 +01:00
|
|
|
static const void *
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_filter_chunk(AudioOutput *ao, const struct music_chunk *chunk,
|
2010-05-02 16:32:38 +02:00
|
|
|
size_t *length_r)
|
|
|
|
{
|
|
|
|
size_t length;
|
2013-01-04 09:46:41 +01:00
|
|
|
const void *data = ao_chunk_data(ao, chunk, ao->replay_gain_filter,
|
2010-05-02 15:57:59 +02:00
|
|
|
&ao->replay_gain_serial, &length);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (data == nullptr)
|
|
|
|
return nullptr;
|
2010-05-02 15:57:59 +02:00
|
|
|
|
2010-05-02 16:32:38 +02:00
|
|
|
if (length == 0) {
|
|
|
|
/* empty chunk, nothing to do */
|
|
|
|
*length_r = 0;
|
|
|
|
return data;
|
2009-10-29 17:06:40 +01:00
|
|
|
}
|
2009-03-09 19:25:26 +01:00
|
|
|
|
2010-05-02 15:31:31 +02:00
|
|
|
/* cross-fade */
|
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
if (chunk->other != nullptr) {
|
2010-05-02 15:31:31 +02:00
|
|
|
size_t other_length;
|
2013-01-04 09:46:41 +01:00
|
|
|
const void *other_data =
|
2010-05-02 15:57:59 +02:00
|
|
|
ao_chunk_data(ao, chunk->other,
|
|
|
|
ao->other_replay_gain_filter,
|
|
|
|
&ao->other_replay_gain_serial,
|
|
|
|
&other_length);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (other_data == nullptr)
|
|
|
|
return nullptr;
|
2010-05-02 15:57:59 +02:00
|
|
|
|
2010-05-02 15:31:31 +02:00
|
|
|
if (other_length == 0) {
|
|
|
|
*length_r = 0;
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if the "other" chunk is longer, then that trailer
|
|
|
|
is used as-is, without mixing; it is part of the
|
|
|
|
"next" song being faded in, and if there's a rest,
|
|
|
|
it means cross-fading ends here */
|
|
|
|
|
|
|
|
if (length > other_length)
|
|
|
|
length = other_length;
|
|
|
|
|
2013-07-29 08:10:10 +02:00
|
|
|
void *dest = ao->cross_fade_buffer.Get(other_length);
|
2010-05-02 15:31:31 +02:00
|
|
|
memcpy(dest, other_data, other_length);
|
2013-12-28 17:42:03 +01:00
|
|
|
if (!pcm_mix(ao->cross_fade_dither, dest, data, length,
|
2013-08-03 21:00:50 +02:00
|
|
|
ao->in_audio_format.format,
|
2011-10-20 02:25:40 +02:00
|
|
|
1.0 - chunk->mix_ratio)) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatError(output_domain,
|
|
|
|
"Cannot cross-fade format %s",
|
|
|
|
sample_format_to_string(ao->in_audio_format.format));
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2011-10-20 02:25:40 +02:00
|
|
|
}
|
2010-05-02 15:31:31 +02:00
|
|
|
|
|
|
|
data = dest;
|
|
|
|
length = other_length;
|
|
|
|
}
|
|
|
|
|
2010-05-02 16:32:38 +02:00
|
|
|
/* apply filter chain */
|
2009-03-09 19:25:26 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
|
|
|
data = ao->filter->FilterPCM(data, length, &length, error);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (data == nullptr) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatError(error, "\"%s\" [%s] failed to filter",
|
2014-01-29 00:53:49 +01:00
|
|
|
ao->name, ao->plugin.name);
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2010-05-02 16:32:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
*length_r = length;
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_play_chunk(AudioOutput *ao, const struct music_chunk *chunk)
|
2010-05-02 16:32:38 +02:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(ao != nullptr);
|
|
|
|
assert(ao->filter != nullptr);
|
2010-05-02 16:32:38 +02:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
if (ao->tags && gcc_unlikely(chunk->tag != nullptr)) {
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2011-09-16 23:31:48 +02:00
|
|
|
ao_plugin_send_tag(ao, chunk->tag);
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2010-05-02 16:32:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t size;
|
2012-06-12 19:21:53 +02:00
|
|
|
#if GCC_CHECK_VERSION(4,7)
|
|
|
|
/* workaround -Wmaybe-uninitialized false positive */
|
|
|
|
size = 0;
|
|
|
|
#endif
|
2013-01-04 09:46:41 +01:00
|
|
|
const char *data = (const char *)ao_filter_chunk(ao, chunk, &size);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (data == nullptr) {
|
2009-10-29 15:59:40 +01:00
|
|
|
ao_close(ao, false);
|
2009-07-06 10:01:47 +02:00
|
|
|
|
|
|
|
/* don't automatically reopen this device for 10
|
|
|
|
seconds */
|
2013-11-24 20:20:57 +01:00
|
|
|
ao->fail_timer.Update();
|
2009-07-06 10:01:47 +02:00
|
|
|
return false;
|
2008-12-24 03:08:39 +01:00
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
|
|
|
|
2009-03-10 20:41:27 +01:00
|
|
|
while (size > 0 && ao->command == AO_COMMAND_NONE) {
|
2009-02-23 09:29:56 +01:00
|
|
|
size_t nbytes;
|
|
|
|
|
2010-11-05 08:02:38 +01:00
|
|
|
if (!ao_wait(ao))
|
|
|
|
break;
|
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2013-08-10 18:02:44 +02:00
|
|
|
nbytes = ao_plugin_play(ao, data, size, error);
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2009-02-23 09:29:56 +01:00
|
|
|
if (nbytes == 0) {
|
|
|
|
/* play()==0 means failure */
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatError(error, "\"%s\" [%s] failed to play",
|
2014-01-29 00:53:49 +01:00
|
|
|
ao->name, ao->plugin.name);
|
2009-02-26 22:04:59 +01:00
|
|
|
|
2009-10-29 15:59:40 +01:00
|
|
|
ao_close(ao, false);
|
2009-03-09 19:08:35 +01:00
|
|
|
|
|
|
|
/* don't automatically reopen this device for
|
|
|
|
10 seconds */
|
2013-11-24 20:20:57 +01:00
|
|
|
assert(!ao->fail_timer.IsDefined());
|
|
|
|
ao->fail_timer.Update();
|
2010-11-04 23:40:43 +01:00
|
|
|
|
2009-03-09 19:25:26 +01:00
|
|
|
return false;
|
2009-02-23 09:29:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(nbytes <= size);
|
2013-08-03 21:00:50 +02:00
|
|
|
assert(nbytes % ao->out_audio_format.GetFrameSize() == 0);
|
2009-02-23 09:29:56 +01:00
|
|
|
|
|
|
|
data += nbytes;
|
|
|
|
size -= nbytes;
|
2008-10-29 20:40:33 +01:00
|
|
|
}
|
|
|
|
|
2009-03-09 19:25:26 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-02 20:20:14 +01:00
|
|
|
static const struct music_chunk *
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_next_chunk(AudioOutput *ao)
|
2009-11-02 20:20:14 +01:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
return ao->chunk != nullptr
|
2009-11-02 20:20:14 +01:00
|
|
|
/* continue the previous play() call */
|
|
|
|
? ao->chunk->next
|
|
|
|
/* get the first chunk from the pipe */
|
2013-09-26 21:51:45 +02:00
|
|
|
: ao->pipe->Peek();
|
2009-11-02 20:20:14 +01:00
|
|
|
}
|
|
|
|
|
2009-10-29 23:35:27 +01:00
|
|
|
/**
|
|
|
|
* Plays all remaining chunks, until the tail of the pipe has been
|
|
|
|
* reached (and no more chunks are queued), or until a command is
|
|
|
|
* received.
|
|
|
|
*
|
|
|
|
* @return true if at least one chunk has been available, false if the
|
|
|
|
* tail of the pipe was already reached
|
|
|
|
*/
|
|
|
|
static bool
|
2014-01-28 11:34:09 +01:00
|
|
|
ao_play(AudioOutput *ao)
|
2009-03-09 19:25:26 +01:00
|
|
|
{
|
|
|
|
bool success;
|
|
|
|
const struct music_chunk *chunk;
|
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(ao->pipe != nullptr);
|
2009-03-09 19:25:26 +01:00
|
|
|
|
2009-11-02 20:20:14 +01:00
|
|
|
chunk = ao_next_chunk(ao);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (chunk == nullptr)
|
2009-11-02 20:20:14 +01:00
|
|
|
/* no chunk available */
|
|
|
|
return false;
|
2009-10-29 23:35:27 +01:00
|
|
|
|
2009-03-09 19:25:26 +01:00
|
|
|
ao->chunk_finished = false;
|
|
|
|
|
2013-11-06 23:47:30 +01:00
|
|
|
assert(!ao->in_playback_loop);
|
|
|
|
ao->in_playback_loop = true;
|
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
while (chunk != nullptr && ao->command == AO_COMMAND_NONE) {
|
2009-03-09 19:25:26 +01:00
|
|
|
assert(!ao->chunk_finished);
|
|
|
|
|
|
|
|
ao->chunk = chunk;
|
|
|
|
|
|
|
|
success = ao_play_chunk(ao, chunk);
|
|
|
|
if (!success) {
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(ao->chunk == nullptr);
|
2009-03-09 19:25:26 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(ao->chunk == chunk);
|
|
|
|
chunk = chunk->next;
|
|
|
|
}
|
|
|
|
|
2013-11-06 23:47:30 +01:00
|
|
|
assert(ao->in_playback_loop);
|
|
|
|
ao->in_playback_loop = false;
|
|
|
|
|
2009-03-09 19:25:26 +01:00
|
|
|
ao->chunk_finished = true;
|
2009-03-25 18:04:41 +01:00
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2013-01-20 17:48:23 +01:00
|
|
|
ao->player_control->LockSignal();
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2009-10-29 23:35:27 +01:00
|
|
|
|
|
|
|
return true;
|
2008-09-24 07:20:26 +02:00
|
|
|
}
|
|
|
|
|
2014-01-28 11:34:09 +01:00
|
|
|
static void ao_pause(AudioOutput *ao)
|
2008-09-29 16:43:55 +02:00
|
|
|
{
|
2009-02-16 01:38:10 +01:00
|
|
|
bool ret;
|
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2011-09-16 23:31:48 +02:00
|
|
|
ao_plugin_cancel(ao);
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2009-10-29 17:06:40 +01:00
|
|
|
|
2009-08-14 11:52:12 +02:00
|
|
|
ao->pause = true;
|
2009-02-16 01:38:10 +01:00
|
|
|
ao_command_finished(ao);
|
|
|
|
|
|
|
|
do {
|
2010-11-05 08:02:38 +01:00
|
|
|
if (!ao_wait(ao))
|
|
|
|
break;
|
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2011-09-16 23:31:48 +02:00
|
|
|
ret = ao_plugin_pause(ao);
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2009-10-29 17:06:40 +01:00
|
|
|
|
2009-02-16 01:38:10 +01:00
|
|
|
if (!ret) {
|
2009-10-29 15:59:40 +01:00
|
|
|
ao_close(ao, false);
|
2009-02-16 01:38:10 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (ao->command == AO_COMMAND_NONE);
|
2009-08-14 11:52:12 +02:00
|
|
|
|
|
|
|
ao->pause = false;
|
2008-09-29 16:43:55 +02:00
|
|
|
}
|
|
|
|
|
2013-10-17 18:42:14 +02:00
|
|
|
static void
|
|
|
|
audio_output_task(void *arg)
|
2008-09-24 07:20:26 +02:00
|
|
|
{
|
2014-01-28 11:34:09 +01:00
|
|
|
AudioOutput *ao = (AudioOutput *)arg;
|
2008-09-24 07:20:26 +02:00
|
|
|
|
2014-01-23 10:07:14 +01:00
|
|
|
FormatThreadName("output:%s", ao->name);
|
|
|
|
|
2014-01-14 09:59:04 +01:00
|
|
|
SetThreadRealtime();
|
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2009-10-29 17:06:40 +01:00
|
|
|
|
2008-09-24 07:20:26 +02:00
|
|
|
while (1) {
|
|
|
|
switch (ao->command) {
|
|
|
|
case AO_COMMAND_NONE:
|
|
|
|
break;
|
|
|
|
|
2009-10-23 10:55:52 +02:00
|
|
|
case AO_COMMAND_ENABLE:
|
|
|
|
ao_enable(ao);
|
|
|
|
ao_command_finished(ao);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AO_COMMAND_DISABLE:
|
|
|
|
ao_disable(ao);
|
|
|
|
ao_command_finished(ao);
|
|
|
|
break;
|
|
|
|
|
2008-09-24 07:20:26 +02:00
|
|
|
case AO_COMMAND_OPEN:
|
2009-07-06 08:04:18 +02:00
|
|
|
ao_open(ao);
|
2008-09-24 07:20:26 +02:00
|
|
|
ao_command_finished(ao);
|
|
|
|
break;
|
|
|
|
|
2009-07-06 10:01:02 +02:00
|
|
|
case AO_COMMAND_REOPEN:
|
|
|
|
ao_reopen(ao);
|
|
|
|
ao_command_finished(ao);
|
|
|
|
break;
|
|
|
|
|
2008-09-24 07:20:26 +02:00
|
|
|
case AO_COMMAND_CLOSE:
|
|
|
|
assert(ao->open);
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(ao->pipe != nullptr);
|
2009-03-09 19:25:26 +01:00
|
|
|
|
2009-10-29 15:59:40 +01:00
|
|
|
ao_close(ao, false);
|
2008-09-24 07:20:26 +02:00
|
|
|
ao_command_finished(ao);
|
|
|
|
break;
|
|
|
|
|
2008-09-29 16:43:55 +02:00
|
|
|
case AO_COMMAND_PAUSE:
|
2009-10-21 08:07:07 +02:00
|
|
|
if (!ao->open) {
|
|
|
|
/* the output has failed after
|
|
|
|
audio_output_all_pause() has
|
|
|
|
submitted the PAUSE command; bail
|
|
|
|
out */
|
|
|
|
ao_command_finished(ao);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-09-29 16:43:55 +02:00
|
|
|
ao_pause(ao);
|
2009-06-29 22:20:46 +02:00
|
|
|
/* don't "break" here: this might cause
|
|
|
|
ao_play() to be called when command==CLOSE
|
|
|
|
ends the paused state - "continue" checks
|
|
|
|
the new command first */
|
|
|
|
continue;
|
2008-09-29 16:43:55 +02:00
|
|
|
|
2009-11-09 22:16:26 +01:00
|
|
|
case AO_COMMAND_DRAIN:
|
|
|
|
if (ao->open) {
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(ao->chunk == nullptr);
|
2013-09-26 21:51:45 +02:00
|
|
|
assert(ao->pipe->Peek() == nullptr);
|
2009-11-09 22:16:26 +01:00
|
|
|
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2011-09-16 23:31:48 +02:00
|
|
|
ao_plugin_drain(ao);
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2009-11-09 22:16:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ao_command_finished(ao);
|
|
|
|
continue;
|
|
|
|
|
2008-09-24 07:20:26 +02:00
|
|
|
case AO_COMMAND_CANCEL:
|
2013-10-19 18:19:03 +02:00
|
|
|
ao->chunk = nullptr;
|
2011-07-20 18:35:24 +02:00
|
|
|
|
|
|
|
if (ao->open) {
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2011-09-16 23:31:48 +02:00
|
|
|
ao_plugin_cancel(ao);
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.lock();
|
2011-07-20 18:35:24 +02:00
|
|
|
}
|
|
|
|
|
2008-09-24 07:20:26 +02:00
|
|
|
ao_command_finished(ao);
|
2009-03-09 19:25:26 +01:00
|
|
|
continue;
|
2008-09-24 07:20:26 +02:00
|
|
|
|
|
|
|
case AO_COMMAND_KILL:
|
2013-10-19 18:19:03 +02:00
|
|
|
ao->chunk = nullptr;
|
2008-09-24 07:20:26 +02:00
|
|
|
ao_command_finished(ao);
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->mutex.unlock();
|
2013-10-17 18:42:14 +02:00
|
|
|
return;
|
2008-09-24 07:20:26 +02:00
|
|
|
}
|
|
|
|
|
2011-09-01 07:13:21 +02:00
|
|
|
if (ao->open && ao->allow_play && ao_play(ao))
|
2009-10-29 23:35:27 +01:00
|
|
|
/* don't wait for an event if there are more
|
|
|
|
chunks in the pipe */
|
|
|
|
continue;
|
2009-03-09 19:25:26 +01:00
|
|
|
|
2013-11-06 23:47:30 +01:00
|
|
|
if (ao->command == AO_COMMAND_NONE) {
|
|
|
|
ao->woken_for_play = false;
|
2013-04-17 01:19:25 +02:00
|
|
|
ao->cond.wait(ao->mutex);
|
2013-11-06 23:47:30 +01:00
|
|
|
}
|
2008-09-24 07:20:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-28 11:34:09 +01:00
|
|
|
void audio_output_thread_start(AudioOutput *ao)
|
2008-09-24 07:20:26 +02:00
|
|
|
{
|
|
|
|
assert(ao->command == AO_COMMAND_NONE);
|
|
|
|
|
2013-10-17 18:42:14 +02:00
|
|
|
Error error;
|
|
|
|
if (!ao->thread.Start(audio_output_task, ao, error))
|
|
|
|
FatalError(error);
|
2008-09-24 07:20:26 +02:00
|
|
|
}
|