[gstreamer-plugins-base: 38/216] - Add patch to fix playback of short Ogg Vorbis files (#328851)
by Dominik Mierzejewski
commit 3c9eb1206e79b10ed64a65051e830d6f6fb09e8f
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Thu Oct 18 15:16:15 2007 +0000
- Add patch to fix playback of short Ogg Vorbis files (#328851)
gstreamer-plugins-base-0.10.14-short-ogg-fix.patch | 105 +++++++++++++++++++++
gstreamer-plugins-base.spec | 8 +-
2 files changed, 112 insertions(+), 1 deletion(-)
---
diff --git a/gstreamer-plugins-base-0.10.14-short-ogg-fix.patch b/gstreamer-plugins-base-0.10.14-short-ogg-fix.patch
new file mode 100644
index 0000000..b377cac
--- /dev/null
+++ b/gstreamer-plugins-base-0.10.14-short-ogg-fix.patch
@@ -0,0 +1,105 @@
+--- ext/ogg/gstoggdemux.c 2007/06/23 14:44:07 1.180
++++ ext/ogg/gstoggdemux.c 2007/08/21 11:42:39 1.181
+@@ -2396,6 +2396,10 @@
+ if (pad->serialno == serial) {
+ known_serial = TRUE;
+
++ /* submit the page now, this will fill in the start_time when the
++ * internal decoder finds it */
++ gst_ogg_pad_submit_page (pad, &op);
++
+ if (!pad->is_skeleton && pad->start_time == -1 && ogg_page_eos (&op)) {
+ /* got EOS on a pad before we could find its start_time.
+ * We have no chance of finding a start_time for every pad so
+@@ -2404,11 +2408,11 @@
+ done = TRUE;
+ break;
+ }
+- gst_ogg_pad_submit_page (pad, &op);
+ }
+ /* the timestamp will be filled in when we submit the pages */
+ if (!pad->is_skeleton)
+ done &= (pad->start_time != GST_CLOCK_TIME_NONE);
++
+ GST_LOG_OBJECT (ogg, "done %08x now %d", pad->serialno, done);
+ }
+
+@@ -2577,7 +2581,7 @@
+ gboolean res = TRUE;
+
+ chain->total_time = GST_CLOCK_TIME_NONE;
+- chain->segment_start = G_MAXINT64;
++ chain->segment_start = G_MAXUINT64;
+
+ GST_DEBUG_OBJECT (ogg, "trying to collect chain info");
+
+@@ -2595,7 +2599,7 @@
+ }
+
+ if (chain->segment_stop != GST_CLOCK_TIME_NONE
+- && chain->segment_start != G_MAXINT64)
++ && chain->segment_start != G_MAXUINT64)
+ chain->total_time = chain->segment_stop - chain->segment_start;
+
+ GST_DEBUG_OBJECT (ogg, "return %d", res);
+--- ext/vorbis/vorbisdec.c 2007/07/26 10:00:37 1.127
++++ ext/vorbis/vorbisdec.c 2007/08/21 12:08:43 1.128
+@@ -806,7 +806,12 @@
+ vorbis_dec_push_forward (GstVorbisDec * dec, GstBuffer * buf)
+ {
+ GstFlowReturn result;
+- gint64 outoffset = GST_BUFFER_OFFSET (buf);
++ gint64 outoffset, origoffset;
++
++ origoffset = GST_BUFFER_OFFSET (buf);
++
++again:
++ outoffset = origoffset;
+
+ if (outoffset == -1) {
+ dec->queued = g_list_append (dec->queued, buf);
+@@ -814,7 +819,7 @@
+ result = GST_FLOW_OK;
+ } else {
+ if (G_UNLIKELY (dec->queued)) {
+- gint64 size;
++ guint size;
+ GstClockTime ts;
+ GList *walk;
+
+@@ -827,9 +832,20 @@
+ for (walk = g_list_last (dec->queued); walk;
+ walk = g_list_previous (walk)) {
+ GstBuffer *buffer = GST_BUFFER (walk->data);
++ guint offset;
+
+- outoffset -=
+- GST_BUFFER_SIZE (buffer) / (sizeof (float) * dec->vi.channels);
++ offset = GST_BUFFER_SIZE (buffer) / (sizeof (float) * dec->vi.channels);
++
++ if (outoffset >= offset)
++ outoffset -= offset;
++ else {
++ /* we can't go below 0, this means this first offset was at the eos
++ * page and we need to clip to it instead */
++ GST_DEBUG_OBJECT (dec, "clipping %" G_GINT64_FORMAT,
++ offset - outoffset);
++ origoffset += (offset - outoffset);
++ goto again;
++ }
+
+ GST_BUFFER_OFFSET (buffer) = outoffset;
+ GST_BUFFER_TIMESTAMP (buffer) =
+@@ -837,9 +853,9 @@
+ GST_BUFFER_DURATION (buffer) = GST_CLOCK_DIFF (GST_BUFFER_TIMESTAMP
+ (buffer), ts);
+ ts = GST_BUFFER_TIMESTAMP (buffer);
+- GST_DEBUG_OBJECT (dec, "patch buffer %" G_GUINT64_FORMAT
+- ", offset %" G_GUINT64_FORMAT ", timestamp %" GST_TIME_FORMAT
+- ", duration %" GST_TIME_FORMAT, size, outoffset,
++ GST_DEBUG_OBJECT (dec, "patch buffer %u, offset %" G_GUINT64_FORMAT
++ ", timestamp %" GST_TIME_FORMAT ", duration %" GST_TIME_FORMAT,
++ size, outoffset,
+ GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buffer)),
+ GST_TIME_ARGS (GST_BUFFER_DURATION (buffer)));
+ size--;
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 9c36e57..49ca8d9 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,7 +5,7 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.14
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -13,6 +13,8 @@ License: LGPL
URL: http://gstreamer.freedesktop.org/
Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-%{...
Patch0: gstreamer-plugins-base-0.10.14-unsupported-codec.patch
+# https://bugzilla.redhat.com/show_bug.cgi?id=328851
+Patch1: gstreamer-plugins-base-0.10.14-short-ogg-fix.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: %{gstreamer} >= %{_gst}
@@ -54,6 +56,7 @@ This package contains a set of well-maintained base plug-ins.
pushd gst/playback/
%patch0 -p0
popd
+%patch1 -p0
%build
%configure \
@@ -239,6 +242,9 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Thu Oct 18 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.14-6
+- Add patch to fix playback of short Ogg Vorbis files (#328851)
+
* Wed Aug 29 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.14-5
- Add patch to avoid critical warning when getting information about
missing codecs
4 years, 7 months
[gstreamer-plugins-base: 37/216] makefile update to properly grab makefile.common
by Dominik Mierzejewski
commit b5836b7dd5c216f60b0ac96cf663499f16286afd
Author: Bill Nottingham <notting(a)fedoraproject.org>
Date: Mon Oct 15 18:50:48 2007 +0000
makefile update to properly grab makefile.common
Makefile | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
---
diff --git a/Makefile b/Makefile
index ba8d9a2..36143af 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,21 @@
# Makefile for source rpm: gstreamer-plugins-base
-# $Id$
+# $Id: Makefile,v 1.1 2006/01/04 20:10:29 wtogami Exp $
NAME := gstreamer-plugins-base
SPECFILE = $(firstword $(wildcard *.spec))
-include ../common/Makefile.common
+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)
4 years, 7 months
[gstreamer-plugins-base: 36/216] - Add patch to avoid critical warning when getting information about missing codecs - Up liboil
by Dominik Mierzejewski
commit 5365fec309f3455b426cbdad3cef58f2da85fd70
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Wed Aug 29 13:03:09 2007 +0000
- Add patch to avoid critical warning when getting information about
missing codecs
- Up liboil requirement
gst-plugins-base-0.10.9-docs.patch | 15 ---------------
gstreamer-plugins-base-0.10.14-unsupported-codec.patch | 11 +++++++++++
gstreamer-plugins-base.spec | 16 +++++++++++++---
3 files changed, 24 insertions(+), 18 deletions(-)
---
diff --git a/gstreamer-plugins-base-0.10.14-unsupported-codec.patch b/gstreamer-plugins-base-0.10.14-unsupported-codec.patch
new file mode 100644
index 0000000..a9ab946
--- /dev/null
+++ b/gstreamer-plugins-base-0.10.14-unsupported-codec.patch
@@ -0,0 +1,11 @@
+--- gstdecodebin.c 2007/06/23 14:44:07 1.98
++++ gstdecodebin.c 2007/08/27 11:59:56 1.99
+@@ -749,7 +749,7 @@
+ GList *to_try;
+
+ /* if the caps has many types, we need to delay */
+- if (gst_caps_get_size (caps) != 1)
++ if (!gst_caps_is_fixed (caps))
+ goto many_types;
+
+ /* continue plugging, first find all compatible elements */
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 2242e60..9c36e57 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,17 +5,18 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.14
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
License: LGPL
URL: http://gstreamer.freedesktop.org/
-Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-%{...
+Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-%{...
+Patch0: gstreamer-plugins-base-0.10.14-unsupported-codec.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: %{gstreamer} >= %{_gst}
-Requires: liboil >= 0.3.12-7
+Requires: liboil >= 0.3.12-9
BuildRequires: %{gstreamer}-devel >= %{_gst}
BuildRequires: gettext
@@ -50,6 +51,10 @@ This package contains a set of well-maintained base plug-ins.
%prep
%setup -q -n gst-plugins-base-%{version}
+pushd gst/playback/
+%patch0 -p0
+popd
+
%build
%configure \
--with-package-name='Fedora Core gstreamer-plugins-base package' \
@@ -234,6 +239,11 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Wed Aug 29 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.14-5
+- Add patch to avoid critical warning when getting information about
+ missing codecs
+- Up liboil requirement
+
* Tue Aug 28 2007 Adam Jackson <ajax(a)redhat.com> 0.10.14-4
- BuildReq on libvisual and add the plugin. (#253491)
4 years, 7 months
[gstreamer-plugins-base: 35/216] - BuildReq on libvisual and add the plugin. (#253491)
by Dominik Mierzejewski
commit e4d64c45377bfabca05d1a13fa4ecc141481d52e
Author: Adam Jackson <ajax(a)fedoraproject.org>
Date: Tue Aug 28 16:55:18 2007 +0000
- BuildReq on libvisual and add the plugin. (#253491)
gstreamer-plugins-base.spec | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
---
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index b134c85..2242e60 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,7 +5,7 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.14
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -30,6 +30,7 @@ BuildRequires: alsa-lib-devel
BuildRequires: pango-devel
BuildRequires: libXv-devel
BuildRequires: cdparanoia-devel
+BuildRequires: libvisual-devel
Obsoletes: gstreamer-plugins
# documentation
@@ -126,6 +127,7 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/gstreamer-%{majorminor}/libgstalsa.so
%{_libdir}/gstreamer-%{majorminor}/libgstcdparanoia.so
%{_libdir}/gstreamer-%{majorminor}/libgstgnomevfs.so
+%{_libdir}/gstreamer-%{majorminor}/libgstlibvisual.so
%{_libdir}/gstreamer-%{majorminor}/libgstogg.so
%{_libdir}/gstreamer-%{majorminor}/libgstpango.so
%{_libdir}/gstreamer-%{majorminor}/libgsttheora.so
@@ -232,6 +234,9 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Tue Aug 28 2007 Adam Jackson <ajax(a)redhat.com> 0.10.14-4
+- BuildReq on libvisual and add the plugin. (#253491)
+
* Wed Aug 15 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.14-3
- Up requirement for liboil for PPC machines (#252179)
4 years, 7 months
[gstreamer-plugins-base: 34/216] - Up requirement for liboil for PPC machines (#252179)
by Dominik Mierzejewski
commit 0c6890d77d29c44be5e5895be6fb82ad620d2d1c
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Wed Aug 15 09:23:23 2007 +0000
- Up requirement for liboil for PPC machines (#252179)
gstreamer-plugins-base.spec | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 1afd767..b134c85 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,7 +5,7 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.14
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -15,6 +15,7 @@ Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugin
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: %{gstreamer} >= %{_gst}
+Requires: liboil >= 0.3.12-7
BuildRequires: %{gstreamer}-devel >= %{_gst}
BuildRequires: gettext
@@ -231,7 +232,10 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
-* Sat Aug 04 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.14-1
+* Wed Aug 15 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.14-3
+- Up requirement for liboil for PPC machines (#252179)
+
+* Sat Aug 04 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.14-2
- Update to 0.10.14
- Add RTSP and SDP helper libraries
4 years, 7 months
[gstreamer-plugins-base: 33/216] Add RTSP and SDP helper libraries
by Dominik Mierzejewski
commit 4ca6053c0431a4de1d6b2543d98f14286431ac79
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Sat Aug 4 13:16:22 2007 +0000
Add RTSP and SDP helper libraries
gstreamer-plugins-base.spec | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
---
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 81953cf..1afd767 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -96,6 +96,8 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/libgstrtp-%{majorminor}.so.*
%{_libdir}/libgstvideo-%{majorminor}.so.*
%{_libdir}/libgstpbutils-%{majorminor}.so.*
+%{_libdir}/libgstrtsp-%{majorminor}.so.*
+%{_libdir}/libgstsdp-%{majorminor}.so.*
# base plugins without external dependencies
%{_libdir}/gstreamer-%{majorminor}/libgstadder.so
@@ -189,6 +191,19 @@ GStreamer Base Plugins library development and header files.
%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstbasertppayload.h
%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstrtcpbuffer.h
%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstrtpbuffer.h
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/rtsp
+%{_includedir}/gstreamer-%{majorminor}/gst/rtsp/gstrtsp-enumtypes.h
+%{_includedir}/gstreamer-%{majorminor}/gst/rtsp/gstrtspbase64.h
+%{_includedir}/gstreamer-%{majorminor}/gst/rtsp/gstrtspconnection.h
+%{_includedir}/gstreamer-%{majorminor}/gst/rtsp/gstrtspdefs.h
+%{_includedir}/gstreamer-%{majorminor}/gst/rtsp/gstrtspextension.h
+%{_includedir}/gstreamer-%{majorminor}/gst/rtsp/gstrtspmessage.h
+%{_includedir}/gstreamer-%{majorminor}/gst/rtsp/gstrtsprange.h
+%{_includedir}/gstreamer-%{majorminor}/gst/rtsp/gstrtsptransport.h
+%{_includedir}/gstreamer-%{majorminor}/gst/rtsp/gstrtspurl.h
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/sdp/
+%{_includedir}/gstreamer-%{majorminor}/gst/sdp/gstsdp.h
+%{_includedir}/gstreamer-%{majorminor}/gst/sdp/gstsdpmessage.h
%dir %{_includedir}/gstreamer-%{majorminor}/gst/tag
%{_includedir}/gstreamer-%{majorminor}/gst/tag/tag.h
%dir %{_includedir}/gstreamer-%{majorminor}/gst/video
@@ -205,6 +220,8 @@ GStreamer Base Plugins library development and header files.
%{_libdir}/libgstvideo-%{majorminor}.so
%{_libdir}/libgstcdda-%{majorminor}.so
%{_libdir}/libgstpbutils-%{majorminor}.so
+%{_libdir}/libgstrtsp-%{majorminor}.so
+%{_libdir}/libgstsdp-%{majorminor}.so
# pkg-config files
%{_libdir}/pkgconfig/gstreamer-plugins-base-%{majorminor}.pc
@@ -216,6 +233,7 @@ GStreamer Base Plugins library development and header files.
%changelog
* Sat Aug 04 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.14-1
- Update to 0.10.14
+- Add RTSP and SDP helper libraries
* Tue Jun 05 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.13-2
- Add missing files
4 years, 7 months
[gstreamer-plugins-base: 32/216] - Update to 0.10.14
by Dominik Mierzejewski
commit e9070ed97237cb337dd0edd67d11ec30893ad0b0
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Sat Aug 4 11:26:55 2007 +0000
- Update to 0.10.14
.cvsignore | 2 +-
gstreamer-plugins-base.spec | 7 +++++--
sources | 2 +-
3 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index 3f7f425..8d194b7 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gst-plugins-base-0.10.13.tar.bz2
+gst-plugins-base-0.10.14.tar.bz2
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index fbdc443..81953cf 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -1,10 +1,10 @@
%define gstreamer gstreamer
%define majorminor 0.10
-%define _gst 0.10.13
+%define _gst 0.10.14
Name: %{gstreamer}-plugins-base
-Version: 0.10.13
+Version: 0.10.14
Release: 2%{?dist}
Summary: GStreamer streaming media framework base plug-ins
@@ -214,6 +214,9 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Sat Aug 04 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.14-1
+- Update to 0.10.14
+
* Tue Jun 05 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.13-2
- Add missing files
diff --git a/sources b/sources
index 6e88f94..bdb687c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-735f7b911cd00540d2bea8596a3859cd gst-plugins-base-0.10.13.tar.bz2
+ef9bcc88c84e47684a901da339a7c6b3 gst-plugins-base-0.10.14.tar.bz2
4 years, 7 months
[gstreamer-plugins-base: 31/216] - Add missing files
by Dominik Mierzejewski
commit 01e75cf48dd26a9194ea29d437961a42cc09d403
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Tue Jun 5 17:47:50 2007 +0000
- Add missing files
gstreamer-plugins-base.spec | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
---
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 4ac377c..fbdc443 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,7 +5,7 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.13
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -116,6 +116,8 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/gstreamer-%{majorminor}/libgstvideo4linux.so
%{_libdir}/gstreamer-%{majorminor}/libgstaudioresample.so
%{_libdir}/gstreamer-%{majorminor}/libgstgdp.so
+%{_libdir}/gstreamer-%{majorminor}/libgstqueue2.so
+%{_libdir}/gstreamer-%{majorminor}/libgsturidecodebin.so
# base plugins with dependencies
%{_libdir}/gstreamer-%{majorminor}/libgstalsa.so
@@ -185,6 +187,7 @@ GStreamer Base Plugins library development and header files.
%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstbasertpaudiopayload.h
%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstbasertpdepayload.h
%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstbasertppayload.h
+%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstrtcpbuffer.h
%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstrtpbuffer.h
%dir %{_includedir}/gstreamer-%{majorminor}/gst/tag
%{_includedir}/gstreamer-%{majorminor}/gst/tag/tag.h
@@ -211,6 +214,9 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Tue Jun 05 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.13-2
+- Add missing files
+
* Tue Jun 05 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.13-1
- Update to 0.10.13
4 years, 7 months
[gstreamer-plugins-base: 30/216] - Update to 0.10.13
by Dominik Mierzejewski
commit 4d101c04272a520d39de34b5c8ceccffaf4bfbdf
Author: Bastien Nocera <hadess(a)fedoraproject.org>
Date: Tue Jun 5 14:33:01 2007 +0000
- Update to 0.10.13
.cvsignore | 2 +-
gstreamer-plugins-base.spec | 9 ++++++---
sources | 2 +-
3 files changed, 8 insertions(+), 5 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index 4ffb164..3f7f425 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gst-plugins-base-0.10.12.tar.bz2
+gst-plugins-base-0.10.13.tar.bz2
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index 856aff7..4ac377c 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -1,11 +1,11 @@
%define gstreamer gstreamer
%define majorminor 0.10
-%define _gst 0.10.12
+%define _gst 0.10.13
Name: %{gstreamer}-plugins-base
-Version: 0.10.12
-Release: 3%{?dist}
+Version: 0.10.13
+Release: 1%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -211,6 +211,9 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Tue Jun 05 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.13-1
+- Update to 0.10.13
+
* Fri May 18 2007 Adam Jackson <ajax(a)redhat.com> 0.10.12-3
- Add directory ownership claims to %%files devel. (#240238)
diff --git a/sources b/sources
index 2f635ee..6e88f94 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0ee35455a4eb507bcfbfcd44d9e15d1e gst-plugins-base-0.10.12.tar.bz2
+735f7b911cd00540d2bea8596a3859cd gst-plugins-base-0.10.13.tar.bz2
4 years, 7 months
[gstreamer-plugins-base: 29/216] - Add directory ownership claims to %files devel. (#240238)
by Dominik Mierzejewski
commit 38f4ecefcd1d174ce392528dfc89ab968d5de8c0
Author: Adam Jackson <ajax(a)fedoraproject.org>
Date: Fri May 18 18:40:58 2007 +0000
- Add directory ownership claims to %files devel. (#240238)
gstreamer-plugins-base.spec | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
---
diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec
index c8fc37c..856aff7 100644
--- a/gstreamer-plugins-base.spec
+++ b/gstreamer-plugins-base.spec
@@ -5,7 +5,7 @@
Name: %{gstreamer}-plugins-base
Version: 0.10.12
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: GStreamer streaming media framework base plug-ins
Group: Applications/Multimedia
@@ -140,6 +140,7 @@ GStreamer Base Plugins library development and header files.
%files devel
%defattr(-, root, root)
# plugin helper library headers
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/audio
%{_includedir}/gstreamer-%{majorminor}/gst/audio/audio.h
%{_includedir}/gstreamer-%{majorminor}/gst/audio/gstaudioclock.h
%{_includedir}/gstreamer-%{majorminor}/gst/audio/gstaudiofilter.h
@@ -151,8 +152,11 @@ GStreamer Base Plugins library development and header files.
%{_includedir}/gstreamer-%{majorminor}/gst/audio/mixerutils.h
%{_includedir}/gstreamer-%{majorminor}/gst/audio/multichannel-enumtypes.h
%{_includedir}/gstreamer-%{majorminor}/gst/audio/multichannel.h
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/cdda
%{_includedir}/gstreamer-%{majorminor}/gst/cdda/gstcddabasesrc.h
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/floatcast
%{_includedir}/gstreamer-%{majorminor}/gst/floatcast/floatcast.h
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/interfaces
%{_includedir}/gstreamer-%{majorminor}/gst/interfaces/colorbalance.h
%{_includedir}/gstreamer-%{majorminor}/gst/interfaces/colorbalancechannel.h
%{_includedir}/gstreamer-%{majorminor}/gst/interfaces/interfaces-enumtypes.h
@@ -166,19 +170,25 @@ GStreamer Base Plugins library development and header files.
%{_includedir}/gstreamer-%{majorminor}/gst/interfaces/tunernorm.h
%{_includedir}/gstreamer-%{majorminor}/gst/interfaces/videoorientation.h
%{_includedir}/gstreamer-%{majorminor}/gst/interfaces/xoverlay.h
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/netbuffer
%{_includedir}/gstreamer-%{majorminor}/gst/netbuffer/gstnetbuffer.h
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/pbutils
%{_includedir}/gstreamer-%{majorminor}/gst/pbutils/descriptions.h
%{_includedir}/gstreamer-%{majorminor}/gst/pbutils/install-plugins.h
%{_includedir}/gstreamer-%{majorminor}/gst/pbutils/missing-plugins.h
%{_includedir}/gstreamer-%{majorminor}/gst/pbutils/pbutils.h
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/riff
%{_includedir}/gstreamer-%{majorminor}/gst/riff/riff-ids.h
%{_includedir}/gstreamer-%{majorminor}/gst/riff/riff-media.h
%{_includedir}/gstreamer-%{majorminor}/gst/riff/riff-read.h
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/rtp
%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstbasertpaudiopayload.h
%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstbasertpdepayload.h
%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstbasertppayload.h
%{_includedir}/gstreamer-%{majorminor}/gst/rtp/gstrtpbuffer.h
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/tag
%{_includedir}/gstreamer-%{majorminor}/gst/tag/tag.h
+%dir %{_includedir}/gstreamer-%{majorminor}/gst/video
%{_includedir}/gstreamer-%{majorminor}/gst/video/gstvideofilter.h
%{_includedir}/gstreamer-%{majorminor}/gst/video/gstvideosink.h
%{_includedir}/gstreamer-%{majorminor}/gst/video/video.h
@@ -201,6 +211,9 @@ GStreamer Base Plugins library development and header files.
%doc %{_datadir}/gtk-doc/html/gst-plugins-base-plugins-%{majorminor}
%changelog
+* Fri May 18 2007 Adam Jackson <ajax(a)redhat.com> 0.10.12-3
+- Add directory ownership claims to %%files devel. (#240238)
+
* Thu Mar 08 2007 - Bastien Nocera <bnocera(a)redhat.com> - 0.10.12-2
- Remove the patch to disable docs, install the docs by hand instead
Add libgstpbutils to the files
4 years, 7 months