pulse_mixer: adapted code style
Use the same code style as the rest of MPD.
This commit is contained in:
parent
207786ffb1
commit
929c200c38
|
@ -31,11 +31,14 @@
|
|||
|
||||
struct pulse_mixer {
|
||||
struct mixer base;
|
||||
|
||||
const char *server;
|
||||
const char *sink;
|
||||
const char *output_name;
|
||||
|
||||
uint32_t index;
|
||||
bool online;
|
||||
|
||||
struct pa_context *context;
|
||||
struct pa_threaded_mainloop *mainloop;
|
||||
struct pa_cvolume volume;
|
||||
|
@ -48,16 +51,19 @@ sink_input_cb(G_GNUC_UNUSED pa_context *context, const pa_sink_input_info *i,
|
|||
{
|
||||
|
||||
struct pulse_mixer *pm = userdata;
|
||||
|
||||
if (eol) {
|
||||
g_debug("eol error sink_input_cb");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!i) {
|
||||
if (i == NULL) {
|
||||
g_debug("Sink input callback failure");
|
||||
return;
|
||||
}
|
||||
|
||||
g_debug("sink input cb %s, index %d ",i->name,i->index);
|
||||
|
||||
if (strcmp(i->name,pm->output_name) == 0) {
|
||||
pm->index = i->index;
|
||||
pm->online = true;
|
||||
|
@ -72,15 +78,17 @@ sink_input_vol(G_GNUC_UNUSED pa_context *context, const pa_sink_input_info *i,
|
|||
{
|
||||
|
||||
struct pulse_mixer *pm = userdata;
|
||||
|
||||
if (eol) {
|
||||
g_debug("eol error sink_input_vol");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!i) {
|
||||
if (i == NULL) {
|
||||
g_debug("Sink input callback failure");
|
||||
return;
|
||||
}
|
||||
|
||||
g_debug("sink input vol %s, index %d ", i->name, i->index);
|
||||
pm->volume = i->volume;
|
||||
}
|
||||
|
@ -91,7 +99,9 @@ subscribe_cb(G_GNUC_UNUSED pa_context *c, pa_subscription_event_type_t t,
|
|||
{
|
||||
|
||||
struct pulse_mixer *pm = userdata;
|
||||
|
||||
g_debug("subscribe call back");
|
||||
|
||||
switch (t & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) {
|
||||
case PA_SUBSCRIPTION_EVENT_SINK_INPUT:
|
||||
if ((t & PA_SUBSCRIPTION_EVENT_TYPE_MASK) ==
|
||||
|
@ -101,7 +111,9 @@ subscribe_cb(G_GNUC_UNUSED pa_context *c, pa_subscription_event_type_t t,
|
|||
else {
|
||||
pa_operation *o;
|
||||
|
||||
if (!(o = pa_context_get_sink_input_info(pm->context, idx, sink_input_cb, pm))) {
|
||||
o = pa_context_get_sink_input_info(pm->context, idx,
|
||||
sink_input_cb, pm);
|
||||
if (o == NULL) {
|
||||
g_debug("pa_context_get_sink_input_info() failed");
|
||||
return;
|
||||
}
|
||||
|
@ -116,26 +128,31 @@ static void
|
|||
context_state_cb(pa_context *context, void *userdata)
|
||||
{
|
||||
struct pulse_mixer *pm = userdata;
|
||||
|
||||
switch (pa_context_get_state(context)) {
|
||||
case PA_CONTEXT_READY: {
|
||||
pa_operation *o;
|
||||
|
||||
pa_context_set_subscribe_callback(context, subscribe_cb, pm);
|
||||
|
||||
if (!(o = pa_context_subscribe(context, (pa_subscription_mask_t)
|
||||
(PA_SUBSCRIPTION_MASK_SINK_INPUT), NULL, NULL))) {
|
||||
o = pa_context_subscribe(context,
|
||||
(pa_subscription_mask_t)PA_SUBSCRIPTION_MASK_SINK_INPUT,
|
||||
NULL, NULL);
|
||||
if (o == NULL) {
|
||||
g_debug("pa_context_subscribe() failed");
|
||||
return;
|
||||
}
|
||||
|
||||
pa_operation_unref(o);
|
||||
|
||||
|
||||
if (!(o = pa_context_get_sink_input_info_list(context, sink_input_cb, pm))) {
|
||||
o = pa_context_get_sink_input_info_list(context,
|
||||
sink_input_cb, pm);
|
||||
if (o == NULL) {
|
||||
g_debug("pa_context_get_sink_input_info_list() failed");
|
||||
return;
|
||||
}
|
||||
pa_operation_unref(o);
|
||||
|
||||
pa_operation_unref(o);
|
||||
|
||||
pa_threaded_mainloop_signal(pm->mainloop, 0);
|
||||
break;
|
||||
|
@ -213,18 +230,21 @@ static bool
|
|||
pulse_mixer_open(G_GNUC_UNUSED struct mixer *data)
|
||||
{
|
||||
struct pulse_mixer *pm = (struct pulse_mixer *) data;
|
||||
|
||||
g_debug("pulse mixer open");
|
||||
|
||||
pm->index = 0;
|
||||
pm->online = false;
|
||||
|
||||
if(!(pm->mainloop = pa_threaded_mainloop_new())) {
|
||||
pm->mainloop = pa_threaded_mainloop_new();
|
||||
if (pm->mainloop == NULL) {
|
||||
g_debug("failed mainloop");
|
||||
return false;
|
||||
}
|
||||
|
||||
if(!(pm->context = pa_context_new(pa_threaded_mainloop_get_api(pm->mainloop),
|
||||
"Mixer mpd"))) {
|
||||
pm->context = pa_context_new(pa_threaded_mainloop_get_api(pm->mainloop),
|
||||
"Mixer mpd");
|
||||
if (pm->context == NULL) {
|
||||
pa_threaded_mainloop_stop(pm->mainloop);
|
||||
pa_threaded_mainloop_free(pm->mainloop);
|
||||
g_debug("failed context");
|
||||
|
@ -265,11 +285,13 @@ pulse_mixer_get_volume(struct mixer *mixer)
|
|||
g_debug("get_volume %s",
|
||||
pm->online == TRUE ? "online" : "offline");
|
||||
if (pm->online) {
|
||||
if (!(o = pa_context_get_sink_input_info(pm->context, pm->index,
|
||||
sink_input_vol, pm))) {
|
||||
o = pa_context_get_sink_input_info(pm->context, pm->index,
|
||||
sink_input_vol, pm);
|
||||
if (o == NULL) {
|
||||
g_debug("pa_context_get_sink_input_info() failed");
|
||||
return false;
|
||||
}
|
||||
|
||||
pa_operation_unref(o);
|
||||
|
||||
ret = (int)((100*(pa_cvolume_avg(&pm->volume)+1))/PA_VOLUME_NORM);
|
||||
|
@ -284,13 +306,16 @@ static bool
|
|||
pulse_mixer_set_volume(struct mixer *mixer, unsigned volume)
|
||||
{
|
||||
struct pulse_mixer *pm = (struct pulse_mixer *) mixer;
|
||||
pa_operation *o;
|
||||
if (pm->online) {
|
||||
pa_cvolume_set(&pm->volume, pm->volume.channels,
|
||||
(pa_volume_t)(volume)*PA_VOLUME_NORM/100+0.5);
|
||||
|
||||
if (!(o = pa_context_set_sink_input_volume(pm->context, pm->index,
|
||||
&pm->volume, NULL, NULL))) {
|
||||
if (pm->online) {
|
||||
pa_operation *o;
|
||||
|
||||
pa_cvolume_set(&pm->volume, pm->volume.channels,
|
||||
(pa_volume_t)volume * PA_VOLUME_NORM / 100 + 0.5);
|
||||
|
||||
o = pa_context_set_sink_input_volume(pm->context, pm->index,
|
||||
&pm->volume, NULL, NULL);
|
||||
if (o == NULL) {
|
||||
g_debug("pa_context_set_sink_input_volume() failed");
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue