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
|
2007-05-30 18:52:56 +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.
|
2007-05-30 18:52:56 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-02-02 09:30:29 +01:00
|
|
|
#include "NullOutputPlugin.hxx"
|
2014-01-23 23:49:50 +01:00
|
|
|
#include "../OutputAPI.hxx"
|
2013-05-12 15:03:42 +02:00
|
|
|
#include "Timer.hxx"
|
2007-05-30 18:52:56 +02:00
|
|
|
|
2013-02-02 09:30:29 +01:00
|
|
|
struct NullOutput {
|
2011-09-16 23:31:48 +02:00
|
|
|
struct audio_output base;
|
|
|
|
|
2009-01-22 16:06:47 +01:00
|
|
|
bool sync;
|
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
Timer *timer;
|
2013-04-17 01:21:33 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
bool Initialize(const config_param ¶m, Error &error) {
|
2013-04-17 01:21:33 +02:00
|
|
|
return ao_base_init(&base, &null_output_plugin, param,
|
2013-08-10 18:02:44 +02:00
|
|
|
error);
|
2013-04-17 01:21:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Deinitialize() {
|
|
|
|
ao_base_finish(&base);
|
|
|
|
}
|
2008-09-24 07:20:55 +02:00
|
|
|
};
|
|
|
|
|
2011-09-16 23:31:48 +02:00
|
|
|
static struct audio_output *
|
2013-08-10 18:02:44 +02:00
|
|
|
null_init(const config_param ¶m, Error &error)
|
2007-05-30 18:52:56 +02:00
|
|
|
{
|
2013-04-17 01:21:33 +02:00
|
|
|
NullOutput *nd = new NullOutput();
|
2009-01-22 16:06:43 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!nd->Initialize(param, error)) {
|
2013-04-17 01:21:33 +02:00
|
|
|
delete nd;
|
|
|
|
return nullptr;
|
2011-09-16 23:31:48 +02:00
|
|
|
}
|
|
|
|
|
2013-08-04 12:25:08 +02:00
|
|
|
nd->sync = param.GetBlockValue("sync", true);
|
2009-01-22 16:06:43 +01:00
|
|
|
|
2011-09-16 23:31:48 +02:00
|
|
|
return &nd->base;
|
2007-05-30 18:52:56 +02:00
|
|
|
}
|
|
|
|
|
2009-01-22 16:06:45 +01:00
|
|
|
static void
|
2011-09-16 23:31:48 +02:00
|
|
|
null_finish(struct audio_output *ao)
|
2009-01-22 16:06:45 +01:00
|
|
|
{
|
2013-02-02 09:30:29 +01:00
|
|
|
NullOutput *nd = (NullOutput *)ao;
|
2009-01-22 16:06:45 +01:00
|
|
|
|
2013-04-17 01:21:33 +02:00
|
|
|
nd->Deinitialize();
|
|
|
|
delete nd;
|
2009-01-22 16:06:45 +01:00
|
|
|
}
|
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
static bool
|
2013-08-03 21:00:50 +02:00
|
|
|
null_open(struct audio_output *ao, AudioFormat &audio_format,
|
2013-08-10 18:02:44 +02:00
|
|
|
gcc_unused Error &error)
|
2007-05-30 18:52:56 +02:00
|
|
|
{
|
2013-02-02 09:30:29 +01:00
|
|
|
NullOutput *nd = (NullOutput *)ao;
|
2008-09-24 07:20:55 +02:00
|
|
|
|
2009-01-22 16:06:47 +01:00
|
|
|
if (nd->sync)
|
2013-08-03 21:00:50 +02:00
|
|
|
nd->timer = new Timer(audio_format);
|
2009-01-22 16:06:43 +01:00
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
return true;
|
2007-05-30 18:52:56 +02:00
|
|
|
}
|
|
|
|
|
2009-01-22 16:06:43 +01:00
|
|
|
static void
|
2011-09-16 23:31:48 +02:00
|
|
|
null_close(struct audio_output *ao)
|
2007-05-30 18:52:56 +02:00
|
|
|
{
|
2013-02-02 09:30:29 +01:00
|
|
|
NullOutput *nd = (NullOutput *)ao;
|
2008-09-24 07:20:55 +02:00
|
|
|
|
2011-12-13 21:08:15 +01:00
|
|
|
if (nd->sync)
|
2013-05-12 15:03:42 +02:00
|
|
|
delete nd->timer;
|
2007-05-30 18:52:56 +02:00
|
|
|
}
|
|
|
|
|
2011-12-13 21:11:04 +01:00
|
|
|
static unsigned
|
|
|
|
null_delay(struct audio_output *ao)
|
|
|
|
{
|
2013-02-02 09:30:29 +01:00
|
|
|
NullOutput *nd = (NullOutput *)ao;
|
2011-12-13 21:11:04 +01:00
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
return nd->sync && nd->timer->IsStarted()
|
|
|
|
? nd->timer->GetDelay()
|
2011-12-13 21:11:04 +01:00
|
|
|
: 0;
|
|
|
|
}
|
|
|
|
|
2009-02-23 09:29:56 +01:00
|
|
|
static size_t
|
2013-04-17 01:21:33 +02:00
|
|
|
null_play(struct audio_output *ao, gcc_unused const void *chunk, size_t size,
|
2013-08-10 18:02:44 +02:00
|
|
|
gcc_unused Error &error)
|
2007-05-30 18:52:56 +02:00
|
|
|
{
|
2013-02-02 09:30:29 +01:00
|
|
|
NullOutput *nd = (NullOutput *)ao;
|
2013-05-12 15:03:42 +02:00
|
|
|
Timer *timer = nd->timer;
|
2007-05-30 18:52:56 +02:00
|
|
|
|
2009-01-22 16:06:47 +01:00
|
|
|
if (!nd->sync)
|
2009-02-23 09:29:56 +01:00
|
|
|
return size;
|
2009-01-22 16:06:47 +01:00
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
if (!timer->IsStarted())
|
|
|
|
timer->Start();
|
|
|
|
timer->Add(size);
|
2007-05-30 18:52:56 +02:00
|
|
|
|
2009-02-23 09:29:56 +01:00
|
|
|
return size;
|
2007-05-30 18:52:56 +02:00
|
|
|
}
|
|
|
|
|
2009-01-22 16:06:43 +01:00
|
|
|
static void
|
2011-09-16 23:31:48 +02:00
|
|
|
null_cancel(struct audio_output *ao)
|
2007-05-30 20:16:35 +02:00
|
|
|
{
|
2013-02-02 09:30:29 +01:00
|
|
|
NullOutput *nd = (NullOutput *)ao;
|
2008-09-24 07:20:55 +02:00
|
|
|
|
2009-01-22 16:06:47 +01:00
|
|
|
if (!nd->sync)
|
|
|
|
return;
|
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
nd->timer->Reset();
|
2007-05-30 20:16:35 +02:00
|
|
|
}
|
|
|
|
|
2009-01-22 16:06:43 +01:00
|
|
|
const struct audio_output_plugin null_output_plugin = {
|
2013-02-02 09:30:29 +01:00
|
|
|
"null",
|
|
|
|
nullptr,
|
|
|
|
null_init,
|
|
|
|
null_finish,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
null_open,
|
|
|
|
null_close,
|
|
|
|
null_delay,
|
|
|
|
nullptr,
|
|
|
|
null_play,
|
|
|
|
nullptr,
|
|
|
|
null_cancel,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2007-05-30 18:52:56 +02:00
|
|
|
};
|