Hello community,
here is the log from the commit of package gstreamer-rtsp-server for
openSUSE:Factory checked in at 2018-02-14 10:50:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gstreamer-rtsp-server (Old)
and /work/SRC/openSUSE:Factory/.gstreamer-rtsp-server.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gstreamer-rtsp-server"
Wed Feb 14 10:50:59 2018 rev:12 rq:576014 version:1.12.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/gstreamer-rtsp-server/gstreamer-rtsp-server.changes
2018-01-10 23:37:20.441906910 +0100
+++
/work/SRC/openSUSE:Factory/.gstreamer-rtsp-server.new/gstreamer-rtsp-server.changes
2018-02-14 10:51:00.715001253 +0100
@@ -1,0 +2,8 @@
+Mon Feb 12 22:32:46 UTC 2018 - [email protected]
+
+- Add upstream bug fix patches:
+ + gst-rtsp-server-rtsp-client-add-type-annotations.patch.
+ + gst-rtsp-server-gst_rtsp_context_get_current.patch.
+ + gst-rtsp-server-add-annotations-and-API-guards.patch.
+
+-------------------------------------------------------------------
New:
----
gst-rtsp-server-add-annotations-and-API-guards.patch
gst-rtsp-server-gst_rtsp_context_get_current.patch
gst-rtsp-server-rtsp-client-add-type-annotations.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gstreamer-rtsp-server.spec ++++++
--- /var/tmp/diff_new_pack.UaIhnq/_old 2018-02-14 10:51:01.374977502 +0100
+++ /var/tmp/diff_new_pack.UaIhnq/_new 2018-02-14 10:51:01.374977502 +0100
@@ -1,7 +1,7 @@
#
# spec file for package gstreamer-rtsp-server
#
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -29,6 +29,12 @@
# PATCH-FIX-UPSTREAM gst-rtsp-server-Set-udpsink_out-ttl-mc-property.patch
bgo#791743 [email protected] -- rtsp: Set udpsink_out ttl-mc property on
creation
Patch0: gst-rtsp-server-Set-udpsink_out-ttl-mc-property.patch
+# PATCH-FIX-UPSTREAM gst-rtsp-server-rtsp-client-add-type-annotations.patch
[email protected]
+Patch1: gst-rtsp-server-rtsp-client-add-type-annotations.patch
+# PATCH-FIX-UPSTREAM gst-rtsp-server-gst_rtsp_context_get_current.patch
[email protected]
+Patch2: gst-rtsp-server-gst_rtsp_context_get_current.patch
+# PATCH-FIX-UPSTREAM gst-rtsp-server-add-annotations-and-API-guards.patch
[email protected]
+Patch3: gst-rtsp-server-add-annotations-and-API-guards.patch
BuildRequires: gstreamer-plugins-good >= 1.10.0
BuildRequires: pkgconfig(gobject-introspection-1.0) >= 1.31.1
++++++ gst-rtsp-server-add-annotations-and-API-guards.patch ++++++
++++ 736 lines (skipped)
++++++ gst-rtsp-server-gst_rtsp_context_get_current.patch ++++++
>From ac97ba7f3e187a916f69904a2fa821f466d444a3 Mon Sep 17 00:00:00 2001
From: Mathieu Duponchelle <[email protected]>
Date: Tue, 6 Feb 2018 18:00:33 +0100
Subject: gst_rtsp_context_get_current: add (skip) annotation
The return value type is defined with G_DEFINE_POINTER_TYPE,
and gi emits the following warning:
Invalid non-constant return of bare structure or union; register as
boxed type or (skip)
---
gst/rtsp-server/rtsp-context.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gst/rtsp-server/rtsp-context.c b/gst/rtsp-server/rtsp-context.c
index 919ca2d..def64f2 100644
--- a/gst/rtsp-server/rtsp-context.c
+++ b/gst/rtsp-server/rtsp-context.c
@@ -31,7 +31,7 @@ G_DEFINE_POINTER_TYPE (GstRTSPContext, gst_rtsp_context);
static GPrivate current_context;
/**
- * gst_rtsp_context_get_current:
+ * gst_rtsp_context_get_current: (skip):
*
* Get the current #GstRTSPContext. This object is retrieved from the
* current thread that is handling the request for a client.
--
cgit v1.1
++++++ gst-rtsp-server-rtsp-client-add-type-annotations.patch ++++++
>From 57b2835a41ed31339e5bd523cacbc07a170e2120 Mon Sep 17 00:00:00 2001
From: Mathieu Duponchelle <[email protected]>
Date: Tue, 6 Feb 2018 17:58:49 +0100
Subject: rtsp-client: add type annotations
gi doesn't seem to be able to figure out the type of the
signal parameters when defined with G_DEFINE_POINTER_TYPE
---
gst/rtsp-server/rtsp-client.c | 77 ++++++++++++++++++++++++++++++++++++-------
1 file changed, 66 insertions(+), 11 deletions(-)
diff --git a/gst/rtsp-server/rtsp-client.c b/gst/rtsp-server/rtsp-client.c
index cf78b17..52c543c 100644
--- a/gst/rtsp-server/rtsp-client.c
+++ b/gst/rtsp-server/rtsp-client.c
@@ -243,7 +243,7 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
/**
* GstRTSPClient::pre-options-request:
* @client: a #GstRTSPClient
- * @ctx: a #GstRTSPContext
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
*
* Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
* otherwise an appropriate return code
@@ -257,6 +257,11 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
GST_TYPE_RTSP_CONTEXT);
+ /**
+ * GstRTSPClient::options-request:
+ * @client: a #GstRTSPClient
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
+ */
gst_rtsp_client_signals[SIGNAL_OPTIONS_REQUEST] =
g_signal_new ("options-request", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, options_request),
@@ -266,7 +271,7 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
/**
* GstRTSPClient::pre-describe-request:
* @client: a #GstRTSPClient
- * @ctx: a #GstRTSPContext
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
*
* Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
* otherwise an appropriate return code
@@ -280,6 +285,11 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
GST_TYPE_RTSP_CONTEXT);
+ /**
+ * GstRTSPClient::describe-request:
+ * @client: a #GstRTSPClient
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
+ */
gst_rtsp_client_signals[SIGNAL_DESCRIBE_REQUEST] =
g_signal_new ("describe-request", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
describe_request),
@@ -289,7 +299,7 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
/**
* GstRTSPClient::pre-setup-request:
* @client: a #GstRTSPClient
- * @ctx: a #GstRTSPContext
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
*
* Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
* otherwise an appropriate return code
@@ -303,6 +313,11 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
GST_TYPE_RTSP_CONTEXT);
+ /**
+ * GstRTSPClient::setup-request:
+ * @client: a #GstRTSPClient
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
+ */
gst_rtsp_client_signals[SIGNAL_SETUP_REQUEST] =
g_signal_new ("setup-request", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, setup_request),
@@ -312,7 +327,7 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
/**
* GstRTSPClient::pre-play-request:
* @client: a #GstRTSPClient
- * @ctx: a #GstRTSPContext
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
*
* Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
* otherwise an appropriate return code
@@ -326,6 +341,11 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
GST_TYPE_RTSP_CONTEXT);
+ /**
+ * GstRTSPClient::play-request:
+ * @client: a #GstRTSPClient
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
+ */
gst_rtsp_client_signals[SIGNAL_PLAY_REQUEST] =
g_signal_new ("play-request", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, play_request),
@@ -335,7 +355,7 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
/**
* GstRTSPClient::pre-pause-request:
* @client: a #GstRTSPClient
- * @ctx: a #GstRTSPContext
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
*
* Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
* otherwise an appropriate return code
@@ -349,6 +369,11 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
GST_TYPE_RTSP_CONTEXT);
+ /**
+ * GstRTSPClient::pause-request:
+ * @client: a #GstRTSPClient
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
+ */
gst_rtsp_client_signals[SIGNAL_PAUSE_REQUEST] =
g_signal_new ("pause-request", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, pause_request),
@@ -358,7 +383,7 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
/**
* GstRTSPClient::pre-teardown-request:
* @client: a #GstRTSPClient
- * @ctx: a #GstRTSPContext
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
*
* Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
* otherwise an appropriate return code
@@ -372,6 +397,11 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
GST_TYPE_RTSP_CONTEXT);
+ /**
+ * GstRTSPClient::teardown-request:
+ * @client: a #GstRTSPClient
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
+ */
gst_rtsp_client_signals[SIGNAL_TEARDOWN_REQUEST] =
g_signal_new ("teardown-request", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
teardown_request),
@@ -381,7 +411,7 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
/**
* GstRTSPClient::pre-set-parameter-request:
* @client: a #GstRTSPClient
- * @ctx: a #GstRTSPContext
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
*
* Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
* otherwise an appropriate return code
@@ -395,6 +425,11 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
g_cclosure_marshal_generic,
GST_TYPE_RTSP_STATUS_CODE, 1, GST_TYPE_RTSP_CONTEXT);
+ /**
+ * GstRTSPClient::set-parameter-request:
+ * @client: a #GstRTSPClient
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
+ */
gst_rtsp_client_signals[SIGNAL_SET_PARAMETER_REQUEST] =
g_signal_new ("set-parameter-request", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
@@ -404,7 +439,7 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
/**
* GstRTSPClient::pre-get-parameter-request:
* @client: a #GstRTSPClient
- * @ctx: a #GstRTSPContext
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
*
* Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
* otherwise an appropriate return code
@@ -418,12 +453,22 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
GST_TYPE_RTSP_CONTEXT);
+ /**
+ * GstRTSPClient::get-parameter-request:
+ * @client: a #GstRTSPClient
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
+ */
gst_rtsp_client_signals[SIGNAL_GET_PARAMETER_REQUEST] =
g_signal_new ("get-parameter-request", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
get_parameter_request), NULL, NULL, g_cclosure_marshal_generic,
G_TYPE_NONE, 1, GST_TYPE_RTSP_CONTEXT);
+ /**
+ * GstRTSPClient::handle-response:
+ * @client: a #GstRTSPClient
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
+ */
gst_rtsp_client_signals[SIGNAL_HANDLE_RESPONSE] =
g_signal_new ("handle-response", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
@@ -445,7 +490,7 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
/**
* GstRTSPClient::pre-announce-request:
* @client: a #GstRTSPClient
- * @ctx: a #GstRTSPContext
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
*
* Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
* otherwise an appropriate return code
@@ -459,6 +504,11 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
GST_TYPE_RTSP_CONTEXT);
+ /**
+ * GstRTSPClient::announce-request:
+ * @client: a #GstRTSPClient
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
+ */
gst_rtsp_client_signals[SIGNAL_ANNOUNCE_REQUEST] =
g_signal_new ("announce-request", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass,
announce_request),
@@ -468,7 +518,7 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
/**
* GstRTSPClient::pre-record-request:
* @client: a #GstRTSPClient
- * @ctx: a #GstRTSPContext
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
*
* Returns: a #GstRTSPStatusCode, GST_RTSP_STS_OK in case of success,
* otherwise an appropriate return code
@@ -482,6 +532,11 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
g_cclosure_marshal_generic, GST_TYPE_RTSP_STATUS_CODE, 1,
GST_TYPE_RTSP_CONTEXT);
+ /**
+ * GstRTSPClient::record-request:
+ * @client: a #GstRTSPClient
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
+ */
gst_rtsp_client_signals[SIGNAL_RECORD_REQUEST] =
g_signal_new ("record-request", G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstRTSPClientClass, record_request),
@@ -491,7 +546,7 @@ gst_rtsp_client_class_init (GstRTSPClientClass * klass)
/**
* GstRTSPClient::check-requirements:
* @client: a #GstRTSPClient
- * @ctx: a #GstRTSPContext
+ * @ctx: (type GstRtspServer.RTSPContext): a #GstRTSPContext
* @arr: a NULL-terminated array of strings
*
* Returns: a newly allocated string with comma-separated list of
--
cgit v1.1