summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-18 22:54:57 +0000
committerrillig <rillig>2005-12-18 22:54:57 +0000
commitacafb1f4c77ec750969293a12f012137b7836eb7 (patch)
tree3d9cdf7829fd269dde2238c73362e5604bdcd139 /multimedia
parentcd3f79ecd6d33653b5effe45703fdf0976886628 (diff)
downloadpkgsrc-acafb1f4c77ec750969293a12f012137b7836eb7.tar.gz
Added patch-aj for compatibility with ISO C90. Fixes the build of
gst-plugins-ogg.
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/gst-plugins/distinfo3
-rw-r--r--multimedia/gst-plugins/patches/patch-aj21
2 files changed, 23 insertions, 1 deletions
diff --git a/multimedia/gst-plugins/distinfo b/multimedia/gst-plugins/distinfo
index 4873ae58ea3..45fd723ddb4 100644
--- a/multimedia/gst-plugins/distinfo
+++ b/multimedia/gst-plugins/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.29 2005/12/18 22:31:56 rillig Exp $
+$NetBSD: distinfo,v 1.30 2005/12/18 22:54:57 rillig Exp $
SHA1 (gst-plugins-0.8.11.tar.bz2) = 4a9be6b62dd0e8a73616e8e93f7a3ace8aec8c59
RMD160 (gst-plugins-0.8.11.tar.bz2) = 833aec123a52cd0f36ec883c349cc8d69090d749
@@ -10,3 +10,4 @@ SHA1 (patch-ae) = 3509dd08d3e010e9eb85c71ae6c42e28f6f9ec2d
SHA1 (patch-ag) = 264ef4cb6a4fa8eb65ff55ca1c0947d3566a64b8
SHA1 (patch-ah) = 9df4c75c56f7fe29279f270ffc1cfa716fae1a98
SHA1 (patch-ai) = fbee2828dfda28f1e017552e0e2e273cf5d2670b
+SHA1 (patch-aj) = b0af98ac299f1b52387de14c5f3a0173efd7ca8f
diff --git a/multimedia/gst-plugins/patches/patch-aj b/multimedia/gst-plugins/patches/patch-aj
new file mode 100644
index 00000000000..214f7d7520c
--- /dev/null
+++ b/multimedia/gst-plugins/patches/patch-aj
@@ -0,0 +1,21 @@
+$NetBSD: patch-aj,v 1.1 2005/12/18 22:54:57 rillig Exp $
+
+--- ext/ogg/gstoggparse.c.orig Mon Aug 29 13:46:41 2005
++++ ext/ogg/gstoggparse.c Sun Dec 18 23:51:21 2005
+@@ -455,6 +455,7 @@ gst_ogg_parse_chain (GstPad * pad, GstDa
+ * new chain, and we can flush all existing streams.
+ */
+ GstOggStream *stream = gst_ogg_parse_find_stream (ogg, serialno);
++ page_type type;
+
+ if (!stream) {
+ GST_LOG_OBJECT (ogg, "Non-BOS page unexpectedly found at %lld",
+@@ -464,7 +465,7 @@ gst_ogg_parse_chain (GstPad * pad, GstDa
+
+ ogg->last_page_not_bos = TRUE;
+
+- page_type type = gst_ogg_parse_is_header (ogg, stream, &page);
++ type = gst_ogg_parse_is_header (ogg, stream, &page);
+
+ if (type == PAGE_PENDING && ogg->in_headers) {
+ gst_buffer_ref (pagebuffer);