diff options
author | Conor Curran <conor.curran@canonical.com> | 2012-03-01 16:00:38 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2012-03-01 16:00:38 +0000 |
commit | 40837488c4fa94e96cdfefae65020e2b443e46f5 (patch) | |
tree | f8bd29096ef7dd3920cce3d9e6e606ca44ad2de7 /src/pulseaudio-mgr.c | |
parent | ee55f50a379890e68ab9af68d02565b52a24655d (diff) | |
download | ayatana-indicator-sound-40837488c4fa94e96cdfefae65020e2b443e46f5.tar.gz ayatana-indicator-sound-40837488c4fa94e96cdfefae65020e2b443e46f5.tar.bz2 ayatana-indicator-sound-40837488c4fa94e96cdfefae65020e2b443e46f5.zip |
check the state of the pulse context to ensure it's ready for interaction
Diffstat (limited to 'src/pulseaudio-mgr.c')
-rw-r--r-- | src/pulseaudio-mgr.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/pulseaudio-mgr.c b/src/pulseaudio-mgr.c index aca156a..fee504e 100644 --- a/src/pulseaudio-mgr.c +++ b/src/pulseaudio-mgr.c @@ -177,6 +177,12 @@ pm_update_volume (gint sink_index, pa_cvolume new_volume) g_warning ("pm_update_volume sink index is negative or the context is null"); return; } + + if (pa_context_get_state (pulse_context) != PA_CONTEXT_READY ){ + g_warning ("pm_update_volume context is not in a ready state"); + return; + } + pa_operation *operation = NULL; operation = pa_context_set_sink_volume_by_index (pulse_context, @@ -198,6 +204,12 @@ pm_update_mute (gboolean update) g_warning ("pm_update_mute - the context is null"); return; } + + if (pa_context_get_state (pulse_context) != PA_CONTEXT_READY ){ + g_warning ("pm_update_mute context is not in a ready state"); + return; + } + pa_operation *operation = NULL; operation = pa_context_get_sink_info_list (pulse_context, @@ -217,6 +229,12 @@ pm_update_mic_gain (gint source_index, pa_cvolume new_gain) g_warning ("pm_update_mic_gain source index is negative or the context is null"); return; } + + if (pa_context_get_state (pulse_context) != PA_CONTEXT_READY ){ + g_warning ("pm_update_mic_gain context is not in a ready state"); + return; + } + pa_operation *operation = NULL; operation = pa_context_set_source_volume_by_index (pulse_context, @@ -237,6 +255,12 @@ pm_update_mic_mute (gint source_index, gint mute_update) if (source_index < 0){ return; } + + if (pa_context_get_state (pulse_context) != PA_CONTEXT_READY ){ + g_warning ("pm_update_mic_mute context is not in a ready state"); + return; + } + pa_operation *operation = NULL; operation = pa_context_set_source_mute_by_index (pulse_context, |