Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
ccf6a325b4 | ||
|
ad317e0b92 | ||
|
39e8337b5c | ||
|
4423be1dcf | ||
|
7c51e11227 | ||
|
c50df4fe1a | ||
|
6c120121cc | ||
|
05a7af5c7f | ||
|
3d49d2c07c | ||
|
dd4bd72d3d | ||
|
2b99a0517f | ||
|
02a56a11f7 | ||
|
0fdb3c5c8d |
@ -1 +0,0 @@
|
||||
gstreamer-0.10.22.tar.bz2
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
gstreamer-0.10.25.tar.bz2
|
21
Makefile
21
Makefile
@ -1,21 +0,0 @@
|
||||
# Makefile for source rpm: gstreamer
|
||||
# $Id: Makefile,v 1.1 2004/09/09 05:53:09 cvsdist Exp $
|
||||
NAME := gstreamer
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attempt a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
@ -1,11 +1,8 @@
|
||||
Index: gst-inspect.c
|
||||
===================================================================
|
||||
RCS file: /cvs/gstreamer/gstreamer/tools/gst-inspect.c,v
|
||||
retrieving revision 1.144
|
||||
diff -u -p -u -p -r1.144 gst-inspect.c
|
||||
--- gst-inspect.c 17 Nov 2008 15:48:14 -0000 1.144
|
||||
+++ gst-inspect.c 20 Jan 2009 16:11:05 -0000
|
||||
@@ -1262,9 +1262,219 @@ print_element_info (GstElementFactory *
|
||||
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
|
||||
index a286ce8..7c4ac97 100644
|
||||
--- a/tools/gst-inspect.c
|
||||
+++ b/tools/gst-inspect.c
|
||||
@@ -1270,9 +1270,219 @@ print_element_info (GstElementFactory * factory, gboolean print_names)
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -226,7 +223,20 @@ diff -u -p -u -p -r1.144 gst-inspect.c
|
||||
{
|
||||
GstPadDirection direction;
|
||||
const gchar *type_name;
|
||||
@@ -1325,15 +1535,19 @@ print_plugin_automatic_install_info_code
|
||||
@@ -1297,6 +1507,12 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
|
||||
return;
|
||||
}
|
||||
|
||||
+ if (rpm_format) {
|
||||
+ /* Ignore NONE ranked plugins */
|
||||
+ if (GST_PLUGIN_FEATURE (factory)->rank == GST_RANK_NONE)
|
||||
+ return;
|
||||
+ }
|
||||
+
|
||||
/* 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);
|
||||
@@ -1333,15 +1549,19 @@ 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");
|
||||
@ -250,7 +260,7 @@ diff -u -p -u -p -r1.144 gst-inspect.c
|
||||
{
|
||||
gchar **protocols, **p;
|
||||
|
||||
@@ -1342,11 +1556,17 @@ print_plugin_automatic_install_info_prot
|
||||
@@ -1350,11 +1570,17 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
|
||||
switch (gst_element_factory_get_uri_type (factory)) {
|
||||
case GST_URI_SINK:
|
||||
for (p = protocols; *p != NULL; ++p)
|
||||
@ -270,7 +280,7 @@ diff -u -p -u -p -r1.144 gst-inspect.c
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@@ -1356,7 +1576,7 @@ print_plugin_automatic_install_info_prot
|
||||
@@ -1364,7 +1590,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
|
||||
}
|
||||
|
||||
static void
|
||||
@ -279,7 +289,7 @@ diff -u -p -u -p -r1.144 gst-inspect.c
|
||||
{
|
||||
const gchar *plugin_name;
|
||||
GList *features, *l;
|
||||
@@ -1376,11 +1596,12 @@ print_plugin_automatic_install_info (Gst
|
||||
@@ -1384,11 +1610,12 @@ print_plugin_automatic_install_info (GstPlugin * plugin)
|
||||
if (g_str_equal (plugin_name, feature->plugin_name)) {
|
||||
GstElementFactory *factory;
|
||||
|
||||
@ -295,15 +305,15 @@ diff -u -p -u -p -r1.144 gst-inspect.c
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1394,6 +1615,7 @@ main (int argc, char *argv[])
|
||||
@@ -1402,6 +1629,7 @@ main (int argc, char *argv[])
|
||||
gboolean print_all = FALSE;
|
||||
gboolean plugin_name = FALSE;
|
||||
gboolean print_aii = FALSE;
|
||||
+ gboolean print_aii_rpm = FALSE;
|
||||
gboolean uri_handlers = FALSE;
|
||||
#ifndef GST_DISABLE_OPTION_PARSING
|
||||
GOptionEntry options[] = {
|
||||
{"print-all", 'a', 0, G_OPTION_ARG_NONE, &print_all,
|
||||
@@ -1403,6 +1625,9 @@ main (int argc, char *argv[])
|
||||
@@ -1412,6 +1640,9 @@ main (int argc, char *argv[])
|
||||
"provides.\n "
|
||||
"Useful in connection with external automatic plugin "
|
||||
"installation mechanisms"), NULL},
|
||||
@ -313,7 +323,7 @@ diff -u -p -u -p -r1.144 gst-inspect.c
|
||||
{"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
|
||||
N_("List the plugin contents"), NULL},
|
||||
{"uri-handlers", 'u', 0, G_OPTION_ARG_NONE, &uri_handlers,
|
||||
@@ -1478,7 +1703,7 @@ main (int argc, char *argv[])
|
||||
@@ -1492,7 +1723,7 @@ main (int argc, char *argv[])
|
||||
/* if there is such a plugin, print out info */
|
||||
if (plugin) {
|
||||
if (print_aii) {
|
||||
@ -322,7 +332,7 @@ diff -u -p -u -p -r1.144 gst-inspect.c
|
||||
} else {
|
||||
print_plugin_info (plugin);
|
||||
print_plugin_features (plugin);
|
||||
@@ -1491,13 +1716,16 @@ main (int argc, char *argv[])
|
||||
@@ -1505,13 +1736,16 @@ main (int argc, char *argv[])
|
||||
|
||||
if (plugin) {
|
||||
if (print_aii) {
|
||||
|
@ -5,8 +5,8 @@
|
||||
%define _libxml2 2.4.0
|
||||
|
||||
Name: %{gstreamer}
|
||||
Version: 0.10.22
|
||||
Release: 4%{?dist}
|
||||
Version: 0.10.25
|
||||
Release: 1%{?dist}
|
||||
Summary: GStreamer streaming media framework runtime
|
||||
|
||||
Group: Applications/Multimedia
|
||||
@ -101,9 +101,7 @@ with different major/minor versions of GStreamer.
|
||||
%prep
|
||||
%setup -q -n gstreamer-%{version}
|
||||
|
||||
pushd tools/
|
||||
%patch1 -p0 -b .rpm-provides
|
||||
popd
|
||||
%patch1 -p1 -b .rpm-provides
|
||||
|
||||
%build
|
||||
# 0.10.0: manuals do not build due to an openjade error; disable for now
|
||||
@ -213,6 +211,27 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_sysconfdir}/rpm/macros.gstreamer
|
||||
|
||||
%changelog
|
||||
* Mon Oct 05 2009 Bastien Nocera <bnocera@redhat.com> 0.10.25-1
|
||||
- Update to 0.10.25
|
||||
|
||||
* Wed Aug 05 2009 Bastien Nocera <bnocera@redhat.com> 0.10.24-1
|
||||
- Update to 0.10.24
|
||||
|
||||
* Tue Jul 28 2009 Bastien Nocera <bnocera@redhat.com> 0.10.23.4-1
|
||||
- Update to 0.10.23.4
|
||||
|
||||
* Tue Jul 21 2009 Bastien Nocera <bnocera@redhat.com> 0.10.23.3-1
|
||||
- Update to 0.10.23.3
|
||||
|
||||
* Thu Jul 16 2009 Bastien Nocera <bnocera@redhat.com> 0.10.23.2-1
|
||||
- Update to 0.10.23.2
|
||||
|
||||
* Tue Jun 16 2009 Bastien Nocera <bnocera@redhat.com> 0.10.23-2
|
||||
- Update gst-inspect patch to ignore rank none plugins
|
||||
|
||||
* Mon May 11 2009 Bastien Nocera <bnocera@redhat.com> 0.10.23-1
|
||||
- Update to 0.10.23
|
||||
|
||||
* Thu Feb 26 2009 Warren Togami <wtogami@redhat.com> - 0.10.22-4
|
||||
- Move req on which and pkgconfig to gstreamer-tools
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user