[Spice-devel] [spice-gtk PATCH v2 2/7] audio: spice-audio with get mute and volume

Victor Toso victortoso at redhat.com
Mon Mar 23 06:26:26 PDT 2015


Functions to be implemented by spice-gstaudio and spice-pulse to get the
updated volume and mute values for playback and record stream.
---
 gtk/spice-audio.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gtk/spice-audio.h b/gtk/spice-audio.h
index ebc4946..2c66259 100644
--- a/gtk/spice-audio.h
+++ b/gtk/spice-audio.h
@@ -67,6 +67,10 @@ struct _SpiceAudioClass {
 
     /*< private >*/
     gboolean (*connect_channel)(SpiceAudio *audio, SpiceChannel *channel);
+    gboolean (*get_playback_mute)(SpiceAudio *audio);
+    guint16* (*get_playback_volume)(SpiceAudio *audio, guint8 *nchannels);
+    gboolean (*get_record_mute)(SpiceAudio *audio);
+    guint16* (*get_record_volume)(SpiceAudio *audio, guint8 *nchannels);
 
     gchar _spice_reserved[SPICE_RESERVED_PADDING];
 };
-- 
2.1.0



More information about the Spice-devel mailing list