mpd/src/mixer/SoftwareMixerPlugin.cxx

133 lines
3.0 KiB
C++
Raw Normal View History

/*
2014-01-13 22:30:36 +01:00
* Copyright (C) 2003-2014 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 "SoftwareMixerPlugin.hxx"
2013-02-22 20:51:23 +01:00
#include "MixerInternal.hxx"
2014-01-24 16:31:52 +01:00
#include "filter/FilterPlugin.hxx"
#include "filter/FilterRegistry.hxx"
#include "filter/FilterInternal.hxx"
#include "filter/plugins/VolumeFilterPlugin.hxx"
2013-12-22 23:24:42 +01:00
#include "pcm/Volume.hxx"
2014-01-24 00:20:01 +01:00
#include "config/ConfigData.hxx"
#include "util/Error.hxx"
#include <assert.h>
#include <math.h>
static Filter *
CreateVolumeFilter()
{
Error error;
return filter_new(&volume_filter_plugin, config_param(), error);
}
2013-04-16 21:33:25 +02:00
struct SoftwareMixer final : public Mixer {
Filter *filter;
2013-10-30 22:47:24 +01:00
/**
* If this is true, then this object "owns" the #Filter
* instance (see above). It will be set to false by
* software_mixer_get_filter(); after that, the caller will be
* responsible for the #Filter.
*/
bool owns_filter;
unsigned volume;
2013-04-16 21:25:27 +02:00
SoftwareMixer()
2013-04-16 21:33:25 +02:00
:Mixer(software_mixer_plugin),
2013-10-30 22:47:24 +01:00
filter(CreateVolumeFilter()),
owns_filter(true),
volume(100)
2013-04-16 21:25:27 +02:00
{
assert(filter != nullptr);
}
~SoftwareMixer() {
2013-10-30 22:47:24 +01:00
if (owns_filter)
delete filter;
2013-04-16 21:25:27 +02:00
}
};
2013-04-16 21:33:25 +02:00
static Mixer *
software_mixer_init(gcc_unused void *ao,
gcc_unused const config_param &param,
gcc_unused Error &error)
{
2013-04-16 21:25:27 +02:00
return new SoftwareMixer();
}
static void
2013-04-16 21:33:25 +02:00
software_mixer_finish(Mixer *data)
{
2013-04-16 21:25:27 +02:00
SoftwareMixer *sm = (SoftwareMixer *)data;
2013-04-16 21:25:27 +02:00
delete sm;
}
static int
software_mixer_get_volume(Mixer *mixer, gcc_unused Error &error)
{
2013-04-16 21:25:27 +02:00
SoftwareMixer *sm = (SoftwareMixer *)mixer;
return sm->volume;
}
static bool
2013-04-16 21:33:25 +02:00
software_mixer_set_volume(Mixer *mixer, unsigned volume,
gcc_unused Error &error)
{
2013-04-16 21:25:27 +02:00
SoftwareMixer *sm = (SoftwareMixer *)mixer;
assert(volume <= 100);
sm->volume = volume;
if (volume >= 100)
volume = PCM_VOLUME_1;
else if (volume > 0)
volume = pcm_float_to_volume((exp(volume / 25.0) - 1) /
(54.5981500331F - 1));
volume_filter_set(sm->filter, volume);
return true;
}
const struct mixer_plugin software_mixer_plugin = {
software_mixer_init,
software_mixer_finish,
nullptr,
nullptr,
software_mixer_get_volume,
software_mixer_set_volume,
true,
};
Filter *
2013-04-16 21:33:25 +02:00
software_mixer_get_filter(Mixer *mixer)
{
2013-04-16 21:25:27 +02:00
SoftwareMixer *sm = (SoftwareMixer *)mixer;
2013-04-16 21:33:25 +02:00
assert(sm->IsPlugin(software_mixer_plugin));
2013-10-30 22:47:24 +01:00
assert(sm->owns_filter);
2013-10-30 22:47:24 +01:00
sm->owns_filter = false;
return sm->filter;
}