Update to 1.13.1

This commit is contained in:
Wim Taymans 2018-02-22 09:11:58 +01:00
parent d376435fb5
commit 723074f9a1
4 changed files with 28 additions and 24 deletions

1
.gitignore vendored
View File

@ -55,3 +55,4 @@
/gstreamer-1.12.2.tar.xz
/gstreamer-1.12.3.tar.xz
/gstreamer-1.12.4.tar.xz
/gstreamer-1.13.1.tar.xz

View File

@ -1,21 +1,21 @@
From b00e7fff5190e424a03d3827312f63028b684faf Mon Sep 17 00:00:00 2001
From 7c0fb2de2921d15493d7353ae269140b17e8d88e Mon Sep 17 00:00:00 2001
From: Wim Taymans <wtaymans@redhat.com>
Date: Mon, 4 Jan 2016 11:39:33 +0100
Subject: [PATCH] inspect: Add RPM output format
---
tools/gst-inspect.c | 276 +++++++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 261 insertions(+), 15 deletions(-)
tools/gst-inspect.c | 277 +++++++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 262 insertions(+), 15 deletions(-)
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
index e420e4c..1096e8c 100644
index 89a1fab92..6d2369814 100644
--- a/tools/gst-inspect.c
+++ b/tools/gst-inspect.c
@@ -1335,9 +1335,225 @@ print_element_info (GstElementFactory * factory, gboolean print_names)
return 0;
@@ -1524,7 +1524,224 @@ print_tracer_info (GstPluginFeature * feature, gboolean print_names)
}
+static void
static void
-print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
+print_gst_structure_append_field (GList * strings, const char *field)
+{
+ GList *s;
@ -26,9 +26,8 @@ index e420e4c..1096e8c 100644
+ g_string_append (s->data, field);
+ }
+}
static void
-print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
+
+static void
+print_gst_structure_append_field_index (GList * strings, const char *field,
+ guint num_items, guint offset)
+{
@ -238,7 +237,7 @@ index e420e4c..1096e8c 100644
{
GstPadDirection direction;
const gchar *type_name;
@@ -1363,6 +1579,13 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
@@ -1550,6 +1767,13 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
return;
}
@ -252,7 +251,7 @@ index e420e4c..1096e8c 100644
/* decoder/demuxer sink pads should always be static and there should only
* be one, the same applies to encoders/muxers and source pads */
static_templates = gst_element_factory_get_static_pad_templates (factory);
@@ -1399,15 +1622,20 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
@@ -1586,15 +1810,20 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
gst_structure_remove_field (s, "rate");
gst_structure_remove_field (s, "depth");
gst_structure_remove_field (s, "clock-rate");
@ -277,7 +276,7 @@ index e420e4c..1096e8c 100644
{
const gchar *const *protocols;
@@ -1416,13 +1644,19 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
@@ -1603,13 +1832,19 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
switch (gst_element_factory_get_uri_type (factory)) {
case GST_URI_SINK:
while (*protocols != NULL) {
@ -299,7 +298,7 @@ index e420e4c..1096e8c 100644
++protocols;
}
break;
@@ -1433,7 +1667,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
@@ -1620,7 +1855,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
}
static void
@ -308,7 +307,7 @@ index e420e4c..1096e8c 100644
{
GList *features, *l;
@@ -1452,11 +1686,15 @@ print_plugin_automatic_install_info (GstPlugin * plugin)
@@ -1639,11 +1874,15 @@ print_plugin_automatic_install_info (GstPlugin * plugin)
if (feature_plugin == plugin) {
GstElementFactory *factory;
@ -327,7 +326,7 @@ index e420e4c..1096e8c 100644
}
if (feature_plugin)
gst_object_unref (feature_plugin);
@@ -1478,7 +1716,7 @@ print_all_plugin_automatic_install_info (void)
@@ -1665,7 +1904,7 @@ print_all_plugin_automatic_install_info (void)
plugin = (GstPlugin *) (plugins->data);
plugins = g_list_next (plugins);
@ -336,7 +335,7 @@ index e420e4c..1096e8c 100644
}
gst_plugin_list_free (orig_plugins);
}
@@ -1490,6 +1728,7 @@ main (int argc, char *argv[])
@@ -1677,6 +1916,7 @@ main (int argc, char *argv[])
gboolean do_print_blacklist = FALSE;
gboolean plugin_name = FALSE;
gboolean print_aii = FALSE;
@ -344,7 +343,7 @@ index e420e4c..1096e8c 100644
gboolean uri_handlers = FALSE;
gboolean check_exists = FALSE;
gchar *min_version = NULL;
@@ -1508,6 +1747,9 @@ main (int argc, char *argv[])
@@ -1695,6 +1935,9 @@ main (int argc, char *argv[])
"or all plugins provide.\n "
"Useful in connection with external automatic plugin "
"installation mechanisms"), NULL},
@ -354,7 +353,7 @@ index e420e4c..1096e8c 100644
{"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
N_("List the plugin contents"), NULL},
{"types", 't', 0, G_OPTION_ARG_STRING, &types,
@@ -1650,7 +1892,7 @@ main (int argc, char *argv[])
@@ -1825,7 +2068,7 @@ main (int argc, char *argv[])
/* if there is such a plugin, print out info */
if (plugin) {
if (print_aii) {
@ -363,7 +362,7 @@ index e420e4c..1096e8c 100644
} else {
print_plugin_info (plugin);
print_plugin_features (plugin);
@@ -1663,13 +1905,17 @@ main (int argc, char *argv[])
@@ -1838,13 +2081,17 @@ main (int argc, char *argv[])
if (plugin) {
if (print_aii) {
@ -384,5 +383,5 @@ index e420e4c..1096e8c 100644
return -1;
}
--
2.9.3
2.14.3

View File

@ -9,8 +9,8 @@
%global _gobject_introspection 1.31.1
Name: gstreamer1
Version: 1.12.4
Release: 2%{?gitcommit:.git%{shortcommit}}%{?dist}
Version: 1.13.1
Release: 1%{?gitcommit:.git%{shortcommit}}%{?dist}
Summary: GStreamer streaming media framework runtime
License: LGPLv2+
@ -213,6 +213,10 @@ install -m0644 -D %{SOURCE2} $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/gstreamer
%changelog
* Thu Feb 22 2018 Wim Taymans <wtaymans@redhat.com> - 1.13.1-1
- Update to 1.13.1
- Update rpm patch
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild

View File

@ -1 +1 @@
SHA512 (gstreamer-1.12.4.tar.xz) = 849aa4ddf8ef465f2915e05d36fc0c31c2e31ae28be2fa38f8069a64a91b7347020fac5b881b7f3ee54c2198c3596138d49f27b09f258303834164a5d68b38a2
SHA512 (gstreamer-1.13.1.tar.xz) = db90fa31be09f7d8fd02447ad45e2d2de7b00785a55a920531986d5103f0ee5ead67f2374fd133b73f22228cde3f6ab15668f5ebb28dbe63acdedabbc272dae4