mixer_all.c 3.7 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2010 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * 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.
 */

20
#include "config.h"
21
#include "mixer_all.h"
22
#include "mixer_control.h"
23
#include "output_all.h"
24 25
#include "output_plugin.h"
#include "output_internal.h"
26 27 28
#include "pcm_volume.h"
#include "mixer_api.h"
#include "mixer_list.h"
29 30 31

#include <glib.h>

32 33
#include <assert.h>

34 35 36
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "mixer"

37 38 39 40 41
static int
output_mixer_get_volume(unsigned i)
{
	struct audio_output *output;
	struct mixer *mixer;
42 43
	int volume;
	GError *error = NULL;
44 45 46 47 48 49 50

	assert(i < audio_output_count());

	output = audio_output_get(i);
	if (!output->enabled)
		return -1;

51
	mixer = output->mixer;
52 53 54
	if (mixer == NULL)
		return -1;

55 56 57 58 59 60 61 62
	volume = mixer_get_volume(mixer, &error);
	if (volume < 0 && error != NULL) {
		g_warning("Failed to read mixer for '%s': %s",
			  output->name, error->message);
		g_error_free(error);
	}

	return volume;
63 64
}

65 66 67 68 69 70 71
int
mixer_all_get_volume(void)
{
	unsigned count = audio_output_count(), ok = 0;
	int volume, total = 0;

	for (unsigned i = 0; i < count; i++) {
72 73
		volume = output_mixer_get_volume(i);
		if (volume >= 0) {
74 75 76 77 78 79 80 81 82 83 84
			total += volume;
			++ok;
		}
	}

	if (ok == 0)
		return -1;

	return total / ok;
}

85
static bool
86
output_mixer_set_volume(unsigned i, unsigned volume)
87 88 89
{
	struct audio_output *output;
	struct mixer *mixer;
90 91
	bool success;
	GError *error = NULL;
92 93

	assert(i < audio_output_count());
94
	assert(volume <= 100);
95 96 97 98 99

	output = audio_output_get(i);
	if (!output->enabled)
		return false;

100
	mixer = output->mixer;
101 102 103
	if (mixer == NULL)
		return false;

104 105 106 107 108 109 110 111
	success = mixer_set_volume(mixer, volume, &error);
	if (!success && error != NULL) {
		g_warning("Failed to set mixer for '%s': %s",
			  output->name, error->message);
		g_error_free(error);
	}

	return success;
112 113
}

114
bool
115
mixer_all_set_volume(unsigned volume)
116 117 118 119
{
	bool success = false;
	unsigned count = audio_output_count();

120 121
	assert(volume <= 100);

122
	for (unsigned i = 0; i < count; i++)
123
		success = output_mixer_set_volume(i, volume)
124
			|| success;
125 126 127

	return success;
}
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144

static int
output_mixer_get_software_volume(unsigned i)
{
	struct audio_output *output;
	struct mixer *mixer;

	assert(i < audio_output_count());

	output = audio_output_get(i);
	if (!output->enabled)
		return -1;

	mixer = output->mixer;
	if (mixer == NULL || mixer->plugin != &software_mixer_plugin)
		return -1;

145
	return mixer_get_volume(mixer, NULL);
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
}

int
mixer_all_get_software_volume(void)
{
	unsigned count = audio_output_count(), ok = 0;
	int volume, total = 0;

	for (unsigned i = 0; i < count; i++) {
		volume = output_mixer_get_software_volume(i);
		if (volume >= 0) {
			total += volume;
			++ok;
		}
	}

	if (ok == 0)
		return -1;

	return total / ok;
}

void
mixer_all_set_software_volume(unsigned volume)
{
	unsigned count = audio_output_count();

	assert(volume <= PCM_VOLUME_1);

	for (unsigned i = 0; i < count; i++) {
		struct audio_output *output = audio_output_get(i);
		if (output->mixer != NULL &&
		    output->mixer->plugin == &software_mixer_plugin)
179
			mixer_set_volume(output->mixer, volume, NULL);
180 181
	}
}