summaryrefslogtreecommitdiff
path: root/src/deviceinfo_pulse.cpp
diff options
context:
space:
mode:
authorMateusz Łukasik <mati75@linuxmint.pl>2016-10-09 22:11:11 +0200
committerMateusz Łukasik <mati75@linuxmint.pl>2016-10-09 22:11:11 +0200
commit392e79606ccba0695027b63ed872c4b0a491cd8b (patch)
treeeb7466234f0b0ee059ff39270739c928a2bceae2 /src/deviceinfo_pulse.cpp
parent029acf6821f034583700c26b013ffc67ad7690f7 (diff)
New upstream version 16.9.0~ds0
Diffstat (limited to 'src/deviceinfo_pulse.cpp')
-rw-r--r--src/deviceinfo_pulse.cpp73
1 files changed, 73 insertions, 0 deletions
diff --git a/src/deviceinfo_pulse.cpp b/src/deviceinfo_pulse.cpp
new file mode 100644
index 0000000..d211ba3
--- /dev/null
+++ b/src/deviceinfo_pulse.cpp
@@ -0,0 +1,73 @@
+#if USE_PULSEAUDIO_DEVICES
+#include <pulse/context.h>
+#include <pulse/glib-mainloop.h>
+#include <pulse/introspect.h>
+#include <pulse/operation.h>
+#include <QApplication>
+
+QMap<int, QString> pulse_device_list;
+bool pulse_list_done = false;
+
+void sink_cb(pa_context *, const pa_sink_info *i, int eol, void *) {
+ if (eol == 0) {
+ qDebug() << "DeviceInfo::sink_cb: sink #" << i->index << ":" << i->name;
+ pulse_device_list[i->index] = i->name;
+ } else {
+ pulse_list_done = true;
+ }
+}
+
+void context_state_cb(pa_context *c, void *) {
+ qDebug() << "DeviceInfo::context_state_cb";
+
+ pa_context_state_t state = pa_context_get_state(c);
+
+ if (state == PA_CONTEXT_READY) {
+ pa_operation *o;
+
+ if (!(o = pa_context_get_sink_info_list(c, sink_cb, NULL))) {
+ qWarning() << "DeviceInfo::context_state_cb: pa_context_get_sink_info_list failed";
+ return;
+ }
+ pa_operation_unref(o);
+ }
+}
+
+DeviceList DeviceInfo::paDevices() {
+ qDebug("DeviceInfo::paDevices");
+ DeviceList l;
+
+ if (!pulse_list_done) {
+ pa_glib_mainloop *mainloop = pa_glib_mainloop_new(NULL);
+ pa_mainloop_api *api = pa_glib_mainloop_get_api(mainloop);
+ pa_context *context = pa_context_new(api, "smplayer");
+
+ if (pa_context_connect(context, NULL, PA_CONTEXT_NOFAIL, 0) < 0) {
+ pa_context_unref(context);
+ return l;
+ }
+ pa_context_set_state_callback(context, context_state_cb, NULL);
+
+ // Wait for a while until the list is complete
+ for (int n = 0; n < 1000; n++) {
+ QApplication::processEvents();
+ if (pulse_list_done) {
+ qDebug("DeviceInfo::paDevices: list done (%d)", n);
+ break;
+ }
+ }
+ }
+
+ if (!pulse_list_done) {
+ qWarning("DeviceInfo::paDevices: list is not done yet!");
+ }
+
+ QMapIterator<int, QString> i(pulse_device_list);
+ while (i.hasNext()) {
+ i.next();
+ l.append(DeviceData(i.key(), i.value()));
+ }
+
+ return l;
+}
+#endif // USE_PULSEAUDIO_DEVICES