2009-03-14 11:35:40 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2009-03-14 11:35:40 +01: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"
|
2014-01-27 08:20:25 +01:00
|
|
|
#include "output/MultipleOutputs.hxx"
|
2013-02-22 20:51:23 +01:00
|
|
|
#include "MixerControl.hxx"
|
|
|
|
#include "MixerInternal.hxx"
|
|
|
|
#include "MixerList.hxx"
|
2014-01-28 11:42:54 +01:00
|
|
|
#include "output/Internal.hxx"
|
2013-12-22 23:24:42 +01:00
|
|
|
#include "pcm/Volume.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2009-03-14 11:35:40 +01:00
|
|
|
|
2016-09-09 12:52:51 +02:00
|
|
|
#include <stdexcept>
|
|
|
|
|
2009-03-14 11:35:54 +01:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
static int
|
2017-02-27 22:55:20 +01:00
|
|
|
output_mixer_get_volume(const AudioOutputControl &ao)
|
2009-03-14 11:35:54 +01:00
|
|
|
{
|
2017-02-27 22:55:20 +01:00
|
|
|
if (!ao.IsEnabled())
|
2009-03-14 11:35:54 +01:00
|
|
|
return -1;
|
|
|
|
|
2017-02-27 22:55:20 +01:00
|
|
|
auto *mixer = ao.GetMixer();
|
2013-10-19 18:19:03 +02:00
|
|
|
if (mixer == nullptr)
|
2009-03-14 11:35:54 +01:00
|
|
|
return -1;
|
|
|
|
|
2016-09-09 12:52:51 +02:00
|
|
|
try {
|
|
|
|
return mixer_get_volume(mixer);
|
|
|
|
} catch (const std::runtime_error &e) {
|
|
|
|
FormatError(e,
|
2013-09-27 22:31:24 +02:00
|
|
|
"Failed to read mixer for '%s'",
|
2016-12-29 23:23:28 +01:00
|
|
|
ao.GetName());
|
2016-09-09 12:52:51 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2009-03-14 11:35:54 +01:00
|
|
|
}
|
|
|
|
|
2009-03-14 11:35:40 +01:00
|
|
|
int
|
2014-01-27 08:20:25 +01:00
|
|
|
MultipleOutputs::GetVolume() const
|
2009-03-14 11:35:40 +01:00
|
|
|
{
|
2014-01-27 08:20:25 +01:00
|
|
|
unsigned ok = 0;
|
|
|
|
int total = 0;
|
2009-03-14 11:35:40 +01:00
|
|
|
|
2017-02-27 22:55:20 +01:00
|
|
|
for (auto *ao : outputs) {
|
2014-01-27 08:20:25 +01:00
|
|
|
int volume = output_mixer_get_volume(*ao);
|
2009-03-14 11:35:54 +01:00
|
|
|
if (volume >= 0) {
|
2009-03-14 11:35:40 +01:00
|
|
|
total += volume;
|
|
|
|
++ok;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ok == 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return total / ok;
|
|
|
|
}
|
|
|
|
|
2009-03-14 11:35:54 +01:00
|
|
|
static bool
|
2017-02-27 22:55:20 +01:00
|
|
|
output_mixer_set_volume(AudioOutputControl &ao, unsigned volume)
|
2009-03-14 11:35:54 +01:00
|
|
|
{
|
2009-07-06 21:52:10 +02:00
|
|
|
assert(volume <= 100);
|
2009-03-14 11:35:54 +01:00
|
|
|
|
2017-02-27 22:55:20 +01:00
|
|
|
if (!ao.IsEnabled())
|
2009-03-14 11:35:54 +01:00
|
|
|
return false;
|
|
|
|
|
2017-02-27 22:55:20 +01:00
|
|
|
auto *mixer = ao.GetMixer();
|
2013-10-19 18:19:03 +02:00
|
|
|
if (mixer == nullptr)
|
2009-03-14 11:35:54 +01:00
|
|
|
return false;
|
|
|
|
|
2016-09-09 12:52:51 +02:00
|
|
|
try {
|
|
|
|
mixer_set_volume(mixer, volume);
|
|
|
|
return true;
|
|
|
|
} catch (const std::runtime_error &e) {
|
|
|
|
FormatError(e,
|
2013-09-27 22:31:24 +02:00
|
|
|
"Failed to set mixer for '%s'",
|
2016-12-29 23:23:28 +01:00
|
|
|
ao.GetName());
|
2016-09-09 12:52:51 +02:00
|
|
|
return false;
|
|
|
|
}
|
2009-03-14 11:35:54 +01:00
|
|
|
}
|
|
|
|
|
2009-03-14 11:35:40 +01:00
|
|
|
bool
|
2014-01-27 08:20:25 +01:00
|
|
|
MultipleOutputs::SetVolume(unsigned volume)
|
2009-03-14 11:35:40 +01:00
|
|
|
{
|
2009-07-06 21:52:10 +02:00
|
|
|
assert(volume <= 100);
|
|
|
|
|
2014-01-27 08:20:25 +01:00
|
|
|
bool success = false;
|
2017-02-27 22:55:20 +01:00
|
|
|
for (auto *ao : outputs)
|
2014-01-27 08:20:25 +01:00
|
|
|
success = output_mixer_set_volume(*ao, volume)
|
2009-03-14 11:35:54 +01:00
|
|
|
|| success;
|
2009-03-14 11:35:40 +01:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
2009-07-06 21:52:29 +02:00
|
|
|
|
|
|
|
static int
|
2017-02-27 22:55:20 +01:00
|
|
|
output_mixer_get_software_volume(const AudioOutputControl &ao)
|
2009-07-06 21:52:29 +02:00
|
|
|
{
|
2017-02-27 22:55:20 +01:00
|
|
|
if (!ao.IsEnabled())
|
2009-07-06 21:52:29 +02:00
|
|
|
return -1;
|
|
|
|
|
2017-02-27 22:55:20 +01:00
|
|
|
auto *mixer = ao.GetMixer();
|
2013-10-19 18:19:03 +02:00
|
|
|
if (mixer == nullptr || !mixer->IsPlugin(software_mixer_plugin))
|
2009-07-06 21:52:29 +02:00
|
|
|
return -1;
|
|
|
|
|
2016-09-09 12:52:51 +02:00
|
|
|
return mixer_get_volume(mixer);
|
2009-07-06 21:52:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2014-01-27 08:20:25 +01:00
|
|
|
MultipleOutputs::GetSoftwareVolume() const
|
2009-07-06 21:52:29 +02:00
|
|
|
{
|
2014-01-27 08:20:25 +01:00
|
|
|
unsigned ok = 0;
|
|
|
|
int total = 0;
|
2009-07-06 21:52:29 +02:00
|
|
|
|
2017-02-27 22:55:20 +01:00
|
|
|
for (auto *ao : outputs) {
|
2014-01-27 08:20:25 +01:00
|
|
|
int volume = output_mixer_get_software_volume(*ao);
|
2009-07-06 21:52:29 +02:00
|
|
|
if (volume >= 0) {
|
|
|
|
total += volume;
|
|
|
|
++ok;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ok == 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return total / ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-01-27 08:20:25 +01:00
|
|
|
MultipleOutputs::SetSoftwareVolume(unsigned volume)
|
2009-07-06 21:52:29 +02:00
|
|
|
{
|
|
|
|
assert(volume <= PCM_VOLUME_1);
|
|
|
|
|
2017-02-27 22:55:20 +01:00
|
|
|
for (auto *ao : outputs) {
|
|
|
|
auto *mixer = ao->GetMixer();
|
2014-01-27 08:20:25 +01:00
|
|
|
|
|
|
|
if (mixer != nullptr &&
|
2015-01-16 19:48:26 +01:00
|
|
|
(&mixer->plugin == &software_mixer_plugin ||
|
|
|
|
&mixer->plugin == &null_mixer_plugin))
|
2016-09-09 12:52:51 +02:00
|
|
|
mixer_set_volume(mixer, volume);
|
2009-07-06 21:52:29 +02:00
|
|
|
}
|
|
|
|
}
|