[oe-commits] org.oe.dreambox gstreamer: update packages to -good 0.10.6, -bad 0.10.5, -base 0.10.14, -ugly 0.10.6, gstreamer 0.10.14

tmbinc commit openembedded-commits at lists.openembedded.org
Sat Aug 25 04:51:34 UTC 2007


gstreamer: update packages to -good 0.10.6, -bad 0.10.5, -base 0.10.14, -ugly 0.10.6, gstreamer 0.10.14

Author: tmbinc at openembedded.org
Branch: org.openembedded.dreambox
Revision: 6bb8bd3a3c6a0040c98d125470c7348449d9e310
ViewMTN: http://monotone.openembedded.org/revision.psp?id=6bb8bd3a3c6a0040c98d125470c7348449d9e310
Files:
1
packages/gstreamer/gst-plugins-bad
packages/gstreamer/gst-plugins-bad/add-missing-vorbisdec_h.patch
packages/gstreamer/gst-plugins-bad_0.10.5.bb
packages/gstreamer/gst-plugins-base_0.10.14.bb
packages/gstreamer/gst-plugins-good_0.10.6.bb
packages/gstreamer/gst-plugins-ugly_0.10.6.bb
packages/gstreamer/gstreamer_0.10.14.bb
packages/gstreamer/gst-plugins.inc
Diffs:

#
# mt diff -r5f0748b962e87919f7165d5671690572c9b073af -r6bb8bd3a3c6a0040c98d125470c7348449d9e310
#
# 
# 
# add_dir "packages/gstreamer/gst-plugins-bad"
# 
# add_file "packages/gstreamer/gst-plugins-bad/add-missing-vorbisdec_h.patch"
#  content [1d0fe10c22c87c99966a161fd27bd12145e36172]
# 
# add_file "packages/gstreamer/gst-plugins-bad_0.10.5.bb"
#  content [945f0d86856940504a43377bd3c1316037b889c1]
# 
# add_file "packages/gstreamer/gst-plugins-base_0.10.14.bb"
#  content [ab5e2d70e602ef1dcd504c2f280455584b0dc803]
# 
# add_file "packages/gstreamer/gst-plugins-good_0.10.6.bb"
#  content [0ffc477177e9321195572ef9ff053e46b93af8c0]
# 
# add_file "packages/gstreamer/gst-plugins-ugly_0.10.6.bb"
#  content [a4a33866686050de005f5aec45d5788ddea4f0fd]
# 
# add_file "packages/gstreamer/gstreamer_0.10.14.bb"
#  content [d64c384cfddad2e8800fb6c62c271d7bcba991a5]
# 
# patch "packages/gstreamer/gst-plugins.inc"
#  from [c8713b22bf89f11d9de9451e4fb46694c1f636ac]
#    to [11500cd852f87a77d51248f34061ae98c9c8c7eb]
# 
============================================================
--- packages/gstreamer/gst-plugins-bad/add-missing-vorbisdec_h.patch	1d0fe10c22c87c99966a161fd27bd12145e36172
+++ packages/gstreamer/gst-plugins-bad/add-missing-vorbisdec_h.patch	1d0fe10c22c87c99966a161fd27bd12145e36172
@@ -0,0 +1,91 @@
+diff -urN /dev/null ext/ivorbis/vorbisdec.h
+--- /dev/null	Wed Dec 31 18:00:00 1969
++++ bla/ext/ivorbis/vorbisdec.h	Thu Jul  5 14:49:17 2007
+@@ -0,0 +1,87 @@
++/* -*- c-basic-offset: 2 -*-
++ * GStreamer
++ * Copyright (C) <1999> Erik Walthinsen <omega at cse.ogi.edu>
++ *
++ * Tremor modifications <2006>:
++ *   Chris Lord, OpenedHand Ltd. <chris at openedhand.com>, http://www.o-hand.com/
++ *
++ * This library is free software; you can redistribute it and/or
++ * modify it under the terms of the GNU Library General Public
++ * License as published by the Free Software Foundation; either
++ * version 2 of the License, or (at your option) any later version.
++ *
++ * This library is distributed in the hope that it will be useful,
++ * but WITHOUT ANY WARRANTY; without even the implied warranty of
++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
++ * Library General Public License for more details.
++ *
++ * You should have received a copy of the GNU Library General Public
++ * License along with this library; if not, write to the
++ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
++ * Boston, MA 02111-1307, USA.
++ */
++
++
++#ifndef __GST_IVORBIS_DEC_H__
++#define __GST_IVORBIS_DEC_H__
++
++
++#include <gst/gst.h>
++#include <tremor/ivorbiscodec.h>
++
++G_BEGIN_DECLS
++
++#define GST_TYPE_IVORBIS_DEC \
++  (gst_ivorbis_dec_get_type())
++#define GST_IVORBIS_DEC(obj) \
++  (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_IVORBIS_DEC,GstIVorbisDec))
++#define GST_IVORBIS_DEC_CLASS(klass) \
++  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_IVORBIS_DEC,GstIVorbisDecClass))
++#define GST_IS_IVORBIS_DEC(obj) \
++  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_IVORBIS_DEC))
++#define GST_IS_IVORBIS_DEC_CLASS(klass) \
++  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_IVORBIS_DEC))
++
++typedef struct _GstIVorbisDec GstIVorbisDec;
++typedef struct _GstIVorbisDecClass GstIVorbisDecClass;
++
++/**
++ * GstIVorbisDec:
++ *
++ * Opaque data structure.
++ */
++struct _GstIVorbisDec {
++  GstElement            element;
++
++  GstPad *              sinkpad;
++  GstPad *              srcpad;
++
++  vorbis_dsp_state      vd;
++  vorbis_info           vi;
++  vorbis_comment        vc;
++  vorbis_block          vb;
++  guint64               granulepos;
++
++  gboolean              initialized;
++
++  GList                 *queued;
++
++  GstSegment		segment;
++  gboolean		discont;
++
++  GstClockTime          cur_timestamp; /* only used with non-ogg container formats */
++  GstClockTime          prev_timestamp; /* only used with non-ogg container formats */
++
++  GList			*pendingevents;
++  GstTagList		*taglist;
++};
++
++struct _GstIVorbisDecClass {
++  GstElementClass parent_class;
++};
++
++GType gst_ivorbis_dec_get_type(void);
++
++G_END_DECLS
++
++#endif /* __GST_IVORBIS_DEC_H__ */
============================================================
--- packages/gstreamer/gst-plugins-bad_0.10.5.bb	945f0d86856940504a43377bd3c1316037b889c1
+++ packages/gstreamer/gst-plugins-bad_0.10.5.bb	945f0d86856940504a43377bd3c1316037b889c1
@@ -0,0 +1,2 @@
+include gst-plugins.inc
+SRC_URI_append=" file://add-missing-vorbisdec_h.patch;patch=1;pnun=1"
============================================================
--- packages/gstreamer/gst-plugins-base_0.10.14.bb	ab5e2d70e602ef1dcd504c2f280455584b0dc803
+++ packages/gstreamer/gst-plugins-base_0.10.14.bb	ab5e2d70e602ef1dcd504c2f280455584b0dc803
@@ -0,0 +1,2 @@
+include gst-plugins.inc
+PROVIDES_${PN} += "gst-plugins"
============================================================
--- packages/gstreamer/gst-plugins-good_0.10.6.bb	0ffc477177e9321195572ef9ff053e46b93af8c0
+++ packages/gstreamer/gst-plugins-good_0.10.6.bb	0ffc477177e9321195572ef9ff053e46b93af8c0
@@ -0,0 +1 @@
+include gst-plugins.inc
============================================================
--- packages/gstreamer/gst-plugins-ugly_0.10.6.bb	a4a33866686050de005f5aec45d5788ddea4f0fd
+++ packages/gstreamer/gst-plugins-ugly_0.10.6.bb	a4a33866686050de005f5aec45d5788ddea4f0fd
@@ -0,0 +1,2 @@
+require gst-plugins.inc
+DEPENDS += "gst-plugins-base"
============================================================
--- packages/gstreamer/gstreamer_0.10.14.bb	d64c384cfddad2e8800fb6c62c271d7bcba991a5
+++ packages/gstreamer/gstreamer_0.10.14.bb	d64c384cfddad2e8800fb6c62c271d7bcba991a5
@@ -0,0 +1 @@
+include gstreamer_0.10.11.bb
============================================================
--- packages/gstreamer/gst-plugins.inc	c8713b22bf89f11d9de9451e4fb46694c1f636ac
+++ packages/gstreamer/gst-plugins.inc	11500cd852f87a77d51248f34061ae98c9c8c7eb
@@ -1,8 +1,8 @@ MAINTAINER = "Felix Domke <tmbinc at openem
 DESCRIPTION = "Plugins for GStreamer"
 SECTION = "multimedia"
 PRIORITY = "optional"
 MAINTAINER = "Felix Domke <tmbinc at openembedded.org>"
-DEPENDS = "gstreamer libmikmod libmad libogg tremor libvorbis libid3tag liboil alsa-lib"
+DEPENDS = "gstreamer libmikmod libmad libogg tremor libvorbis libid3tag liboil alsa-lib neon"
 PR = "r0"
 
 inherit autotools pkgconfig
@@ -10,7 +10,7 @@ EXTRA_OECONF = "--disable-x --disable-aa
 SRC_URI = "http://gstreamer.freedesktop.org/src/${PN}/${PN}-${PV}.tar.bz2"
 
 EXTRA_OECONF = "--disable-x --disable-aalib --disable-esd --disable-shout2 \
-		--disable-sdl"
+		--disable-sdl --with-check=no --enable-neon"
 
 acpaths = "-I ${S}/common/m4 -I ${S}/m4"
 






More information about the Openembedded-commits mailing list