diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-04-15 21:24:28 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-04-15 21:24:28 +0000 |
commit | be102b29ddc2ef0d919db5a6aace63304d93a183 (patch) | |
tree | 9574a8ae1ac19071aa8bc4d55fba657d40b96754 /multimedia/gst-plugins/patches | |
parent | 86d21d0b0460d890e80d644a9582bc055052f2b1 (diff) | |
download | pkgsrc-be102b29ddc2ef0d919db5a6aace63304d93a183.tar.gz |
Update gst-plugins* to 0.8.1:
Features of this release
* Parallel installability with 0.6.x series
* Internationalization
* New translations in this release: Swedish, Afrikaans, Azerbeaijani
* Translations: af az nl sr sv
* Updated to the new core 0.8 subsystems
* Reworked play and media-info libraries
* Updated osssink: now does probing of possible output properties
* Updated qtdemux: fixes for MACE audio
* New debug element: quasirandom byte changes
* New element: dvddemux
* New element: kiosrc, a KIO-slaves source
* Fixes to all other elements, including level, videodrop, gnomevfssrc,
speex, *law, mpeg2dec, adder, a52dec, oggdemux, matroska, mad, v4l2,
cacasink
* Portability fixes
* ChangeLog use
* Coding style consistency
* Various memleak and buffer overflow fixes
Bugs fixed in this release
* 120883 : osssink advertises more rates than it handles
* 125732 : v4l2src don't support all YUV formats
* 134301 : gst-plugins should depend on X
* 135919 : Mandrake 10
* 136477 : [PATCH] gst-launch-ext does not support .mov
* 136527 : gdk_pixbuf makefile tried to execute targets contrains in...
* 137348 : media-info .pc file lacks a 'Version:' line
* 137448 : mpegaudioparse: crash (bus error)
* 137504 : mpeg2dec fails on 422 encoded material
* 137556 : Ogg Vorbis playback has poor spatialization
* 137588 : ffmpegcolorspace gives critical when it should throw error
* 137722 : Quicktime audio parsing is broken
* 138105 : [mpeg1videoparse] Hangs while decoding everest.m1v
* 138168 : id3tag using gst_event_new_discontinuous incorrectly?
* 138169 : matroska-demux using gst_event_new_discontinuous without ...
* 138635 : two GLib-GObject-CRITICAL Messages when running gst-regis...
* 138846 : all of the ladspa-wrapped source-plugins fail to go to pl...
* 138914 : gstgdkanimation.h is missing from gst-plugins-0.8.0
* 139034 : Non-standard test(1) operator used in configure script
* 139035 : Non-standard regex used as libtool argument
* 139382 : mad decoder can resync wrongly after seek and does explic...
* 139532 : gstcolorspace crashes when after v4lsrc (ffmpegcolorspace...
* 139926 : id3tag's caps cause it to be plugged more than once by sp...
* 139958 : Leak in avidemux
* 140058 : [msmpeg4] file with broken qscale/header does not play
Diffstat (limited to 'multimedia/gst-plugins/patches')
-rw-r--r-- | multimedia/gst-plugins/patches/patch-aa | 24 | ||||
-rw-r--r-- | multimedia/gst-plugins/patches/patch-ad | 13 |
2 files changed, 25 insertions, 12 deletions
diff --git a/multimedia/gst-plugins/patches/patch-aa b/multimedia/gst-plugins/patches/patch-aa index e8d5d012fac..c2020147511 100644 --- a/multimedia/gst-plugins/patches/patch-aa +++ b/multimedia/gst-plugins/patches/patch-aa @@ -1,13 +1,13 @@ -$NetBSD: patch-aa,v 1.4 2004/04/06 09:36:28 jmmv Exp $ +$NetBSD: patch-aa,v 1.5 2004/04/15 21:24:29 jmmv Exp $ ---- configure.orig 2004-03-16 12:55:09.000000000 +0100 -+++ configure 2004-04-03 15:19:00.000000000 +0200 -@@ -27364,7 +27364,7 @@ - plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR" - - --GST_PLUGIN_LDFLAGS='-module -avoid-version -export-symbols-regex _*{gst_,Gst,GST_}.*' -+GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '_*(gst_|Gst|GST_).*'" - - - GST_PLUGINS_ALL="\ +--- gst/ffmpegcolorspace/gstffmpegcolorspace.c.orig 2004-04-14 18:12:11.000000000 +0200 ++++ gst/ffmpegcolorspace/gstffmpegcolorspace.c +@@ -306,7 +306,7 @@ gst_ffmpegcolorspace_chain (GstPad * pad + g_return_if_fail (GST_IS_FFMPEGCOLORSPACE (space)); + + if (space->from_pixfmt == PIX_FMT_NB || space->to_pixfmt == PIX_FMT_NB) { +- GST_ELEMENT_ERROR (space, CORE, NOT_IMPLEMENTED, NULL, ++ GST_ELEMENT_ERROR (space, CORE, NOT_IMPLEMENTED, (NULL), + ("attempting to convert colorspaces between unknown formats")); + gst_buffer_unref (inbuf); + return; diff --git a/multimedia/gst-plugins/patches/patch-ad b/multimedia/gst-plugins/patches/patch-ad new file mode 100644 index 00000000000..916dc5b1e8a --- /dev/null +++ b/multimedia/gst-plugins/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.3 2004/04/15 21:24:29 jmmv Exp $ + +--- ext/gnomevfs/gstgnomevfssink.c.orig 2004-04-14 18:12:18.000000000 +0200 ++++ ext/gnomevfs/gstgnomevfssink.c +@@ -347,7 +347,7 @@ gst_gnomevfssink_open_file (GstGnomeVFSS + } + sink->own_handle = TRUE; + } else if (!sink->handle) { +- GST_ELEMENT_ERROR (sink, RESOURCE, FAILED, (_("No filename given")), NULL); ++ GST_ELEMENT_ERROR (sink, RESOURCE, FAILED, (_("No filename given")), (NULL)); + return FALSE; + } + |