From 6d156916d8455cb8edef0e90020026d395dd82a0 Mon Sep 17 00:00:00 2001 From: Michal Ratajsky Date: Sat, 8 Nov 2014 20:31:26 +0100 Subject: oss: Use MateMixerStreamSwitch --- backends/oss/oss-switch.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'backends/oss/oss-switch.c') diff --git a/backends/oss/oss-switch.c b/backends/oss/oss-switch.c index 682814b..40527b9 100644 --- a/backends/oss/oss-switch.c +++ b/backends/oss/oss-switch.c @@ -22,6 +22,7 @@ #include #include "oss-common.h" +#include "oss-stream.h" #include "oss-switch.h" #include "oss-switch-option.h" @@ -31,12 +32,12 @@ struct _OssSwitchPrivate GList *options; }; -static void oss_switch_class_init (OssSwitchClass *klass); -static void oss_switch_init (OssSwitch *swtch); -static void oss_switch_dispose (GObject *object); -static void oss_switch_finalize (GObject *object); +static void oss_switch_class_init (OssSwitchClass *klass); +static void oss_switch_init (OssSwitch *swtch); +static void oss_switch_dispose (GObject *object); +static void oss_switch_finalize (GObject *object); -G_DEFINE_TYPE (OssSwitch, oss_switch, MATE_MIXER_TYPE_SWITCH) +G_DEFINE_TYPE (OssSwitch, oss_switch, MATE_MIXER_TYPE_STREAM_SWITCH) static gboolean oss_switch_set_active_option (MateMixerSwitch *mms, MateMixerSwitchOption *mmso); @@ -99,13 +100,15 @@ oss_switch_finalize (GObject *object) } OssSwitch * -oss_switch_new (const gchar *name, +oss_switch_new (OssStream *stream, + const gchar *name, const gchar *label, gint fd, GList *options) { OssSwitch *swtch; + g_return_val_if_fail (OSS_IS_STREAM (stream), NULL); g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (label != NULL, NULL); g_return_val_if_fail (fd != -1, NULL); @@ -115,6 +118,7 @@ oss_switch_new (const gchar *name, "name", name, "label", label, "role", MATE_MIXER_SWITCH_ROLE_PORT, + "stream", stream, NULL); /* Takes ownership of options */ -- cgit v1.2.1