aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-mic-monitor.h
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2011-08-17 22:55:32 +0800
committerJonny Lamb <jonny.lamb@collabora.co.uk>2011-08-18 22:59:11 +0800
commitcd40005a5e9608fa8e1295b8606788af38100dba (patch)
tree082c70811946d78b2b80fe2bfe7066376557b782 /src/empathy-mic-monitor.h
parent956bfcb33c33452f4ce958ae0a7112efb5ccf4a9 (diff)
downloadgsoc2013-empathy-cd40005a5e9608fa8e1295b8606788af38100dba.tar
gsoc2013-empathy-cd40005a5e9608fa8e1295b8606788af38100dba.tar.gz
gsoc2013-empathy-cd40005a5e9608fa8e1295b8606788af38100dba.tar.bz2
gsoc2013-empathy-cd40005a5e9608fa8e1295b8606788af38100dba.tar.lz
gsoc2013-empathy-cd40005a5e9608fa8e1295b8606788af38100dba.tar.xz
gsoc2013-empathy-cd40005a5e9608fa8e1295b8606788af38100dba.tar.zst
gsoc2013-empathy-cd40005a5e9608fa8e1295b8606788af38100dba.zip
mic-monitor: move the PA-specific stuff from audio-src to here
Sorry for another big commit. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'src/empathy-mic-monitor.h')
-rw-r--r--src/empathy-mic-monitor.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/src/empathy-mic-monitor.h b/src/empathy-mic-monitor.h
new file mode 100644
index 000000000..69106c55d
--- /dev/null
+++ b/src/empathy-mic-monitor.h
@@ -0,0 +1,80 @@
+/*
+ * Copyright (C) 2011 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __EMPATHY_MIC_MONITOR_H__
+#define __EMPATHY_MIC_MONITOR_H__
+
+#include <glib-object.h>
+
+#include <pulse/pulseaudio.h>
+
+G_BEGIN_DECLS
+
+#define EMPATHY_TYPE_MIC_MONITOR (empathy_mic_monitor_get_type ())
+#define EMPATHY_MIC_MONITOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_MIC_MONITOR, EmpathyMicMonitor))
+#define EMPATHY_MIC_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_MIC_MONITOR, EmpathyMicMonitorClass))
+#define EMPATHY_IS_MIC_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_MIC_MONITOR))
+#define EMPATHY_IS_MIC_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_MIC_MONITOR))
+#define EMPATHY_MIC_MONITOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_MIC_MONITOR, EmpathyMicMonitorClass))
+
+typedef struct _EmpathyMicMonitor EmpathyMicMonitor;
+typedef struct _EmpathyMicMonitorPrivate EmpathyMicMonitorPrivate;
+typedef struct _EmpathyMicMonitorClass EmpathyMicMonitorClass;
+
+struct _EmpathyMicMonitor
+{
+ GObject parent;
+ EmpathyMicMonitorPrivate *priv;
+};
+
+struct _EmpathyMicMonitorClass
+{
+ GObjectClass parent_class;
+};
+
+GType empathy_mic_monitor_get_type (void) G_GNUC_CONST;
+
+EmpathyMicMonitor * empathy_mic_monitor_new (void);
+
+
+typedef struct
+{
+ guint index;
+ gchar *name;
+ gchar *description;
+ gboolean is_monitor;
+} EmpathyMicrophone;
+
+void empathy_mic_monitor_list_microphones_async (EmpathyMicMonitor *monitor,
+ GAsyncReadyCallback callback, gpointer user_data);
+const GList * empathy_mic_monitor_list_microphones_finish (EmpathyMicMonitor *monitor,
+ GAsyncResult *result, GError **error);
+
+void empathy_mic_monitor_change_microphone_async (EmpathyMicMonitor *monitor,
+ guint source_output_idx, guint source_idx, GAsyncReadyCallback callback, gpointer user_data);
+gboolean empathy_mic_monitor_change_microphone_finish (EmpathyMicMonitor *monitor,
+ GAsyncResult *result, GError **error);
+
+void empathy_mic_monitor_get_current_mic_async (EmpathyMicMonitor *self,
+ guint source_output_idx, GAsyncReadyCallback callback, gpointer user_data);
+guint empathy_mic_monitor_get_current_mic_finish (EmpathyMicMonitor *self,
+ GAsyncResult *result, GError **error);
+
+G_END_DECLS
+
+#endif /* __EMPATHY_MIC_MONITOR_H__ */