aboutsummaryrefslogtreecommitdiffstats
path: root/meta-multimedia/recipes-multimedia/dleyna/dleyna-renderer/0001-add-gupnp-1.2-API-support.patch
blob: 8f54658a11e9285b1f2f10fbea1ae48dc53403a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
From 7c945e7960cf7dffd9dd0bb5f7ec6bee4dc0bca3 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Tue, 18 Feb 2020 14:17:55 -0800
Subject: [PATCH] add gupnp 1.2 API support

Takes from https://git.archlinux.org/svntogit/packages.git/tree/trunk/gupnp-1.2.diff?h=packages/dleyna-renderer
Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 configure.ac                |  4 +--
 libdleyna/renderer/device.c | 51 +++++++++++++++++++++++++++++++++++--
 libdleyna/renderer/upnp.c   |  4 +--
 3 files changed, 53 insertions(+), 6 deletions(-)

diff --git a/configure.ac b/configure.ac
index 271ee92..364659d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -38,8 +38,8 @@ LT_LANG([C])
 PKG_PROG_PKG_CONFIG(0.16)
 PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.28])
 PKG_CHECK_MODULES([GIO], [gio-2.0 >= 2.28])
-PKG_CHECK_MODULES([GSSDP], [gssdp-1.0 >= 0.13.2])
-PKG_CHECK_MODULES([GUPNP], [gupnp-1.0 >= 0.20.5])
+PKG_CHECK_MODULES([GSSDP], [gssdp-1.2 >= 1.2.0])
+PKG_CHECK_MODULES([GUPNP], [gupnp-1.2 >= 1.2.0])
 PKG_CHECK_MODULES([GUPNPAV], [gupnp-av-1.0 >= 0.11.5])
 PKG_CHECK_MODULES([GUPNPDLNA], [gupnp-dlna-2.0 >= 0.9.4])
 PKG_CHECK_MODULES([SOUP], [libsoup-2.4 >= 2.28.2])
diff --git a/libdleyna/renderer/device.c b/libdleyna/renderer/device.c
index 783fb52..c7b9fc3 100644
--- a/libdleyna/renderer/device.c
+++ b/libdleyna/renderer/device.c
@@ -2121,6 +2121,53 @@ exit:
 	return;
 }
 
+typedef struct
+{
+  GMainLoop *loop;
+  GUPnPServiceIntrospection *introspection;
+  GError **error;
+} GetIntrospectionAsyncData;
+
+static void
+get_introspection_async_cb (GUPnPServiceInfo           *info,
+                            GUPnPServiceIntrospection  *introspection,
+                            const GError               *error,
+                            gpointer                    user_data)
+{
+  GetIntrospectionAsyncData *data = user_data;
+  data->introspection = introspection;
+  if (data->error)
+    *data->error = g_error_copy (error);
+  g_main_loop_quit (data->loop);
+}
+
+static GUPnPServiceIntrospection *
+_gupnp_service_info_get_introspection (GUPnPServiceInfo *info,
+                                       GError          **error)
+{
+  GetIntrospectionAsyncData data;
+  GMainContext *context;
+
+  context = g_main_context_new ();
+  data.loop = g_main_loop_new (context, FALSE);
+  data.error = error;
+
+  g_main_context_push_thread_default (context);
+
+  gupnp_service_info_get_introspection_async (info,
+                                              get_introspection_async_cb,
+                                              &data);
+
+  g_main_loop_run (data.loop);
+
+  g_main_context_pop_thread_default (context);
+
+  g_main_loop_unref (data.loop);
+  g_main_context_unref (context);
+
+  return data.introspection;
+}
+
 static gboolean prv_get_av_service_states_values(GUPnPServiceProxy *av_proxy,
 						 GVariant **mpris_tp_speeds,
 						 GPtrArray **upnp_tp_speeds,
@@ -2147,7 +2194,7 @@ static gboolean prv_get_av_service_states_values(GUPnPServiceProxy *av_proxy,
 	weak_ref = av_proxy;
 	g_object_add_weak_pointer(G_OBJECT(av_proxy), &weak_ref);
 
-	introspection = gupnp_service_info_get_introspection(
+	introspection = _gupnp_service_info_get_introspection(
 		GUPNP_SERVICE_INFO(av_proxy),
 		&error);
 
@@ -2215,7 +2262,7 @@ static gboolean prv_get_rc_service_states_values(GUPnPServiceProxy *rc_proxy,
 	weak_ref = rc_proxy;
 	g_object_add_weak_pointer(G_OBJECT(rc_proxy), &weak_ref);
 
-	introspection = gupnp_service_info_get_introspection(
+	introspection = _gupnp_service_info_get_introspection(
 		GUPNP_SERVICE_INFO(rc_proxy),
 		&error);
 
diff --git a/libdleyna/renderer/upnp.c b/libdleyna/renderer/upnp.c
index ac1b08a..b762226 100644
--- a/libdleyna/renderer/upnp.c
+++ b/libdleyna/renderer/upnp.c
@@ -243,8 +243,8 @@ static void prv_server_unavailable_cb(GUPnPControlPoint *cp,
 
 	udn = gupnp_device_info_get_udn((GUPnPDeviceInfo *)proxy);
 
-	ip_address = gupnp_context_get_host_ip(
-		gupnp_control_point_get_context(cp));
+	ip_address = gssdp_client_get_host_ip(
+		GSSDP_CLIENT(gupnp_control_point_get_context(cp)));
 
 	if (!udn || !ip_address)
 		goto on_error;
-- 
2.25.1