Update to 1.15.1
This commit is contained in:
parent
b69f767656
commit
cc3de3f568
1
.gitignore
vendored
1
.gitignore
vendored
@ -63,3 +63,4 @@
|
|||||||
/gstreamer-1.14.2.tar.xz
|
/gstreamer-1.14.2.tar.xz
|
||||||
/gstreamer-1.14.3.tar.xz
|
/gstreamer-1.14.3.tar.xz
|
||||||
/gstreamer-1.14.4.tar.xz
|
/gstreamer-1.14.4.tar.xz
|
||||||
|
/gstreamer-1.15.1.tar.xz
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
From 7c0fb2de2921d15493d7353ae269140b17e8d88e Mon Sep 17 00:00:00 2001
|
From 42d9fc25d4c277413c6b42a8e2f2fe704a61fe9a Mon Sep 17 00:00:00 2001
|
||||||
From: Wim Taymans <wtaymans@redhat.com>
|
From: Wim Taymans <wtaymans@redhat.com>
|
||||||
Date: Mon, 4 Jan 2016 11:39:33 +0100
|
Date: Mon, 4 Jan 2016 11:39:33 +0100
|
||||||
Subject: [PATCH] inspect: Add RPM output format
|
Subject: [PATCH] inspect: Add RPM output format
|
||||||
|
|
||||||
---
|
---
|
||||||
tools/gst-inspect.c | 277 +++++++++++++++++++++++++++++++++++++++++++++++++---
|
tools/gst-inspect.c | 277 +++++++++++++++++++++++++++++++++++++++++---
|
||||||
1 file changed, 262 insertions(+), 15 deletions(-)
|
1 file changed, 262 insertions(+), 15 deletions(-)
|
||||||
|
|
||||||
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
|
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
|
||||||
index 89a1fab92..6d2369814 100644
|
index 7c613501f..d1127a209 100644
|
||||||
--- a/tools/gst-inspect.c
|
--- a/tools/gst-inspect.c
|
||||||
+++ b/tools/gst-inspect.c
|
+++ b/tools/gst-inspect.c
|
||||||
@@ -1524,7 +1524,224 @@ print_tracer_info (GstPluginFeature * feature, gboolean print_names)
|
@@ -1718,7 +1718,224 @@ print_tracer_info (GstPluginFeature * feature, gboolean print_names)
|
||||||
}
|
* is meant for machines, not humans.
|
||||||
|
*/
|
||||||
static void
|
static void
|
||||||
-print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
|
-print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
|
||||||
+print_gst_structure_append_field (GList * strings, const char *field)
|
+print_gst_structure_append_field (GList * strings, const char *field)
|
||||||
@ -237,7 +237,7 @@ index 89a1fab92..6d2369814 100644
|
|||||||
{
|
{
|
||||||
GstPadDirection direction;
|
GstPadDirection direction;
|
||||||
const gchar *type_name;
|
const gchar *type_name;
|
||||||
@@ -1550,6 +1767,13 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
|
@@ -1744,6 +1961,13 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -251,7 +251,7 @@ index 89a1fab92..6d2369814 100644
|
|||||||
/* decoder/demuxer sink pads should always be static and there should only
|
/* decoder/demuxer sink pads should always be static and there should only
|
||||||
* be one, the same applies to encoders/muxers and source pads */
|
* be one, the same applies to encoders/muxers and source pads */
|
||||||
static_templates = gst_element_factory_get_static_pad_templates (factory);
|
static_templates = gst_element_factory_get_static_pad_templates (factory);
|
||||||
@@ -1586,15 +1810,20 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
|
@@ -1780,15 +2004,20 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
|
||||||
gst_structure_remove_field (s, "rate");
|
gst_structure_remove_field (s, "rate");
|
||||||
gst_structure_remove_field (s, "depth");
|
gst_structure_remove_field (s, "depth");
|
||||||
gst_structure_remove_field (s, "clock-rate");
|
gst_structure_remove_field (s, "clock-rate");
|
||||||
@ -276,7 +276,7 @@ index 89a1fab92..6d2369814 100644
|
|||||||
{
|
{
|
||||||
const gchar *const *protocols;
|
const gchar *const *protocols;
|
||||||
|
|
||||||
@@ -1603,13 +1832,19 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
|
@@ -1797,13 +2026,19 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
|
||||||
switch (gst_element_factory_get_uri_type (factory)) {
|
switch (gst_element_factory_get_uri_type (factory)) {
|
||||||
case GST_URI_SINK:
|
case GST_URI_SINK:
|
||||||
while (*protocols != NULL) {
|
while (*protocols != NULL) {
|
||||||
@ -298,7 +298,7 @@ index 89a1fab92..6d2369814 100644
|
|||||||
++protocols;
|
++protocols;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -1620,7 +1855,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
|
@@ -1814,7 +2049,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -307,7 +307,7 @@ index 89a1fab92..6d2369814 100644
|
|||||||
{
|
{
|
||||||
GList *features, *l;
|
GList *features, *l;
|
||||||
|
|
||||||
@@ -1639,11 +1874,15 @@ print_plugin_automatic_install_info (GstPlugin * plugin)
|
@@ -1833,11 +2068,15 @@ print_plugin_automatic_install_info (GstPlugin * plugin)
|
||||||
if (feature_plugin == plugin) {
|
if (feature_plugin == plugin) {
|
||||||
GstElementFactory *factory;
|
GstElementFactory *factory;
|
||||||
|
|
||||||
@ -326,7 +326,7 @@ index 89a1fab92..6d2369814 100644
|
|||||||
}
|
}
|
||||||
if (feature_plugin)
|
if (feature_plugin)
|
||||||
gst_object_unref (feature_plugin);
|
gst_object_unref (feature_plugin);
|
||||||
@@ -1665,7 +1904,7 @@ print_all_plugin_automatic_install_info (void)
|
@@ -1859,7 +2098,7 @@ print_all_plugin_automatic_install_info (void)
|
||||||
plugin = (GstPlugin *) (plugins->data);
|
plugin = (GstPlugin *) (plugins->data);
|
||||||
plugins = g_list_next (plugins);
|
plugins = g_list_next (plugins);
|
||||||
|
|
||||||
@ -335,7 +335,7 @@ index 89a1fab92..6d2369814 100644
|
|||||||
}
|
}
|
||||||
gst_plugin_list_free (orig_plugins);
|
gst_plugin_list_free (orig_plugins);
|
||||||
}
|
}
|
||||||
@@ -1677,6 +1916,7 @@ main (int argc, char *argv[])
|
@@ -1949,6 +2188,7 @@ main (int argc, char *argv[])
|
||||||
gboolean do_print_blacklist = FALSE;
|
gboolean do_print_blacklist = FALSE;
|
||||||
gboolean plugin_name = FALSE;
|
gboolean plugin_name = FALSE;
|
||||||
gboolean print_aii = FALSE;
|
gboolean print_aii = FALSE;
|
||||||
@ -343,7 +343,7 @@ index 89a1fab92..6d2369814 100644
|
|||||||
gboolean uri_handlers = FALSE;
|
gboolean uri_handlers = FALSE;
|
||||||
gboolean check_exists = FALSE;
|
gboolean check_exists = FALSE;
|
||||||
gchar *min_version = NULL;
|
gchar *min_version = NULL;
|
||||||
@@ -1695,6 +1935,9 @@ main (int argc, char *argv[])
|
@@ -1968,6 +2208,9 @@ main (int argc, char *argv[])
|
||||||
"or all plugins provide.\n "
|
"or all plugins provide.\n "
|
||||||
"Useful in connection with external automatic plugin "
|
"Useful in connection with external automatic plugin "
|
||||||
"installation mechanisms"), NULL},
|
"installation mechanisms"), NULL},
|
||||||
@ -353,7 +353,7 @@ index 89a1fab92..6d2369814 100644
|
|||||||
{"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
|
{"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
|
||||||
N_("List the plugin contents"), NULL},
|
N_("List the plugin contents"), NULL},
|
||||||
{"types", 't', 0, G_OPTION_ARG_STRING, &types,
|
{"types", 't', 0, G_OPTION_ARG_STRING, &types,
|
||||||
@@ -1825,7 +2068,7 @@ main (int argc, char *argv[])
|
@@ -2124,7 +2367,7 @@ main (int argc, char *argv[])
|
||||||
/* if there is such a plugin, print out info */
|
/* if there is such a plugin, print out info */
|
||||||
if (plugin) {
|
if (plugin) {
|
||||||
if (print_aii) {
|
if (print_aii) {
|
||||||
@ -362,7 +362,7 @@ index 89a1fab92..6d2369814 100644
|
|||||||
} else {
|
} else {
|
||||||
print_plugin_info (plugin);
|
print_plugin_info (plugin);
|
||||||
print_plugin_features (plugin);
|
print_plugin_features (plugin);
|
||||||
@@ -1838,13 +2081,17 @@ main (int argc, char *argv[])
|
@@ -2137,13 +2380,17 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
if (plugin) {
|
if (plugin) {
|
||||||
if (print_aii) {
|
if (print_aii) {
|
||||||
@ -383,5 +383,5 @@ index 89a1fab92..6d2369814 100644
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
--
|
--
|
||||||
2.14.3
|
2.19.2
|
||||||
|
|
||||||
|
@ -7,9 +7,10 @@
|
|||||||
%global _glib2 2.32.0
|
%global _glib2 2.32.0
|
||||||
%global _libxml2 2.4.0
|
%global _libxml2 2.4.0
|
||||||
%global _gobject_introspection 1.31.1
|
%global _gobject_introspection 1.31.1
|
||||||
|
%global __python %{__python3}
|
||||||
|
|
||||||
Name: gstreamer1
|
Name: gstreamer1
|
||||||
Version: 1.14.4
|
Version: 1.15.1
|
||||||
Release: 1%{?gitcommit:.git%{shortcommit}}%{?dist}
|
Release: 1%{?gitcommit:.git%{shortcommit}}%{?dist}
|
||||||
Summary: GStreamer streaming media framework runtime
|
Summary: GStreamer streaming media framework runtime
|
||||||
|
|
||||||
@ -43,7 +44,7 @@ BuildRequires: automake gettext-devel libtool
|
|||||||
BuildRequires: chrpath
|
BuildRequires: chrpath
|
||||||
|
|
||||||
### documentation requirements
|
### documentation requirements
|
||||||
BuildRequires: python2
|
BuildRequires: python3
|
||||||
BuildRequires: openjade
|
BuildRequires: openjade
|
||||||
BuildRequires: texlive-jadetex
|
BuildRequires: texlive-jadetex
|
||||||
BuildRequires: libxslt
|
BuildRequires: libxslt
|
||||||
@ -188,6 +189,10 @@ install -m0644 -D %{SOURCE2} $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/gstreamer
|
|||||||
|
|
||||||
%{_datadir}/aclocal/gst-element-check-%{majorminor}.m4
|
%{_datadir}/aclocal/gst-element-check-%{majorminor}.m4
|
||||||
|
|
||||||
|
%dir %{_datadir}/gstreamer-%{majorminor}/gdb/
|
||||||
|
%{_datadir}/gstreamer-%{majorminor}/gdb/
|
||||||
|
%{_datadir}/gdb/auto-load/
|
||||||
|
|
||||||
%{_libdir}/pkgconfig/gstreamer-%{majorminor}.pc
|
%{_libdir}/pkgconfig/gstreamer-%{majorminor}.pc
|
||||||
%{_libdir}/pkgconfig/gstreamer-base-%{majorminor}.pc
|
%{_libdir}/pkgconfig/gstreamer-base-%{majorminor}.pc
|
||||||
%{_libdir}/pkgconfig/gstreamer-controller-%{majorminor}.pc
|
%{_libdir}/pkgconfig/gstreamer-controller-%{majorminor}.pc
|
||||||
@ -201,6 +206,9 @@ install -m0644 -D %{SOURCE2} $RPM_BUILD_ROOT%{_rpmconfigdir}/fileattrs/gstreamer
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jan 25 2019 Wim Taymans <wtaymans@redhat.com> - 1.15.1-1
|
||||||
|
- Update to 1.15.1
|
||||||
|
|
||||||
* Wed Oct 03 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.4-1
|
* Wed Oct 03 2018 Wim Taymans <wtaymans@redhat.com> - 1.14.4-1
|
||||||
- Update to 1.14.4
|
- Update to 1.14.4
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (gstreamer-1.14.4.tar.xz) = 7ece9f01d40df7c8358482eac94536c5e15261e9568962008e2029e1ee1b3ebb220d2e4802ed1c81c40d897576fafe52234065e273724bfb4df3a3ddf2711abe
|
SHA512 (gstreamer-1.15.1.tar.xz) = de6f34560371cf4ccb7a24b30c276509e9d0f6bf196ec07f3a64f45c92865c1eddaaf222277aa8846fe900d8b158e0cdeee47006139bad039b12e42ce814fb91
|
||||||
|
Loading…
Reference in New Issue
Block a user