From 0c171fbef367bc70aa8b517ade81913e9742362c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 11 Jul 2014 11:21:29 +0200 Subject: [PATCH] Release 1.3.91 --- ChangeLog | 127 +++++++++++++++++- NEWS | 2 +- RELEASE | 24 +++- configure.ac | 6 +- docs/plugins/inspect/plugin-adder.xml | 2 +- docs/plugins/inspect/plugin-alsa.xml | 2 +- docs/plugins/inspect/plugin-app.xml | 2 +- docs/plugins/inspect/plugin-audioconvert.xml | 2 +- docs/plugins/inspect/plugin-audiorate.xml | 2 +- docs/plugins/inspect/plugin-audioresample.xml | 2 +- docs/plugins/inspect/plugin-audiotestsrc.xml | 2 +- docs/plugins/inspect/plugin-cdparanoia.xml | 2 +- docs/plugins/inspect/plugin-encoding.xml | 2 +- docs/plugins/inspect/plugin-gio.xml | 2 +- docs/plugins/inspect/plugin-ivorbisdec.xml | 2 +- docs/plugins/inspect/plugin-libvisual.xml | 2 +- docs/plugins/inspect/plugin-ogg.xml | 2 +- docs/plugins/inspect/plugin-pango.xml | 2 +- docs/plugins/inspect/plugin-playback.xml | 2 +- docs/plugins/inspect/plugin-subparse.xml | 2 +- docs/plugins/inspect/plugin-tcp.xml | 2 +- docs/plugins/inspect/plugin-theora.xml | 2 +- .../inspect/plugin-typefindfunctions.xml | 2 +- docs/plugins/inspect/plugin-videoconvert.xml | 2 +- docs/plugins/inspect/plugin-videorate.xml | 2 +- docs/plugins/inspect/plugin-videoscale.xml | 2 +- docs/plugins/inspect/plugin-videotestsrc.xml | 2 +- docs/plugins/inspect/plugin-volume.xml | 2 +- docs/plugins/inspect/plugin-vorbis.xml | 2 +- docs/plugins/inspect/plugin-ximagesink.xml | 2 +- docs/plugins/inspect/plugin-xvimagesink.xml | 2 +- gst-plugins-base.doap | 10 ++ win32/common/_stdint.h | 2 +- win32/common/config.h | 8 +- 34 files changed, 187 insertions(+), 46 deletions(-) diff --git a/ChangeLog b/ChangeLog index 519435a4c..1f101a293 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,130 @@ -=== release 1.3.90 === +=== release 1.3.91 === + +2014-07-11 Sebastian Dröge + + * configure.ac: + releasing 1.3.91 -2014-06-28 Sebastian Dröge +2014-07-11 10:13:03 +0200 Edward Hervey * configure.ac: - releasing 1.3.90 + * ext/libvisual/plugin.c: + * ext/libvisual/visual.c: + libvisual: Remove < 0.4 support + And remove the version guards that went along with it + https://bugzilla.gnome.org/show_bug.cgi?id=733046 + +2014-07-10 18:17:47 -0400 Nicolas Dufresne + + * gst-libs/gst/allocators/gstdmabuf.c: + dmabuf: Ensure _get_fd() works even for shared memory + Fixes regression introduced by: + commit b60888fd4bcacd42bb4e27fa938272d6e72c5c32 + Author: Michael Olbrich + Date: Tue May 20 11:18:56 2014 +0200 + dmabuf: share the mapping with shared copies of the memory + https://bugzilla.gnome.org/show_bug.cgi?id=730441 + +2014-07-11 08:51:58 +0200 Sebastian Dröge + + * po/vi.po: + po: Update translations + +2014-07-03 13:46:08 -0700 Evan Nemerson + + * gst-libs/gst/sdp/sdp.h: + sdp: add gstmikey.h to sdp.h + https://bugzilla.gnome.org/show_bug.cgi?id=732709 + +2014-07-03 18:32:02 +0200 Sebastian Rasmussen + + * gst-libs/gst/riff/riff-read.c: + riff: Print invalid fourcc in error message in hex + Previously this was printed as characters which caused later processing + of the error message to sometimes warn about non-UTF-8 characters. + Fixes https://bugzilla.gnome.org/show_bug.cgi?id=732697 + +2014-06-20 18:02:31 +0200 Gwenole Beauchesne + + * gst-libs/gst/video/gstvideodecoder.c: + videodecoder: parse any source data that is still available. + Fix gst_video_decoder_parse_available() to really parse any pending + source data that is still available in the adapter. This is a memory + optimization to avoid expansion of video packed added to the adapter, + but also a fix to EOS condition when the subclass parse() function + ultimately only needed to call into gvd_have_frame() and no additional + source bytes were consumed, i.e. gvd_add_to_frame() is not called. + This situation can occur when decoding H.264 streams in byte-stream/nal + mode for instance. A decoder always requires the next NAL unit to be + parsed so that to determine picture boundaries. When a new picture is + found, no byte is consumed (i.e. gvd_add_to_frame() is not called) + but gvd_have_frame() is called (i.e. priv->current_frame is gone). + Also make sure to avoid infinite loops caused by incorrect subclass + parse() implementations. This can occur when no byte gets consumed + and no appropriate indication (GST_VIDEO_DECODER_FLOW_NEED_DATA) is + returned. + https://bugzilla.gnome.org/show_bug.cgi?id=731974 + Signed-off-by: Gwenole Beauchesne + +2014-07-02 15:50:23 +0200 Wim Taymans + + * tests/examples/dynamic/codec-select.c: + tests: codec-select: fix compilation + +2014-07-02 15:49:38 +0200 Wim Taymans + + * gst-libs/gst/sdp/gstmikey.h: + mikey: add more Since markers for new methods + +2014-07-02 15:38:41 +0200 Wim Taymans + + * gst-libs/gst/sdp/gstmikey.c: + * gst-libs/gst/sdp/gstmikey.h: + * tests/check/libs/mikey.c: + * win32/common/libgstsdp.def: + mikey: make message and payload mini-objects + Make the MIKEY message and payload objects miniobjects so that they have + a GType and are refcounted. + We can reuse the dispose method to clear our payload objects. + Add some annotations. + Implement a copy function for the MIKEY message. + Fix the unit test. + Fixes https://bugzilla.gnome.org/show_bug.cgi?id=732589 + +2014-07-02 00:21:00 +0200 Sebastian Rasmussen + + * tests/examples/dynamic/codec-select.c: + tests: codec-select: Plug element name memory leak + https://bugzilla.gnome.org/show_bug.cgi?id=732593 + +2014-07-01 16:14:43 -0700 Evan Nemerson + + * gst-libs/gst/pbutils/gstdiscoverer-types.c: + * gst-libs/gst/rtsp/gstrtspconnection.c: + * gst-libs/gst/rtsp/gstrtsptransport.c: + * gst-libs/gst/sdp/gstmikey.c: + * gst-libs/gst/video/gstvideodecoder.c: + * gst-libs/gst/video/video-tile.c: + docs: Assorted documentation and introspection fixes for new 1.4 API + https://bugzilla.gnome.org/show_bug.cgi?id=732595 + +2014-07-01 16:19:22 +0200 Wim Taymans + + * gst-libs/gst/rtsp/gstrtspconnection.c: + * tests/check/libs/rtspconnection.c: + rtspconnection: also allow POST before GET + Don't only allow GET and then POST request to setup tunneling over HTTP + but also allow POST and then GET. + Fixes https://bugzilla.gnome.org/show_bug.cgi?id=732459 + +2014-06-28 17:08:06 +0200 Sebastian Dröge + + * ext/libvisual/gstaudiovisualizer.c: + * ext/libvisual/gstaudiovisualizer.h: + libvisual: Rename get_type() function to prevent conflicts with static linking + https://bugzilla.gnome.org/show_bug.cgi?id=728443 + +=== release 1.3.90 === 2014-06-28 11:01:13 +0200 Sebastian Dröge diff --git a/NEWS b/NEWS index d53b9d037..4ed85f7de 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -This is GStreamer Base Plugins 1.3.90 +This is GStreamer Base Plugins 1.3.91 Changes since 1.2: diff --git a/RELEASE b/RELEASE index ca29b99b1..58759abb0 100644 --- a/RELEASE +++ b/RELEASE @@ -1,8 +1,8 @@ -Release notes for GStreamer Base Plugins 1.3.90 +Release notes for GStreamer Base Plugins 1.3.91 -The GStreamer team is pleased to announce the first release candidate of +The GStreamer team is pleased to announce the second release candidate of the stable 1.4 release series. The 1.4 release series is adding new features on top of the 1.0 and 1.2 series and is part of the API and ABI-stable 1.x release series of the GStreamer multimedia framework. @@ -71,8 +71,16 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Bugs fixed in this release - * 684030 : typefinding: mp4 with video and dts ES detected as DTS audio - * 732269 : pbutils: handle more H.264 profiles/levels + * 730441 : dmabuf: shared the mapping with shared copies of the memory + * 731974 : videodecoder: parse source data until a frame is obtained + * 732459 : rtspconnection: tunneled connections do not work if POST channel is established first + * 732589 : gst_mikey_* not introspection-friendly + * 732593 : tests: codec-select: Plug element name memory leak + * 732595 : Introspection and documentation issues for new 1.4 symbols + * 732697 : riff: Hexprint invalid fourcc in error message + * 732709 : sdp: gstmikey.h not included by single include header (sdp.h) + * 732945 : giosink: Won't work with mp4mux + * 733046 : visual: Remove support for < 0.4 ==== Download ==== @@ -109,9 +117,11 @@ subscribe to the gstreamer-devel list. Contributors to this release + * Edward Hervey + * Evan Nemerson * Gwenole Beauchesne - * Jan Schmidt + * Nicolas Dufresne * Sebastian Dröge - * Thiago Santos - * Tim-Philipp Müller + * Sebastian Rasmussen + * Wim Taymans   \ No newline at end of file diff --git a/configure.ac b/configure.ac index 6f9daca23..1ce8b8dd1 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file dnl initialize autoconf dnl releases only do -Wall, git and prerelease does -Werror too dnl use a three digit version number for releases, and four for git/prerelease -AC_INIT([GStreamer Base Plug-ins],[1.3.90],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-base]) +AC_INIT([GStreamer Base Plug-ins],[1.3.91],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-base]) AG_GST_INIT @@ -56,10 +56,10 @@ dnl 1.2.5 => 205 dnl 1.10.9 (who knows) => 1009 dnl dnl sets GST_LT_LDFLAGS -AS_LIBTOOL(GST, 390, 0, 390) +AS_LIBTOOL(GST, 391, 0, 391) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.3.90 +GST_REQ=1.3.91 dnl *** autotools stuff **** diff --git a/docs/plugins/inspect/plugin-adder.xml b/docs/plugins/inspect/plugin-adder.xml index be7a0be33..7e5c0cd19 100644 --- a/docs/plugins/inspect/plugin-adder.xml +++ b/docs/plugins/inspect/plugin-adder.xml @@ -3,7 +3,7 @@ Adds multiple streams ../../gst/adder/.libs/libgstadder.so libgstadder.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-alsa.xml b/docs/plugins/inspect/plugin-alsa.xml index d872b223a..f51ea0d86 100644 --- a/docs/plugins/inspect/plugin-alsa.xml +++ b/docs/plugins/inspect/plugin-alsa.xml @@ -3,7 +3,7 @@ ALSA plugin library ../../ext/alsa/.libs/libgstalsa.so libgstalsa.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-app.xml b/docs/plugins/inspect/plugin-app.xml index 05ace3c25..d31b48563 100644 --- a/docs/plugins/inspect/plugin-app.xml +++ b/docs/plugins/inspect/plugin-app.xml @@ -3,7 +3,7 @@ Elements used to communicate with applications ../../gst/app/.libs/libgstapp.so libgstapp.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audioconvert.xml b/docs/plugins/inspect/plugin-audioconvert.xml index 2edd90fc6..5d1bef6ae 100644 --- a/docs/plugins/inspect/plugin-audioconvert.xml +++ b/docs/plugins/inspect/plugin-audioconvert.xml @@ -3,7 +3,7 @@ Convert audio to different formats ../../gst/audioconvert/.libs/libgstaudioconvert.so libgstaudioconvert.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audiorate.xml b/docs/plugins/inspect/plugin-audiorate.xml index 032bf0db6..2a91bb702 100644 --- a/docs/plugins/inspect/plugin-audiorate.xml +++ b/docs/plugins/inspect/plugin-audiorate.xml @@ -3,7 +3,7 @@ Adjusts audio frames ../../gst/audiorate/.libs/libgstaudiorate.so libgstaudiorate.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audioresample.xml b/docs/plugins/inspect/plugin-audioresample.xml index 42ce9f4b4..e486b282f 100644 --- a/docs/plugins/inspect/plugin-audioresample.xml +++ b/docs/plugins/inspect/plugin-audioresample.xml @@ -3,7 +3,7 @@ Resamples audio ../../gst/audioresample/.libs/libgstaudioresample.so libgstaudioresample.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audiotestsrc.xml b/docs/plugins/inspect/plugin-audiotestsrc.xml index 82510c454..a5e687448 100644 --- a/docs/plugins/inspect/plugin-audiotestsrc.xml +++ b/docs/plugins/inspect/plugin-audiotestsrc.xml @@ -3,7 +3,7 @@ Creates audio test signals of given frequency and volume ../../gst/audiotestsrc/.libs/libgstaudiotestsrc.so libgstaudiotestsrc.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-cdparanoia.xml b/docs/plugins/inspect/plugin-cdparanoia.xml index b3f562987..6585a5b80 100644 --- a/docs/plugins/inspect/plugin-cdparanoia.xml +++ b/docs/plugins/inspect/plugin-cdparanoia.xml @@ -3,7 +3,7 @@ Read audio from CD in paranoid mode ../../ext/cdparanoia/.libs/libgstcdparanoia.so libgstcdparanoia.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-encoding.xml b/docs/plugins/inspect/plugin-encoding.xml index 6cacdb893..142211eea 100644 --- a/docs/plugins/inspect/plugin-encoding.xml +++ b/docs/plugins/inspect/plugin-encoding.xml @@ -3,7 +3,7 @@ various encoding-related elements ../../gst/encoding/.libs/libgstencodebin.so libgstencodebin.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-gio.xml b/docs/plugins/inspect/plugin-gio.xml index 6b1557bf2..06235a0ca 100644 --- a/docs/plugins/inspect/plugin-gio.xml +++ b/docs/plugins/inspect/plugin-gio.xml @@ -3,7 +3,7 @@ GIO elements ../../gst/gio/.libs/libgstgio.so libgstgio.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-ivorbisdec.xml b/docs/plugins/inspect/plugin-ivorbisdec.xml index b8fd73ec9..353c4e47f 100644 --- a/docs/plugins/inspect/plugin-ivorbisdec.xml +++ b/docs/plugins/inspect/plugin-ivorbisdec.xml @@ -3,7 +3,7 @@ Vorbis Tremor decoder ../../ext/vorbis/.libs/libgstivorbisdec.so libgstivorbisdec.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-libvisual.xml b/docs/plugins/inspect/plugin-libvisual.xml index b0bbebac9..290a8e04f 100644 --- a/docs/plugins/inspect/plugin-libvisual.xml +++ b/docs/plugins/inspect/plugin-libvisual.xml @@ -3,7 +3,7 @@ libvisual visualization plugins ../../ext/libvisual/.libs/libgstlibvisual.so libgstlibvisual.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-ogg.xml b/docs/plugins/inspect/plugin-ogg.xml index ee8730014..a1c8a0990 100644 --- a/docs/plugins/inspect/plugin-ogg.xml +++ b/docs/plugins/inspect/plugin-ogg.xml @@ -3,7 +3,7 @@ ogg stream manipulation (info about ogg: http://xiph.org) ../../ext/ogg/.libs/libgstogg.so libgstogg.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-pango.xml b/docs/plugins/inspect/plugin-pango.xml index c9ed8a942..61ed19086 100644 --- a/docs/plugins/inspect/plugin-pango.xml +++ b/docs/plugins/inspect/plugin-pango.xml @@ -3,7 +3,7 @@ Pango-based text rendering and overlay ../../ext/pango/.libs/libgstpango.so libgstpango.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-playback.xml b/docs/plugins/inspect/plugin-playback.xml index cb8b777e1..f472541ff 100644 --- a/docs/plugins/inspect/plugin-playback.xml +++ b/docs/plugins/inspect/plugin-playback.xml @@ -3,7 +3,7 @@ various playback elements ../../gst/playback/.libs/libgstplayback.so libgstplayback.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-subparse.xml b/docs/plugins/inspect/plugin-subparse.xml index 74e741d41..6da29f427 100644 --- a/docs/plugins/inspect/plugin-subparse.xml +++ b/docs/plugins/inspect/plugin-subparse.xml @@ -3,7 +3,7 @@ Subtitle parsing ../../gst/subparse/.libs/libgstsubparse.so libgstsubparse.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-tcp.xml b/docs/plugins/inspect/plugin-tcp.xml index 6f74c6290..ceb608f4c 100644 --- a/docs/plugins/inspect/plugin-tcp.xml +++ b/docs/plugins/inspect/plugin-tcp.xml @@ -3,7 +3,7 @@ transfer data over the network via TCP ../../gst/tcp/.libs/libgsttcp.so libgsttcp.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-theora.xml b/docs/plugins/inspect/plugin-theora.xml index 31afe5427..c133c8128 100644 --- a/docs/plugins/inspect/plugin-theora.xml +++ b/docs/plugins/inspect/plugin-theora.xml @@ -3,7 +3,7 @@ Theora plugin library ../../ext/theora/.libs/libgsttheora.so libgsttheora.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-typefindfunctions.xml b/docs/plugins/inspect/plugin-typefindfunctions.xml index 68ec450ab..7f08bd624 100644 --- a/docs/plugins/inspect/plugin-typefindfunctions.xml +++ b/docs/plugins/inspect/plugin-typefindfunctions.xml @@ -3,7 +3,7 @@ default typefind functions ../../gst/typefind/.libs/libgsttypefindfunctions.so libgsttypefindfunctions.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videoconvert.xml b/docs/plugins/inspect/plugin-videoconvert.xml index be64e7eb3..515792db9 100644 --- a/docs/plugins/inspect/plugin-videoconvert.xml +++ b/docs/plugins/inspect/plugin-videoconvert.xml @@ -3,7 +3,7 @@ Colorspace conversion ../../gst/videoconvert/.libs/libgstvideoconvert.so libgstvideoconvert.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videorate.xml b/docs/plugins/inspect/plugin-videorate.xml index 9c4213cea..feb44233b 100644 --- a/docs/plugins/inspect/plugin-videorate.xml +++ b/docs/plugins/inspect/plugin-videorate.xml @@ -3,7 +3,7 @@ Adjusts video frames ../../gst/videorate/.libs/libgstvideorate.so libgstvideorate.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videoscale.xml b/docs/plugins/inspect/plugin-videoscale.xml index b8f7b565b..c4eddba22 100644 --- a/docs/plugins/inspect/plugin-videoscale.xml +++ b/docs/plugins/inspect/plugin-videoscale.xml @@ -3,7 +3,7 @@ Resizes video ../../gst/videoscale/.libs/libgstvideoscale.so libgstvideoscale.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videotestsrc.xml b/docs/plugins/inspect/plugin-videotestsrc.xml index 30a462abe..fc6d7f02f 100644 --- a/docs/plugins/inspect/plugin-videotestsrc.xml +++ b/docs/plugins/inspect/plugin-videotestsrc.xml @@ -3,7 +3,7 @@ Creates a test video stream ../../gst/videotestsrc/.libs/libgstvideotestsrc.so libgstvideotestsrc.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-volume.xml b/docs/plugins/inspect/plugin-volume.xml index 94896e490..12a3e2114 100644 --- a/docs/plugins/inspect/plugin-volume.xml +++ b/docs/plugins/inspect/plugin-volume.xml @@ -3,7 +3,7 @@ plugin for controlling audio volume ../../gst/volume/.libs/libgstvolume.so libgstvolume.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-vorbis.xml b/docs/plugins/inspect/plugin-vorbis.xml index 82ace9f08..d4192cb35 100644 --- a/docs/plugins/inspect/plugin-vorbis.xml +++ b/docs/plugins/inspect/plugin-vorbis.xml @@ -3,7 +3,7 @@ Vorbis plugin library ../../ext/vorbis/.libs/libgstvorbis.so libgstvorbis.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-ximagesink.xml b/docs/plugins/inspect/plugin-ximagesink.xml index 583fc79cd..203168f8e 100644 --- a/docs/plugins/inspect/plugin-ximagesink.xml +++ b/docs/plugins/inspect/plugin-ximagesink.xml @@ -3,7 +3,7 @@ X11 video output element based on standard Xlib calls ../../sys/ximage/.libs/libgstximagesink.so libgstximagesink.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-xvimagesink.xml b/docs/plugins/inspect/plugin-xvimagesink.xml index f59f08fbe..69d76ef7c 100644 --- a/docs/plugins/inspect/plugin-xvimagesink.xml +++ b/docs/plugins/inspect/plugin-xvimagesink.xml @@ -3,7 +3,7 @@ XFree86 video output plugin using Xv extension ../../sys/xvimage/.libs/libgstxvimagesink.so libgstxvimagesink.so - 1.3.90 + 1.3.91 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/gst-plugins-base.doap b/gst-plugins-base.doap index 58e231447..fe6218987 100644 --- a/gst-plugins-base.doap +++ b/gst-plugins-base.doap @@ -34,6 +34,16 @@ A wide range of video and audio decoders, encoders, and filters are included. + + + 1.3.91 + 1.3 + + 2014-07-11 + + + + 1.3.90 diff --git a/win32/common/_stdint.h b/win32/common/_stdint.h index 67f0b5b71..2bce79175 100644 --- a/win32/common/_stdint.h +++ b/win32/common/_stdint.h @@ -1,7 +1,7 @@ #ifndef _GST_PLUGINS_BASE__STDINT_H #define _GST_PLUGINS_BASE__STDINT_H 1 #ifndef _GENERATED_STDINT_H -#define _GENERATED_STDINT_H "gst-plugins-base 1.3.90" +#define _GENERATED_STDINT_H "gst-plugins-base 1.3.91" /* generated using gnu compiler Debian clang version 3.5.0-1 (trunk) (based on LLVM 3.5.0) */ #define _STDINT_HAVE_STDINT_H 1 #include diff --git a/win32/common/config.h b/win32/common/config.h index 01c897e04..fcf93376b 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -84,7 +84,7 @@ #define GST_PACKAGE_ORIGIN "Unknown package origin" /* GStreamer package release date/time for plugins as YYYY-MM-DD */ -#define GST_PACKAGE_RELEASE_DATETIME "2014-06-28" +#define GST_PACKAGE_RELEASE_DATETIME "2014-07-11" /* Define if static plugins should be built */ #undef GST_PLUGIN_BUILD_STATIC @@ -325,7 +325,7 @@ #define PACKAGE_NAME "GStreamer Base Plug-ins" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer Base Plug-ins 1.3.90" +#define PACKAGE_STRING "GStreamer Base Plug-ins 1.3.91" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gst-plugins-base" @@ -334,7 +334,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.3.90" +#define PACKAGE_VERSION "1.3.91" /* directory where plugins are located */ #ifdef _DEBUG @@ -368,7 +368,7 @@ #undef USE_TREMOLO /* Version number of package */ -#define VERSION "1.3.90" +#define VERSION "1.3.91" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ -- GitLab