2009-03-07 15:59:29 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2009 The Music Player Daemon Project
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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-03-07 15:59:29 +01:00
|
|
|
*/
|
|
|
|
|
2009-03-07 15:59:22 +01:00
|
|
|
#include "mixer_api.h"
|
|
|
|
#include "conf.h"
|
2009-03-06 18:21:23 +01:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <pulse/volume.h>
|
|
|
|
#include <pulse/pulseaudio.h>
|
|
|
|
|
2009-03-07 15:59:22 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2009-03-07 15:59:26 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "pulse_mixer"
|
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
struct pulse_mixer {
|
|
|
|
struct mixer base;
|
2009-03-27 00:43:47 +01:00
|
|
|
|
2009-03-26 19:50:10 +01:00
|
|
|
const char *server;
|
|
|
|
const char *sink;
|
|
|
|
const char *output_name;
|
2009-03-27 00:43:47 +01:00
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
uint32_t index;
|
2009-03-27 00:43:47 +01:00
|
|
|
bool online;
|
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
struct pa_context *context;
|
|
|
|
struct pa_threaded_mainloop *mainloop;
|
2009-03-26 19:50:27 +01:00
|
|
|
struct pa_cvolume volume;
|
2009-03-06 18:21:23 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-10-20 22:10:56 +02:00
|
|
|
/**
|
|
|
|
* The quark used for GError.domain.
|
|
|
|
*/
|
|
|
|
static inline GQuark
|
|
|
|
pulse_mixer_quark(void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string("pulse_mixer");
|
|
|
|
}
|
|
|
|
|
2009-03-27 16:44:36 +01:00
|
|
|
/**
|
|
|
|
* \brief waits for a pulseaudio operation to finish, frees it and
|
|
|
|
* unlocks the mainloop
|
|
|
|
* \param operation the operation to wait for
|
|
|
|
* \return true if operation has finished normally (DONE state),
|
|
|
|
* false otherwise
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
pulse_wait_for_operation(struct pa_threaded_mainloop *mainloop,
|
|
|
|
struct pa_operation *operation)
|
|
|
|
{
|
|
|
|
pa_operation_state_t state;
|
|
|
|
|
|
|
|
assert(mainloop != NULL);
|
|
|
|
assert(operation != NULL);
|
|
|
|
|
|
|
|
state = pa_operation_get_state(operation);
|
|
|
|
while (state == PA_OPERATION_RUNNING) {
|
|
|
|
pa_threaded_mainloop_wait(mainloop);
|
|
|
|
state = pa_operation_get_state(operation);
|
|
|
|
}
|
|
|
|
|
|
|
|
pa_operation_unref(operation);
|
|
|
|
|
|
|
|
return state == PA_OPERATION_DONE;
|
|
|
|
}
|
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
static void
|
|
|
|
sink_input_cb(G_GNUC_UNUSED pa_context *context, const pa_sink_input_info *i,
|
|
|
|
int eol, void *userdata)
|
|
|
|
{
|
|
|
|
|
|
|
|
struct pulse_mixer *pm = userdata;
|
2009-03-27 00:43:47 +01:00
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
if (eol) {
|
|
|
|
g_debug("eol error sink_input_cb");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-03-27 00:43:47 +01:00
|
|
|
if (i == NULL) {
|
2009-03-06 18:21:23 +01:00
|
|
|
g_debug("Sink input callback failure");
|
|
|
|
return;
|
|
|
|
}
|
2009-03-27 00:43:47 +01:00
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
g_debug("sink input cb %s, index %d ",i->name,i->index);
|
2009-03-27 00:43:47 +01:00
|
|
|
|
|
|
|
if (strcmp(i->name,pm->output_name) == 0) {
|
|
|
|
pm->index = i->index;
|
|
|
|
pm->online = true;
|
2009-03-26 19:50:27 +01:00
|
|
|
pm->volume = i->volume;
|
2009-03-06 18:21:23 +01:00
|
|
|
} else
|
|
|
|
g_debug("bad name");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
sink_input_vol(G_GNUC_UNUSED pa_context *context, const pa_sink_input_info *i,
|
|
|
|
int eol, void *userdata)
|
|
|
|
{
|
|
|
|
|
|
|
|
struct pulse_mixer *pm = userdata;
|
2009-03-27 00:43:47 +01:00
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
if (eol) {
|
|
|
|
g_debug("eol error sink_input_vol");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-03-27 00:43:47 +01:00
|
|
|
if (i == NULL) {
|
2009-03-06 18:21:23 +01:00
|
|
|
g_debug("Sink input callback failure");
|
|
|
|
return;
|
|
|
|
}
|
2009-03-27 00:43:47 +01:00
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
g_debug("sink input vol %s, index %d ", i->name, i->index);
|
2009-03-27 16:55:17 +01:00
|
|
|
|
2009-03-26 19:50:27 +01:00
|
|
|
pm->volume = i->volume;
|
2009-03-27 16:44:36 +01:00
|
|
|
|
|
|
|
pa_threaded_mainloop_signal(pm->mainloop, 0);
|
2009-03-06 18:21:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-03-27 16:44:36 +01:00
|
|
|
subscribe_cb(pa_context *c, pa_subscription_event_type_t t,
|
2009-03-06 18:21:23 +01:00
|
|
|
uint32_t idx, void *userdata)
|
|
|
|
{
|
|
|
|
|
|
|
|
struct pulse_mixer *pm = userdata;
|
2009-03-27 00:43:47 +01:00
|
|
|
|
2009-03-07 15:59:26 +01:00
|
|
|
g_debug("subscribe call back");
|
2009-03-27 00:43:47 +01:00
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
switch (t & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) {
|
|
|
|
case PA_SUBSCRIPTION_EVENT_SINK_INPUT:
|
|
|
|
if ((t & PA_SUBSCRIPTION_EVENT_TYPE_MASK) ==
|
2009-03-16 22:41:18 +01:00
|
|
|
PA_SUBSCRIPTION_EVENT_REMOVE &&
|
|
|
|
pm->index == idx)
|
2009-03-27 00:43:47 +01:00
|
|
|
pm->online = false;
|
2009-03-06 18:21:23 +01:00
|
|
|
else {
|
|
|
|
pa_operation *o;
|
|
|
|
|
2009-03-27 16:44:36 +01:00
|
|
|
o = pa_context_get_sink_input_info(c, idx,
|
2009-03-27 00:43:47 +01:00
|
|
|
sink_input_cb, pm);
|
|
|
|
if (o == NULL) {
|
2009-03-07 15:59:26 +01:00
|
|
|
g_debug("pa_context_get_sink_input_info() failed");
|
2009-03-06 18:21:23 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pa_operation_unref(o);
|
|
|
|
}
|
2009-03-27 16:55:17 +01:00
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
context_state_cb(pa_context *context, void *userdata)
|
|
|
|
{
|
|
|
|
struct pulse_mixer *pm = userdata;
|
2009-03-27 00:43:47 +01:00
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
switch (pa_context_get_state(context)) {
|
|
|
|
case PA_CONTEXT_READY: {
|
|
|
|
pa_operation *o;
|
|
|
|
|
|
|
|
pa_context_set_subscribe_callback(context, subscribe_cb, pm);
|
|
|
|
|
2009-03-27 00:43:47 +01:00
|
|
|
o = pa_context_subscribe(context,
|
|
|
|
(pa_subscription_mask_t)PA_SUBSCRIPTION_MASK_SINK_INPUT,
|
|
|
|
NULL, NULL);
|
|
|
|
if (o == NULL) {
|
2009-03-07 15:59:26 +01:00
|
|
|
g_debug("pa_context_subscribe() failed");
|
2009-03-06 18:21:23 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-03-27 00:43:47 +01:00
|
|
|
pa_operation_unref(o);
|
2009-03-06 18:21:23 +01:00
|
|
|
|
2009-03-27 00:43:47 +01:00
|
|
|
o = pa_context_get_sink_input_info_list(context,
|
|
|
|
sink_input_cb, pm);
|
|
|
|
if (o == NULL) {
|
2009-03-07 15:59:26 +01:00
|
|
|
g_debug("pa_context_get_sink_input_info_list() failed");
|
2009-03-06 18:21:23 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-03-27 00:43:47 +01:00
|
|
|
pa_operation_unref(o);
|
2009-03-06 18:21:23 +01:00
|
|
|
|
|
|
|
pa_threaded_mainloop_signal(pm->mainloop, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PA_CONTEXT_UNCONNECTED:
|
|
|
|
case PA_CONTEXT_CONNECTING:
|
|
|
|
case PA_CONTEXT_AUTHORIZING:
|
|
|
|
case PA_CONTEXT_SETTING_NAME:
|
|
|
|
break;
|
|
|
|
case PA_CONTEXT_TERMINATED:
|
|
|
|
case PA_CONTEXT_FAILED:
|
|
|
|
pa_threaded_mainloop_signal(pm->mainloop, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct mixer *
|
2009-10-21 09:48:41 +02:00
|
|
|
pulse_mixer_init(G_GNUC_UNUSED void *ao, const struct config_param *param,
|
2009-10-20 22:10:56 +02:00
|
|
|
G_GNUC_UNUSED GError **error_r)
|
2009-03-06 18:21:23 +01:00
|
|
|
{
|
|
|
|
struct pulse_mixer *pm = g_new(struct pulse_mixer,1);
|
2009-10-20 21:05:11 +02:00
|
|
|
mixer_init(&pm->base, &pulse_mixer_plugin);
|
2009-03-26 19:50:31 +01:00
|
|
|
|
2009-03-27 00:43:47 +01:00
|
|
|
pm->online = false;
|
2009-03-06 18:21:23 +01:00
|
|
|
|
2009-03-26 19:50:10 +01:00
|
|
|
pm->server = config_get_block_string(param, "server", NULL);
|
|
|
|
pm->sink = config_get_block_string(param, "sink", NULL);
|
|
|
|
pm->output_name = config_get_block_string(param, "name", NULL);
|
2009-03-06 18:21:23 +01:00
|
|
|
|
2009-03-07 19:49:00 +01:00
|
|
|
return &pm->base;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pulse_mixer_finish(struct mixer *data)
|
|
|
|
{
|
|
|
|
struct pulse_mixer *pm = (struct pulse_mixer *) data;
|
2009-03-26 19:50:31 +01:00
|
|
|
|
2009-03-07 19:49:00 +01:00
|
|
|
g_free(pm);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2009-10-20 22:10:56 +02:00
|
|
|
pulse_mixer_setup(struct pulse_mixer *pm, GError **error_r)
|
2009-03-07 19:49:00 +01:00
|
|
|
{
|
2009-03-06 18:21:23 +01:00
|
|
|
pa_context_set_state_callback(pm->context, context_state_cb, pm);
|
|
|
|
|
|
|
|
if (pa_context_connect(pm->context, pm->server,
|
|
|
|
(pa_context_flags_t)0, NULL) < 0) {
|
2009-10-20 22:10:56 +02:00
|
|
|
g_set_error(error_r, pulse_mixer_quark(), 0,
|
|
|
|
"pa_context_connect() has failed");
|
2009-03-07 19:49:00 +01:00
|
|
|
return false;
|
2009-03-06 18:21:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pa_threaded_mainloop_lock(pm->mainloop);
|
2009-03-26 19:49:39 +01:00
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
if (pa_threaded_mainloop_start(pm->mainloop) < 0) {
|
2009-03-26 19:49:55 +01:00
|
|
|
pa_threaded_mainloop_unlock(pm->mainloop);
|
2009-10-20 22:10:56 +02:00
|
|
|
g_set_error(error_r, pulse_mixer_quark(), 0,
|
|
|
|
"pa_threaded_mainloop_start() has failed");
|
2009-03-07 19:49:00 +01:00
|
|
|
return false;
|
2009-03-06 18:21:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pa_threaded_mainloop_wait(pm->mainloop);
|
|
|
|
|
|
|
|
if (pa_context_get_state(pm->context) != PA_CONTEXT_READY) {
|
2009-10-20 22:10:56 +02:00
|
|
|
g_set_error(error_r, pulse_mixer_quark(), 0,
|
|
|
|
"failed to connect: %s",
|
|
|
|
pa_strerror(pa_context_errno(pm->context)));
|
2009-03-26 19:49:55 +01:00
|
|
|
pa_threaded_mainloop_unlock(pm->mainloop);
|
2009-03-07 19:49:00 +01:00
|
|
|
return false;
|
2009-03-06 18:21:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pa_threaded_mainloop_unlock(pm->mainloop);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-03-26 19:49:39 +01:00
|
|
|
static bool
|
2009-10-20 22:10:56 +02:00
|
|
|
pulse_mixer_open(struct mixer *data, GError **error_r)
|
2009-03-26 19:49:39 +01:00
|
|
|
{
|
|
|
|
struct pulse_mixer *pm = (struct pulse_mixer *) data;
|
2009-03-27 00:43:47 +01:00
|
|
|
|
2009-03-26 19:49:39 +01:00
|
|
|
g_debug("pulse mixer open");
|
|
|
|
|
2009-03-26 19:50:15 +01:00
|
|
|
pm->index = 0;
|
|
|
|
pm->online = false;
|
|
|
|
|
2009-03-27 00:43:47 +01:00
|
|
|
pm->mainloop = pa_threaded_mainloop_new();
|
|
|
|
if (pm->mainloop == NULL) {
|
2009-10-20 22:10:56 +02:00
|
|
|
g_set_error(error_r, pulse_mixer_quark(), 0,
|
|
|
|
"pa_threaded_mainloop_new() has failed");
|
2009-03-26 19:49:39 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-03-27 00:43:47 +01:00
|
|
|
pm->context = pa_context_new(pa_threaded_mainloop_get_api(pm->mainloop),
|
|
|
|
"Mixer mpd");
|
|
|
|
if (pm->context == NULL) {
|
2009-03-26 19:49:58 +01:00
|
|
|
pa_threaded_mainloop_stop(pm->mainloop);
|
|
|
|
pa_threaded_mainloop_free(pm->mainloop);
|
2009-10-20 22:10:56 +02:00
|
|
|
g_set_error(error_r, pulse_mixer_quark(), 0,
|
|
|
|
"pa_context_new() has failed");
|
2009-03-26 19:49:39 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-20 22:10:56 +02:00
|
|
|
if (!pulse_mixer_setup(pm, error_r)) {
|
2009-03-26 19:49:58 +01:00
|
|
|
pa_threaded_mainloop_stop(pm->mainloop);
|
|
|
|
pa_context_disconnect(pm->context);
|
|
|
|
pa_context_unref(pm->context);
|
|
|
|
pa_threaded_mainloop_free(pm->mainloop);
|
2009-03-26 19:49:39 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
static void
|
2009-03-27 16:44:36 +01:00
|
|
|
pulse_mixer_close(struct mixer *data)
|
2009-03-06 18:21:23 +01:00
|
|
|
{
|
2009-03-27 00:43:47 +01:00
|
|
|
struct pulse_mixer *pm = (struct pulse_mixer *) data;
|
2009-03-16 22:45:13 +01:00
|
|
|
|
2009-03-26 19:50:23 +01:00
|
|
|
pa_threaded_mainloop_stop(pm->mainloop);
|
|
|
|
pa_context_disconnect(pm->context);
|
|
|
|
pa_context_unref(pm->context);
|
|
|
|
pa_threaded_mainloop_free(pm->mainloop);
|
2009-03-26 19:50:15 +01:00
|
|
|
|
|
|
|
pm->online = false;
|
2009-03-06 18:21:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2009-10-20 22:10:56 +02:00
|
|
|
pulse_mixer_get_volume(struct mixer *mixer, GError **error_r)
|
2009-03-06 18:21:23 +01:00
|
|
|
{
|
2009-03-27 00:43:47 +01:00
|
|
|
struct pulse_mixer *pm = (struct pulse_mixer *) mixer;
|
2009-03-06 18:21:23 +01:00
|
|
|
int ret;
|
|
|
|
pa_operation *o;
|
|
|
|
|
2009-04-25 13:53:15 +02:00
|
|
|
pa_threaded_mainloop_lock(pm->mainloop);
|
|
|
|
|
2009-03-27 16:44:37 +01:00
|
|
|
if (!pm->online) {
|
2009-04-25 13:53:15 +02:00
|
|
|
pa_threaded_mainloop_unlock(pm->mainloop);
|
2009-03-27 16:44:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
2009-03-06 18:21:23 +01:00
|
|
|
|
2009-03-27 16:44:37 +01:00
|
|
|
o = pa_context_get_sink_input_info(pm->context, pm->index,
|
|
|
|
sink_input_vol, pm);
|
|
|
|
if (o == NULL) {
|
2009-04-25 13:53:15 +02:00
|
|
|
pa_threaded_mainloop_unlock(pm->mainloop);
|
2009-10-20 22:10:56 +02:00
|
|
|
g_set_error(error_r, pulse_mixer_quark(), 0,
|
|
|
|
"pa_context_get_sink_input_info() has failed");
|
2009-03-27 16:44:37 +01:00
|
|
|
return false;
|
2009-03-06 18:21:23 +01:00
|
|
|
}
|
|
|
|
|
2009-04-25 13:53:15 +02:00
|
|
|
if (!pulse_wait_for_operation(pm->mainloop, o)) {
|
|
|
|
pa_threaded_mainloop_unlock(pm->mainloop);
|
2009-10-20 22:10:56 +02:00
|
|
|
g_set_error(error_r, pulse_mixer_quark(), 0,
|
|
|
|
"failed to read PulseAudio volume");
|
2009-03-27 16:44:37 +01:00
|
|
|
return false;
|
2009-04-25 13:53:15 +02:00
|
|
|
}
|
2009-03-27 16:44:37 +01:00
|
|
|
|
2009-03-27 16:55:17 +01:00
|
|
|
ret = pm->online
|
|
|
|
? (int)((100*(pa_cvolume_avg(&pm->volume)+1))/PA_VOLUME_NORM)
|
|
|
|
: -1;
|
2009-04-25 13:53:15 +02:00
|
|
|
|
|
|
|
pa_threaded_mainloop_unlock(pm->mainloop);
|
2009-03-27 16:55:17 +01:00
|
|
|
|
2009-03-27 16:44:37 +01:00
|
|
|
return ret;
|
2009-03-06 18:21:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2009-10-20 22:10:56 +02:00
|
|
|
pulse_mixer_set_volume(struct mixer *mixer, unsigned volume, GError **error_r)
|
2009-03-06 18:21:23 +01:00
|
|
|
{
|
2009-03-27 00:43:47 +01:00
|
|
|
struct pulse_mixer *pm = (struct pulse_mixer *) mixer;
|
2009-03-27 16:44:37 +01:00
|
|
|
struct pa_cvolume cvolume;
|
|
|
|
pa_operation *o;
|
2009-03-27 00:43:47 +01:00
|
|
|
|
2009-04-25 13:53:15 +02:00
|
|
|
pa_threaded_mainloop_lock(pm->mainloop);
|
|
|
|
|
2009-03-27 16:44:37 +01:00
|
|
|
if (!pm->online) {
|
2009-04-25 13:53:15 +02:00
|
|
|
pa_threaded_mainloop_unlock(pm->mainloop);
|
2009-10-20 22:10:56 +02:00
|
|
|
g_set_error(error_r, pulse_mixer_quark(), 0, "disconnected");
|
2009-03-27 16:44:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
2009-03-06 18:21:23 +01:00
|
|
|
|
2009-03-27 16:44:37 +01:00
|
|
|
pa_cvolume_set(&cvolume, pm->volume.channels,
|
|
|
|
(pa_volume_t)volume * PA_VOLUME_NORM / 100 + 0.5);
|
2009-03-06 18:21:23 +01:00
|
|
|
|
2009-03-27 16:44:37 +01:00
|
|
|
o = pa_context_set_sink_input_volume(pm->context, pm->index,
|
|
|
|
&cvolume, NULL, NULL);
|
2009-04-25 13:53:15 +02:00
|
|
|
pa_threaded_mainloop_unlock(pm->mainloop);
|
2009-03-27 16:44:37 +01:00
|
|
|
if (o == NULL) {
|
2009-10-20 22:10:56 +02:00
|
|
|
g_set_error(error_r, pulse_mixer_quark(), 0,
|
|
|
|
"failed to set PulseAudio volume");
|
2009-03-27 16:44:37 +01:00
|
|
|
return false;
|
2009-03-06 18:21:23 +01:00
|
|
|
}
|
|
|
|
|
2009-03-27 16:44:37 +01:00
|
|
|
pa_operation_unref(o);
|
|
|
|
|
2009-03-06 18:21:23 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-10-20 21:05:11 +02:00
|
|
|
const struct mixer_plugin pulse_mixer_plugin = {
|
2009-03-06 18:21:23 +01:00
|
|
|
.init = pulse_mixer_init,
|
|
|
|
.finish = pulse_mixer_finish,
|
|
|
|
.open = pulse_mixer_open,
|
|
|
|
.close = pulse_mixer_close,
|
|
|
|
.get_volume = pulse_mixer_get_volume,
|
|
|
|
.set_volume = pulse_mixer_set_volume,
|
|
|
|
};
|