summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2013-12-05 07:51:41 +0000
committerwiz <wiz@pkgsrc.org>2013-12-05 07:51:41 +0000
commit426511546f232f1fb2cb59dfe7c361f1e81abf33 (patch)
tree916c7f7baf6d55541a4c49bf48ae12d88bb79c34 /multimedia
parent6e98489f541291bd278ad07a0bd9dddfdc804b89 (diff)
downloadpkgsrc-426511546f232f1fb2cb59dfe7c361f1e81abf33.tar.gz
Remove patch after update (hi drochner)
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/gstreamer1/patches/patch-gst_parse_grammar.y14
-rw-r--r--multimedia/vlc2/patches/patch-CVE-2013-438819
2 files changed, 0 insertions, 33 deletions
diff --git a/multimedia/gstreamer1/patches/patch-gst_parse_grammar.y b/multimedia/gstreamer1/patches/patch-gst_parse_grammar.y
deleted file mode 100644
index 096c23dbc71..00000000000
--- a/multimedia/gstreamer1/patches/patch-gst_parse_grammar.y
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-gst_parse_grammar.y,v 1.1 2013/08/03 04:07:49 ryoon Exp $
-
-* Fix build with bison-3.0.
-
---- gst/parse/grammar.y.orig 2012-10-25 10:54:57.000000000 +0000
-+++ gst/parse/grammar.y
-@@ -659,6 +659,7 @@ static int yyerror (void *scanner, graph
-
- %parse-param { void *scanner }
- %parse-param { graph_t *graph }
-+%lex-param {void *scanner}
- %pure-parser
-
- %start graph
diff --git a/multimedia/vlc2/patches/patch-CVE-2013-4388 b/multimedia/vlc2/patches/patch-CVE-2013-4388
deleted file mode 100644
index 8990f925508..00000000000
--- a/multimedia/vlc2/patches/patch-CVE-2013-4388
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-CVE-2013-4388,v 1.1 2013/10/01 14:50:38 drochner Exp $
-
-upstream commit 9794ec1cd268c04c8bca13a5fae15df6594dff3e
-
---- modules/packetizer/mpeg4audio.c.orig 2012-04-27 17:14:57.000000000 +0000
-+++ modules/packetizer/mpeg4audio.c
-@@ -892,8 +892,11 @@ static int LOASParse( decoder_t *p_dec,
- continue;
-
- /* FIXME that's slow (and a bit ugly to write in place) */
-- for( i = 0; i < pi_payload[i_program][i_layer]; i++ )
-+ for( i = 0; i < pi_payload[i_program][i_layer]; i++ ) {
-+ if (i_accumulated >= i_buffer)
-+ return 0;
- p_buffer[i_accumulated++] = bs_read( &s, 8 );
-+ }
- }
- }
- }