2009-07-06 21:52:15 +02:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2009-07-06 21:52:15 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-31 21:00:43 +01:00
|
|
|
#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"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2009-07-06 21:52:15 +02:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
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 {
|
2013-02-01 18:40:36 +01:00
|
|
|
Filter *filter;
|
2009-07-06 21:52:15 +02:00
|
|
|
|
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;
|
|
|
|
|
2009-07-06 21:52:15 +02:00
|
|
|
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
|
|
|
}
|
2009-07-06 21:52:15 +02:00
|
|
|
};
|
|
|
|
|
2013-04-16 21:33:25 +02:00
|
|
|
static Mixer *
|
2013-04-16 23:50:32 +02:00
|
|
|
software_mixer_init(gcc_unused void *ao,
|
2013-08-04 13:43:36 +02:00
|
|
|
gcc_unused const config_param ¶m,
|
2013-08-10 18:02:44 +02:00
|
|
|
gcc_unused Error &error)
|
2009-07-06 21:52:15 +02:00
|
|
|
{
|
2013-04-16 21:25:27 +02:00
|
|
|
return new SoftwareMixer();
|
2009-07-06 21:52:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-04-16 21:33:25 +02:00
|
|
|
software_mixer_finish(Mixer *data)
|
2009-07-06 21:52:15 +02:00
|
|
|
{
|
2013-04-16 21:25:27 +02:00
|
|
|
SoftwareMixer *sm = (SoftwareMixer *)data;
|
2009-07-06 21:52:15 +02:00
|
|
|
|
2013-04-16 21:25:27 +02:00
|
|
|
delete sm;
|
2009-07-06 21:52:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-08-10 18:02:44 +02:00
|
|
|
software_mixer_get_volume(Mixer *mixer, gcc_unused Error &error)
|
2009-07-06 21:52:15 +02:00
|
|
|
{
|
2013-04-16 21:25:27 +02:00
|
|
|
SoftwareMixer *sm = (SoftwareMixer *)mixer;
|
2009-07-06 21:52:15 +02:00
|
|
|
|
|
|
|
return sm->volume;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2013-04-16 21:33:25 +02:00
|
|
|
software_mixer_set_volume(Mixer *mixer, unsigned volume,
|
2013-08-10 18:02:44 +02:00
|
|
|
gcc_unused Error &error)
|
2009-07-06 21:52:15 +02:00
|
|
|
{
|
2013-04-16 21:25:27 +02:00
|
|
|
SoftwareMixer *sm = (SoftwareMixer *)mixer;
|
2009-07-06 21:52:15 +02:00
|
|
|
|
|
|
|
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 = {
|
2013-01-31 21:00:43 +01:00
|
|
|
software_mixer_init,
|
|
|
|
software_mixer_finish,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
software_mixer_get_volume,
|
|
|
|
software_mixer_set_volume,
|
|
|
|
true,
|
2009-07-06 21:52:15 +02:00
|
|
|
};
|
|
|
|
|
2013-02-01 18:40:36 +01:00
|
|
|
Filter *
|
2013-04-16 21:33:25 +02:00
|
|
|
software_mixer_get_filter(Mixer *mixer)
|
2009-07-06 21:52:15 +02:00
|
|
|
{
|
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);
|
2009-07-06 21:52:15 +02:00
|
|
|
|
2013-10-30 22:47:24 +01:00
|
|
|
sm->owns_filter = false;
|
2009-07-06 21:52:15 +02:00
|
|
|
return sm->filter;
|
|
|
|
}
|