2009-04-21 22:46:41 +02:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
2009-04-21 22:46:41 +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-02-22 20:51:23 +01:00
|
|
|
#include "MixerControl.hxx"
|
|
|
|
#include "MixerList.hxx"
|
2013-02-01 17:47:09 +01:00
|
|
|
#include "FilterRegistry.hxx"
|
2013-04-09 01:24:52 +02:00
|
|
|
#include "pcm/PcmVolume.hxx"
|
2013-01-09 23:12:53 +01:00
|
|
|
#include "GlobalEvents.hxx"
|
2013-01-15 07:53:44 +01:00
|
|
|
#include "Main.hxx"
|
|
|
|
#include "event/Loop.hxx"
|
2013-08-04 13:43:36 +02:00
|
|
|
#include "ConfigData.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2009-04-21 22:46:41 +02:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2013-01-15 07:53:44 +01:00
|
|
|
EventLoop *main_loop;
|
|
|
|
|
2009-11-10 21:38:20 +01:00
|
|
|
#ifdef HAVE_PULSE
|
2013-04-16 20:51:21 +02:00
|
|
|
#include "output/PulseOutputPlugin.hxx"
|
2009-11-10 21:38:20 +01:00
|
|
|
|
2011-09-17 19:50:36 +02:00
|
|
|
void
|
2013-08-04 23:48:01 +02:00
|
|
|
pulse_output_lock(gcc_unused PulseOutput *po)
|
2011-09-17 19:50:36 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-08-04 23:48:01 +02:00
|
|
|
pulse_output_unlock(gcc_unused PulseOutput *po)
|
2011-09-17 19:50:36 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-10-21 10:30:42 +02:00
|
|
|
void
|
2013-08-04 23:48:01 +02:00
|
|
|
pulse_output_set_mixer(gcc_unused PulseOutput *po,
|
|
|
|
gcc_unused PulseMixer *pm)
|
2009-10-21 10:30:42 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-10-23 10:33:26 +02:00
|
|
|
void
|
2013-08-04 23:48:01 +02:00
|
|
|
pulse_output_clear_mixer(gcc_unused PulseOutput *po,
|
|
|
|
gcc_unused PulseMixer *pm)
|
2009-10-23 10:33:26 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-08-04 23:48:01 +02:00
|
|
|
pulse_output_set_volume(gcc_unused PulseOutput *po,
|
|
|
|
gcc_unused const struct pa_cvolume *volume,
|
2013-08-10 18:02:44 +02:00
|
|
|
gcc_unused Error &error)
|
2009-10-23 10:33:26 +02:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-11-10 21:38:20 +01:00
|
|
|
#endif
|
|
|
|
|
2011-09-17 19:33:51 +02:00
|
|
|
#ifdef HAVE_ROAR
|
2013-01-16 23:29:56 +01:00
|
|
|
#include "output/RoarOutputPlugin.hxx"
|
2011-09-17 19:33:51 +02:00
|
|
|
|
|
|
|
int
|
2013-01-16 23:29:56 +01:00
|
|
|
roar_output_get_volume(gcc_unused RoarOutput *roar)
|
2011-09-17 19:33:51 +02:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-01-16 23:29:56 +01:00
|
|
|
roar_output_set_volume(gcc_unused RoarOutput *roar,
|
2013-08-04 23:48:01 +02:00
|
|
|
gcc_unused unsigned volume)
|
2011-09-17 19:33:51 +02:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2009-10-21 10:30:42 +02:00
|
|
|
void
|
2013-01-09 23:12:53 +01:00
|
|
|
GlobalEvents::Emit(gcc_unused Event event)
|
2009-10-21 10:30:42 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-07-06 21:52:15 +02:00
|
|
|
const struct filter_plugin *
|
2013-08-04 23:48:01 +02:00
|
|
|
filter_plugin_by_name(gcc_unused const char *name)
|
2009-07-06 21:52:15 +02:00
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-08-04 23:48:01 +02:00
|
|
|
pcm_volume(gcc_unused void *buffer, gcc_unused size_t length,
|
|
|
|
gcc_unused SampleFormat format,
|
|
|
|
gcc_unused int volume)
|
2009-07-06 21:52:15 +02:00
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-04 23:48:01 +02:00
|
|
|
int main(int argc, gcc_unused char **argv)
|
2009-04-21 22:46:41 +02:00
|
|
|
{
|
|
|
|
int volume;
|
|
|
|
|
|
|
|
if (argc != 2) {
|
|
|
|
g_printerr("Usage: read_mixer PLUGIN\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-04-17 01:53:10 +02:00
|
|
|
#if !GLIB_CHECK_VERSION(2,32,0)
|
2009-04-21 22:46:41 +02:00
|
|
|
g_thread_init(NULL);
|
2013-04-17 01:53:10 +02:00
|
|
|
#endif
|
2009-04-21 22:46:41 +02:00
|
|
|
|
2013-01-15 07:53:44 +01:00
|
|
|
main_loop = new EventLoop(EventLoop::Default());
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2013-08-04 13:43:36 +02:00
|
|
|
Mixer *mixer = mixer_new(&alsa_mixer_plugin, nullptr,
|
2013-08-10 18:02:44 +02:00
|
|
|
config_param(), error);
|
2009-04-21 22:46:41 +02:00
|
|
|
if (mixer == NULL) {
|
2013-08-10 18:02:44 +02:00
|
|
|
g_printerr("mixer_new() failed: %s\n", error.GetMessage());
|
2009-04-21 22:46:41 +02:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!mixer_open(mixer, error)) {
|
2009-04-21 22:46:41 +02:00
|
|
|
mixer_free(mixer);
|
2013-08-10 18:02:44 +02:00
|
|
|
g_printerr("failed to open the mixer: %s\n", error.GetMessage());
|
2009-04-21 22:46:41 +02:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
volume = mixer_get_volume(mixer, error);
|
2009-04-21 22:46:41 +02:00
|
|
|
mixer_close(mixer);
|
|
|
|
mixer_free(mixer);
|
|
|
|
|
2013-01-15 07:53:44 +01:00
|
|
|
delete main_loop;
|
|
|
|
|
2009-04-21 22:46:41 +02:00
|
|
|
assert(volume >= -1 && volume <= 100);
|
|
|
|
|
|
|
|
if (volume < 0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (error.IsDefined()) {
|
2009-10-20 22:10:56 +02:00
|
|
|
g_printerr("failed to read volume: %s\n",
|
2013-08-10 18:02:44 +02:00
|
|
|
error.GetMessage());
|
2009-10-20 22:10:56 +02:00
|
|
|
} else
|
|
|
|
g_printerr("failed to read volume\n");
|
2009-04-21 22:46:41 +02:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_print("%d\n", volume);
|
|
|
|
return 0;
|
|
|
|
}
|