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-01-09 22:37:47 +01:00
|
|
|
|
|
|
|
extern "C" {
|
2009-04-21 22:46:41 +02:00
|
|
|
#include "mixer_control.h"
|
|
|
|
#include "mixer_list.h"
|
2009-07-06 21:52:15 +02:00
|
|
|
#include "filter_registry.h"
|
2013-01-09 22:37:47 +01:00
|
|
|
}
|
|
|
|
|
2009-07-06 21:52:15 +02:00
|
|
|
#include "pcm_volume.h"
|
2013-01-09 23:12:53 +01:00
|
|
|
#include "GlobalEvents.hxx"
|
2009-04-21 22:46:41 +02:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2009-11-10 21:38:20 +01:00
|
|
|
#ifdef HAVE_PULSE
|
|
|
|
#include "output/pulse_output_plugin.h"
|
|
|
|
|
2011-09-17 19:50:36 +02:00
|
|
|
void
|
|
|
|
pulse_output_lock(G_GNUC_UNUSED struct pulse_output *po)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pulse_output_unlock(G_GNUC_UNUSED struct pulse_output *po)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-10-21 10:30:42 +02:00
|
|
|
void
|
2009-10-23 10:33:26 +02:00
|
|
|
pulse_output_set_mixer(G_GNUC_UNUSED struct pulse_output *po,
|
|
|
|
G_GNUC_UNUSED struct pulse_mixer *pm)
|
2009-10-21 10:30:42 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-10-23 10:33:26 +02:00
|
|
|
void
|
|
|
|
pulse_output_clear_mixer(G_GNUC_UNUSED struct pulse_output *po,
|
|
|
|
G_GNUC_UNUSED struct pulse_mixer *pm)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
pulse_output_set_volume(G_GNUC_UNUSED struct pulse_output *po,
|
|
|
|
G_GNUC_UNUSED const struct pa_cvolume *volume,
|
|
|
|
G_GNUC_UNUSED GError **error_r)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-11-10 21:38:20 +01:00
|
|
|
#endif
|
|
|
|
|
2011-09-17 19:33:51 +02:00
|
|
|
#ifdef HAVE_ROAR
|
|
|
|
#include "output/roar_output_plugin.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
roar_output_get_volume(G_GNUC_UNUSED struct roar *roar)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
roar_output_set_volume(G_GNUC_UNUSED struct roar *roar,
|
|
|
|
G_GNUC_UNUSED unsigned volume)
|
|
|
|
{
|
|
|
|
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 *
|
|
|
|
filter_plugin_by_name(G_GNUC_UNUSED const char *name)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2011-10-20 02:11:40 +02:00
|
|
|
pcm_volume(G_GNUC_UNUSED void *buffer, G_GNUC_UNUSED size_t length,
|
2011-10-10 08:11:04 +02:00
|
|
|
G_GNUC_UNUSED enum sample_format format,
|
2009-07-06 21:52:15 +02:00
|
|
|
G_GNUC_UNUSED int volume)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-04-21 22:46:41 +02:00
|
|
|
int main(int argc, G_GNUC_UNUSED char **argv)
|
|
|
|
{
|
2009-10-20 22:10:56 +02:00
|
|
|
GError *error = NULL;
|
2009-04-21 22:46:41 +02:00
|
|
|
struct mixer *mixer;
|
|
|
|
bool success;
|
|
|
|
int volume;
|
|
|
|
|
|
|
|
if (argc != 2) {
|
|
|
|
g_printerr("Usage: read_mixer PLUGIN\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_thread_init(NULL);
|
|
|
|
|
2009-10-21 09:48:41 +02:00
|
|
|
mixer = mixer_new(&alsa_mixer_plugin, NULL, NULL, &error);
|
2009-04-21 22:46:41 +02:00
|
|
|
if (mixer == NULL) {
|
2009-10-20 22:10:56 +02:00
|
|
|
g_printerr("mixer_new() failed: %s\n", error->message);
|
|
|
|
g_error_free(error);
|
2009-04-21 22:46:41 +02:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2009-10-20 22:10:56 +02:00
|
|
|
success = mixer_open(mixer, &error);
|
2009-04-21 22:46:41 +02:00
|
|
|
if (!success) {
|
|
|
|
mixer_free(mixer);
|
2009-10-20 22:10:56 +02:00
|
|
|
g_printerr("failed to open the mixer: %s\n", error->message);
|
|
|
|
g_error_free(error);
|
2009-04-21 22:46:41 +02:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2009-10-20 22:10:56 +02:00
|
|
|
volume = mixer_get_volume(mixer, &error);
|
2009-04-21 22:46:41 +02:00
|
|
|
mixer_close(mixer);
|
|
|
|
mixer_free(mixer);
|
|
|
|
|
|
|
|
assert(volume >= -1 && volume <= 100);
|
|
|
|
|
|
|
|
if (volume < 0) {
|
2009-10-20 22:10:56 +02:00
|
|
|
if (error != NULL) {
|
|
|
|
g_printerr("failed to read volume: %s\n",
|
|
|
|
error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
} 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;
|
|
|
|
}
|