diff options
author | Ross Burton <ross@openedhand.com> | 2008-08-03 13:47:50 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2008-08-03 13:47:50 +0000 |
commit | 450c47d017976ba2b0a38d6454c11b7751d337be (patch) | |
tree | 223e7d5e0bc0d71070800557e35e30d8cd408984 /meta | |
parent | ad77fb02b05687265e7167a7375b8fc8334c09d3 (diff) | |
download | poky-450c47d017976ba2b0a38d6454c11b7751d337be.tar.gz |
gst-plugins-bad: upgrade to 0.10.8
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5014 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/packages/gstreamer/gst-plugins-bad-0.10.5/ivorbisdec.patch | 91 | ||||
-rw-r--r-- | meta/packages/gstreamer/gst-plugins-bad_0.10.8.bb (renamed from meta/packages/gstreamer/gst-plugins-bad_0.10.5.bb) | 3 |
2 files changed, 0 insertions, 94 deletions
diff --git a/meta/packages/gstreamer/gst-plugins-bad-0.10.5/ivorbisdec.patch b/meta/packages/gstreamer/gst-plugins-bad-0.10.5/ivorbisdec.patch deleted file mode 100644 index 047c1864c7..0000000000 --- a/meta/packages/gstreamer/gst-plugins-bad-0.10.5/ivorbisdec.patch +++ /dev/null | |||
@@ -1,91 +0,0 @@ | |||
1 | diff -urNd ../gst-plugins-bad0.10-0.10.3+cvs20060918/ext/ivorbis/vorbisdec.h ext/ivorbis/vorbisdec.h | ||
2 | --- ../gst-plugins-bad0.10-0.10.3+cvs20060918/ext/ivorbis/vorbisdec.h 1970-01-01 01:00:00.000000000 +0100 | ||
3 | +++ ext/ivorbis/vorbisdec.h 2006-09-20 17:26:46.000000000 +0100 | ||
4 | @@ -0,0 +1,87 @@ | ||
5 | +/* -*- c-basic-offset: 2 -*- | ||
6 | + * GStreamer | ||
7 | + * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu> | ||
8 | + * | ||
9 | + * Tremor modifications <2006>: | ||
10 | + * Chris Lord, OpenedHand Ltd. <chris@openedhand.com>, http://www.o-hand.com/ | ||
11 | + * | ||
12 | + * This library is free software; you can redistribute it and/or | ||
13 | + * modify it under the terms of the GNU Library General Public | ||
14 | + * License as published by the Free Software Foundation; either | ||
15 | + * version 2 of the License, or (at your option) any later version. | ||
16 | + * | ||
17 | + * This library is distributed in the hope that it will be useful, | ||
18 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
19 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
20 | + * Library General Public License for more details. | ||
21 | + * | ||
22 | + * You should have received a copy of the GNU Library General Public | ||
23 | + * License along with this library; if not, write to the | ||
24 | + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
25 | + * Boston, MA 02111-1307, USA. | ||
26 | + */ | ||
27 | + | ||
28 | + | ||
29 | +#ifndef __GST_IVORBIS_DEC_H__ | ||
30 | +#define __GST_IVORBIS_DEC_H__ | ||
31 | + | ||
32 | + | ||
33 | +#include <gst/gst.h> | ||
34 | +#include <tremor/ivorbiscodec.h> | ||
35 | + | ||
36 | +G_BEGIN_DECLS | ||
37 | + | ||
38 | +#define GST_TYPE_IVORBIS_DEC \ | ||
39 | + (gst_ivorbis_dec_get_type()) | ||
40 | +#define GST_IVORBIS_DEC(obj) \ | ||
41 | + (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_IVORBIS_DEC,GstIVorbisDec)) | ||
42 | +#define GST_IVORBIS_DEC_CLASS(klass) \ | ||
43 | + (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_IVORBIS_DEC,GstIVorbisDecClass)) | ||
44 | +#define GST_IS_IVORBIS_DEC(obj) \ | ||
45 | + (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_IVORBIS_DEC)) | ||
46 | +#define GST_IS_IVORBIS_DEC_CLASS(klass) \ | ||
47 | + (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_IVORBIS_DEC)) | ||
48 | + | ||
49 | +typedef struct _GstIVorbisDec GstIVorbisDec; | ||
50 | +typedef struct _GstIVorbisDecClass GstIVorbisDecClass; | ||
51 | + | ||
52 | +/** | ||
53 | + * GstIVorbisDec: | ||
54 | + * | ||
55 | + * Opaque data structure. | ||
56 | + */ | ||
57 | +struct _GstIVorbisDec { | ||
58 | + GstElement element; | ||
59 | + | ||
60 | + GstPad * sinkpad; | ||
61 | + GstPad * srcpad; | ||
62 | + | ||
63 | + vorbis_dsp_state vd; | ||
64 | + vorbis_info vi; | ||
65 | + vorbis_comment vc; | ||
66 | + vorbis_block vb; | ||
67 | + guint64 granulepos; | ||
68 | + | ||
69 | + gboolean initialized; | ||
70 | + | ||
71 | + GList *queued; | ||
72 | + | ||
73 | + GstSegment segment; | ||
74 | + gboolean discont; | ||
75 | + | ||
76 | + GstClockTime cur_timestamp; /* only used with non-ogg container formats */ | ||
77 | + GstClockTime prev_timestamp; /* only used with non-ogg container formats */ | ||
78 | + | ||
79 | + GList *pendingevents; | ||
80 | + GstTagList *taglist; | ||
81 | +}; | ||
82 | + | ||
83 | +struct _GstIVorbisDecClass { | ||
84 | + GstElementClass parent_class; | ||
85 | +}; | ||
86 | + | ||
87 | +GType gst_ivorbis_dec_get_type(void); | ||
88 | + | ||
89 | +G_END_DECLS | ||
90 | + | ||
91 | +#endif /* __GST_IVORBIS_DEC_H__ */ | ||
diff --git a/meta/packages/gstreamer/gst-plugins-bad_0.10.5.bb b/meta/packages/gstreamer/gst-plugins-bad_0.10.8.bb index d6023aae18..78192dfa0b 100644 --- a/meta/packages/gstreamer/gst-plugins-bad_0.10.5.bb +++ b/meta/packages/gstreamer/gst-plugins-bad_0.10.8.bb | |||
@@ -1,12 +1,9 @@ | |||
1 | require gst-plugins.inc | 1 | require gst-plugins.inc |
2 | DEPENDS += "gst-plugins-base libmusicbrainz tremor" | 2 | DEPENDS += "gst-plugins-base libmusicbrainz tremor" |
3 | PR = "r6" | ||
4 | 3 | ||
5 | EXTRA_OECONF += "--disable-examples --disable-experimental --disable-sdl --disable-cdaudio \ | 4 | EXTRA_OECONF += "--disable-examples --disable-experimental --disable-sdl --disable-cdaudio \ |
6 | --with-plugins=musicbrainz,wavpack,ivorbis" | 5 | --with-plugins=musicbrainz,wavpack,ivorbis" |
7 | 6 | ||
8 | SRC_URI += " file://ivorbisdec.patch;patch=1;pnum=0" | ||
9 | |||
10 | ARM_INSTRUCTION_SET = "arm" | 7 | ARM_INSTRUCTION_SET = "arm" |
11 | 8 | ||
12 | do_configure_prepend() { | 9 | do_configure_prepend() { |