diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-09-24 12:19:55 +0300 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-09-24 12:19:55 +0300 |
commit | 188bec75e6b2bea68ad25de0975c77efc7bd29ca (patch) | |
tree | c805d46d4bf8eeb4b944deae5e8807ceb3dc1390 | |
parent | c9dfedb6c47bfcc73c99c04843464a83089b0aa1 (diff) |
Release 1.4.31.4.3
-rw-r--r-- | ChangeLog | 108 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | RELEASE | 20 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | docs/plugins/inspect/plugin-coreelements.xml | 2 | ||||
-rw-r--r-- | gstreamer.doap | 10 | ||||
-rw-r--r-- | win32/common/config.h | 8 | ||||
-rw-r--r-- | win32/common/gstversion.h | 2 |
8 files changed, 130 insertions, 26 deletions
@@ -1,9 +1,113 @@ +=== release 1.4.3 === + +2014-09-24 Sebastian Dröge <slomo@coaxion.net> + + * configure.ac: + releasing 1.4.3 + +2014-06-03 14:23:30 +0200 Thibault Saunier <tsaunier@gnome.org> + + * plugins/elements/gstcapsfilter.c: + capsfilter: Remove EOS event from pending_event list on FLUSH_STOP + https://bugzilla.gnome.org/show_bug.cgi?id=709868 + +2014-09-22 19:05:32 +0200 Marcin Kolny <marcin.kolny@flytronic.pl> + + * gst/gstdatetime.h: + datetime: added missing include directives + https://bugzilla.gnome.org/show_bug.cgi?id=737133 + +2014-09-23 14:31:29 +0200 Thibault Saunier <tsaunier@gnome.org> + + * plugins/elements/gstqueue.c: + queue: Do not forget to release the QUEUE_LOCK in the out_flow_error path + Avoiding deadlocks! + +2014-09-22 09:33:04 +0200 Thibault Saunier <tsaunier@gnome.org> + + * plugins/elements/gstqueue.c: + queue: Do not hold GST_QUEUE_LOCK while posting ERROR messages + This might create deadlocks and we need to avoid holding element + specific lock while posting messages + For example a deadlock will happen if while posting the message, + someone connected on the bus (sync) tries to DOT the pipeline. + https://bugzilla.gnome.org/show_bug.cgi?id=737102 + +2014-08-13 14:02:47 +0200 Thibault Saunier <tsaunier@gnome.org> + + * scripts/git-update.sh: + script:udpate: Try to rebase local changes when updating + +2014-09-19 12:02:46 -0300 Thiago Santos <thiagoss@osg.samsung.com> + + * plugins/elements/gstqueue2.c: + * plugins/elements/gstqueue2.h: + queue2: do not post buffering messages holding the lock + It might cause deadlocks to post messages while holding the queue2 + lock. To avoid this a new boolean flag is set whenever a new + buffering percent is found. The message is posted after the lock + is released. + To make sure the buffering messages are posted in the right order, messages + are posted holding another lock. This prevents 2 threads trying to post + messages at the same time. + https://bugzilla.gnome.org/show_bug.cgi?id=736969 + === release 1.4.2 === -2014-09-19 Sebastian Dröge <slomo@coaxion.net> +2014-09-19 14:19:08 +0300 Sebastian Dröge <sebastian@centricular.com> + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.4.2 + * docs/plugins/inspect/plugin-coreelements.xml: + * gstreamer.doap: + * win32/common/config.h: + * win32/common/gstversion.h: + Release 1.4.2 + +2014-09-19 10:45:45 +0300 Sebastian Dröge <sebastian@centricular.com> + + * po/af.po: + * po/az.po: + * po/be.po: + * po/bg.po: + * po/ca.po: + * po/cs.po: + * po/da.po: + * po/de.po: + * po/el.po: + * po/en_GB.po: + * po/eo.po: + * po/es.po: + * po/eu.po: + * po/fi.po: + * po/fr.po: + * po/gl.po: + * po/hr.po: + * po/hu.po: + * po/id.po: + * po/it.po: + * po/ja.po: + * po/lt.po: + * po/nb.po: + * po/nl.po: + * po/pl.po: + * po/pt_BR.po: + * po/ro.po: + * po/ru.po: + * po/rw.po: + * po/sk.po: + * po/sl.po: + * po/sq.po: + * po/sr.po: + * po/sv.po: + * po/tr.po: + * po/uk.po: + * po/vi.po: + * po/zh_CN.po: + * po/zh_TW.po: + Update .po files 2014-09-19 00:33:58 +0100 Tim-Philipp Müller <tim@centricular.com> @@ -1,2 +1,2 @@ -This is GStreamer 1.4.2 +This is GStreamer 1.4.3 @@ -1,5 +1,5 @@ -Release notes for GStreamer 1.4.2 +Release notes for GStreamer 1.4.3 The GStreamer team is pleased to announce a bugfix release of the stable 1.4 release series. The 1.4 release series is adding new features on top @@ -24,6 +24,7 @@ some new features and more intrusive changes that were considered too risky as a bugfix. + This module, gstreamer, only contains core functionality. For actual media playback, you will need other modules. @@ -47,13 +48,8 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Bugs fixed in this release - * 734412 : multiqueue: The buffering logic can lead to a pipeline stuck in PAUSED forever - * 735574 : buffer: do not touch memory tag flag when copying buffer flags - * 736295 : multiqueue: posts buffering message holding lock - * 736424 : query: add annotations to gst_query_set_nth_allocation_pool - * 736680 : basesrc: possible pool and allocator leak in prepare_allocation() - * 736736 : query: add annotations to gst_query_add_allocation_pool - * 736813 : typefindelement leaks sticky events upon flush_stop + * 737102 : queue: Do not hold GST_QUEUE_LOCK while posting ERROR messages + * 737133 : Missing gstconfig.h include ==== Download ==== @@ -90,13 +86,7 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Arnaud Vrac - * Aurélien Zanelli - * Ognyan Tonchev - * Ravi Kiran K N - * Rémi Lefèvre - * Sebastian Dröge + * Marcin Kolny * Thiago Santos * Thibault Saunier - * Tim-Philipp Müller
\ No newline at end of file diff --git a/configure.ac b/configure.ac index 98f9325dc..324e0e9ba 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ dnl initialize autoconf dnl when going to/from release please set the nano (fourth number) right ! dnl releases only do Wall, git and prerelease does Werror too dnl -AC_INIT([GStreamer],[1.4.2],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer]) +AC_INIT([GStreamer],[1.4.3],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer]) AG_GST_INIT dnl initialize automake (we require GNU make) @@ -64,7 +64,7 @@ dnl 1.2.5 => 205 dnl 1.10.9 (who knows) => 1009 dnl dnl sets GST_LT_LDFLAGS -AS_LIBTOOL(GST, 402, 0, 402) +AS_LIBTOOL(GST, 403, 0, 403) dnl *** autotools stuff **** diff --git a/docs/plugins/inspect/plugin-coreelements.xml b/docs/plugins/inspect/plugin-coreelements.xml index 5256fe9d4..1ca39c1de 100644 --- a/docs/plugins/inspect/plugin-coreelements.xml +++ b/docs/plugins/inspect/plugin-coreelements.xml @@ -3,7 +3,7 @@ <description>GStreamer core elements</description> <filename>../../plugins/elements/.libs/libgstcoreelements.so</filename> <basename>libgstcoreelements.so</basename> - <version>1.4.2</version> + <version>1.4.3</version> <license>LGPL</license> <source>gstreamer</source> <package>GStreamer source release</package> diff --git a/gstreamer.doap b/gstreamer.doap index 7bc757448..7866a26d2 100644 --- a/gstreamer.doap +++ b/gstreamer.doap @@ -40,6 +40,16 @@ hierarchy, and a set of media-agnostic core elements. <release> <Version> + <revision>1.4.3</revision> + <branch>1.4</branch> + <name></name> + <created>2014-09-24</created> + <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.4.3.tar.xz" /> + </Version> + </release> + + <release> + <Version> <revision>1.4.2</revision> <branch>1.4</branch> <name></name> diff --git a/win32/common/config.h b/win32/common/config.h index 980e128f4..0a88ebe5b 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -62,7 +62,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-09-19" +#define GST_PACKAGE_RELEASE_DATETIME "2014-09-24" /* Define if static plugins should be built */ #undef GST_PLUGIN_BUILD_STATIC @@ -354,7 +354,7 @@ #define PACKAGE_NAME "GStreamer" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer 1.4.2" +#define PACKAGE_STRING "GStreamer 1.4.3" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gstreamer" @@ -363,7 +363,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.4.2" +#define PACKAGE_VERSION "1.4.3" /* directory where plugins are located */ #ifdef _DEBUG @@ -401,7 +401,7 @@ #undef USE_POISONING /* Version number of package */ -#define VERSION "1.4.2" +#define VERSION "1.4.3" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ diff --git a/win32/common/gstversion.h b/win32/common/gstversion.h index 381d6cae5..93c64673d 100644 --- a/win32/common/gstversion.h +++ b/win32/common/gstversion.h @@ -57,7 +57,7 @@ G_BEGIN_DECLS * * The micro version of GStreamer at compile time: */ -#define GST_VERSION_MICRO (2) +#define GST_VERSION_MICRO (3) /** * GST_VERSION_NANO: * |