106 lines
2.1 KiB
C++
106 lines
2.1 KiB
C++
/*
|
|
* 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"
|
|
#include "OutputPlugin.hxx"
|
|
#include "Internal.hxx"
|
|
|
|
AudioOutput *
|
|
ao_plugin_init(const AudioOutputPlugin *plugin,
|
|
const ConfigBlock &block)
|
|
{
|
|
assert(plugin != nullptr);
|
|
assert(plugin->init != nullptr);
|
|
|
|
return plugin->init(block);
|
|
}
|
|
|
|
void
|
|
ao_plugin_finish(AudioOutput *ao)
|
|
{
|
|
ao->plugin.finish(ao);
|
|
}
|
|
|
|
void
|
|
ao_plugin_enable(AudioOutput *ao)
|
|
{
|
|
if (ao->plugin.enable != nullptr)
|
|
ao->plugin.enable(ao);
|
|
}
|
|
|
|
void
|
|
ao_plugin_disable(AudioOutput *ao)
|
|
{
|
|
if (ao->plugin.disable != nullptr)
|
|
ao->plugin.disable(ao);
|
|
}
|
|
|
|
void
|
|
ao_plugin_open(AudioOutput *ao, AudioFormat &audio_format)
|
|
{
|
|
ao->plugin.open(ao, audio_format);
|
|
}
|
|
|
|
void
|
|
ao_plugin_close(AudioOutput *ao)
|
|
{
|
|
ao->plugin.close(ao);
|
|
}
|
|
|
|
unsigned
|
|
ao_plugin_delay(AudioOutput *ao)
|
|
{
|
|
return ao->plugin.delay != nullptr
|
|
? ao->plugin.delay(ao)
|
|
: 0;
|
|
}
|
|
|
|
void
|
|
ao_plugin_send_tag(AudioOutput *ao, const Tag &tag)
|
|
{
|
|
if (ao->plugin.send_tag != nullptr)
|
|
ao->plugin.send_tag(ao, tag);
|
|
}
|
|
|
|
size_t
|
|
ao_plugin_play(AudioOutput *ao, const void *chunk, size_t size)
|
|
{
|
|
return ao->plugin.play(ao, chunk, size);
|
|
}
|
|
|
|
void
|
|
ao_plugin_drain(AudioOutput *ao)
|
|
{
|
|
if (ao->plugin.drain != nullptr)
|
|
ao->plugin.drain(ao);
|
|
}
|
|
|
|
void
|
|
ao_plugin_cancel(AudioOutput *ao)
|
|
{
|
|
if (ao->plugin.cancel != nullptr)
|
|
ao->plugin.cancel(ao);
|
|
}
|
|
|
|
bool
|
|
ao_plugin_pause(AudioOutput *ao)
|
|
{
|
|
return ao->plugin.pause != nullptr && ao->plugin.pause(ao);
|
|
}
|