From ae4c70813b936c5c507a8f47d0532612f1419e50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 18 Dec 2014 12:27:58 +0100 Subject: [PATCH] Release 1.4.5 --- ChangeLog | 157 ++++++++++++++++++- NEWS | 2 +- RELEASE | 23 ++- configure.ac | 4 +- docs/plugins/inspect/plugin-coreelements.xml | 2 +- gstreamer.doap | 10 ++ win32/common/config.h | 8 +- win32/common/gstversion.h | 2 +- 8 files changed, 183 insertions(+), 25 deletions(-) diff --git a/ChangeLog b/ChangeLog index 11bdb023d6..2ad7419e7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,160 @@ -=== release 1.4.4 === +=== release 1.4.5 === -2014-11-06 Sebastian Dröge +2014-12-18 Sebastian Dröge * configure.ac: - releasing 1.4.4 + releasing 1.4.5 + +2014-12-16 12:21:59 +0100 Wim Taymans + + * gst/gstbufferpool.c: + bufferpool: log reason for discarded buffers + PERFORMANCE log the reason why a buffer could not be recycled in the + bufferpool. + +2014-10-07 16:44:45 +0200 Edward Hervey + + * libs/gst/base/gstbasesink.c: + basesink: clamp reported position based on direction + When using a negative rate (rate being segment.rate * segment.applied_rate), + we will end up reporting decreasing positions, therefore adjust the clamping + against last reported value accordingly. + Fixes positions getting properly reported with applied_rate < 0.0 + https://bugzilla.gnome.org/show_bug.cgi?id=738092 + +2014-11-28 14:15:30 -0300 Thiago Santos + + * libs/gst/base/gstbaseparse.c: + baseparse: update the duration variable before emitting the bus + Otherwise the application might still get the old value if it asks + between the message and the real update. + +2014-11-28 16:25:02 +0100 Edward Hervey + + * gst/gstelement.c: + element: Fix doc and default implementation of send_event + The documentation states that gst_element_send_event is to "send an event + to an element". + Therefore we *send* upstream events to a source pad and downstream events + to a sink pad + +2014-11-28 11:16:00 +0100 Edward Hervey + + * gst/gstelement.c: + element: Figure default send_event direction handling + If we get a downstream event we want to send it to a random SINK pad + (and vice-versa). + +2014-11-23 05:45:24 -0300 Thiago Santos + + * plugins/elements/gstqueue2.c: + queue2: percentage is relative to high-percent + When comparing percentage values, compare with 0-100 scale as it + has already been made relative to 0-high_percent, otherwise we mark + the queue as not buffering and report a 50% to the user. This leads to + a buffering stall as the user assumes the queue is still buffering but + it thinks it isn't. + https://bugzilla.gnome.org/show_bug.cgi?id=736969 + +2014-11-23 05:42:51 -0300 Thiago Santos + + * plugins/elements/gstmultiqueue.c: + multiqueue: percentage is an absolute value + multiqueue's queues stored percent value is the percentage from 0 + to 100 (max-size-*) and should be compared with the requested limit + (high_percentage) set by the user and not with 100% to check if + buffering should stop. Otherwise we are only stopping buffering when the + queue gets completely full. + +2014-11-20 13:34:32 +0100 Wim Taymans + + * gst/gststructure.c: + * tests/check/gst/gststructure.c: + structure: don't overread input when searching for " + When searching for the string terminator don't read past the ending + 0-byte when escaping characters. + Add unit test for various escaping cases. + +2014-11-03 17:46:57 +0000 Vincent Penquerc'h + + * gst/gstpad.c: + pad: fail dropped queries + Previously, dropping a query from a pad probe would deem the + query succeeded, and the caller might then assume the query's + results are valid, and thus dereference an invalid object + such as a GstCaps. + We now assume dropped queries did not succeed. Dropped events + and buffers are still deemed a success. + +2014-11-12 11:30:51 +0100 Haakon Sporsheim + + * gst/gsttask.c: + * tests/check/gst/gsttask.c: + task: Fix pause/stop race condition + If a task thread is calling pause on it self and the + controlling/"main" thread stops the task, it could end in a race + where gst_task_func loops and then checks for paused after the + controlling thread just changed the task state to stopped. + Hence the task would actually call func again even though it was + both paused and stopped. + https://bugzilla.gnome.org/show_bug.cgi?id=740001 + +=== release 1.4.4 === + +2014-11-06 12:51:42 +0100 Sebastian Dröge + + * ChangeLog: + * NEWS: + * RELEASE: + * configure.ac: + * docs/plugins/inspect/plugin-coreelements.xml: + * gstreamer.doap: + * win32/common/config.h: + * win32/common/gstversion.h: + Release 1.4.4 + +2014-11-06 12:25:58 +0100 Sebastian Dröge + + * 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-10-24 12:51:07 +0100 Tim-Philipp Müller diff --git a/NEWS b/NEWS index b40d1b6ba4..910c80ec01 100644 --- a/NEWS +++ b/NEWS @@ -1,2 +1,2 @@ -This is GStreamer 1.4.4 +This is GStreamer 1.4.5 diff --git a/RELEASE b/RELEASE index f18d394a37..bd64ff84a0 100644 --- a/RELEASE +++ b/RELEASE @@ -1,5 +1,5 @@ -Release notes for GStreamer 1.4.4 +Release notes for GStreamer 1.4.5 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,10 +48,9 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Bugs fixed in this release - * 737498 : multiqueue: doesn't take GAP event into account when calculating current level - * 737794 : multiqueue: deadlock if queue overruns with serialized events - * 737999 : systemclock: multi-thread entry status issue - * 738198 : multiqueue: Does not wake up not-linked streams on EOS + * 736969 : queue2: dead lock when buffering + * 738092 : basesink: clamp reported position based on direction + * 740001 : task: race condition when pausing and stopping ==== Download ==== @@ -87,12 +87,9 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Aleix Conchillo Flaqué - * Andrei Sarakeev - * Guillaume Desmottes - * Matej Knopp - * Nicolas Huet - * Sebastian Dröge - * Thibault Saunier - * Tim-Philipp Müller + * Edward Hervey + * Haakon Sporsheim + * Thiago Santos + * Vincent Penquerc'h + * Wim Taymans   \ No newline at end of file diff --git a/configure.ac b/configure.ac index a154c5c7dd..53c1afec37 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.4],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer]) +AC_INIT([GStreamer],[1.4.5],[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, 404, 0, 404) +AS_LIBTOOL(GST, 405, 0, 405) dnl *** autotools stuff **** diff --git a/docs/plugins/inspect/plugin-coreelements.xml b/docs/plugins/inspect/plugin-coreelements.xml index 72cf7c3be3..96ddeb403b 100644 --- a/docs/plugins/inspect/plugin-coreelements.xml +++ b/docs/plugins/inspect/plugin-coreelements.xml @@ -3,7 +3,7 @@ GStreamer core elements ../../plugins/elements/.libs/libgstcoreelements.so libgstcoreelements.so - 1.4.4 + 1.4.5 LGPL gstreamer GStreamer source release diff --git a/gstreamer.doap b/gstreamer.doap index a2fda10bd2..4c3031f2a3 100644 --- a/gstreamer.doap +++ b/gstreamer.doap @@ -38,6 +38,16 @@ hierarchy, and a set of media-agnostic core elements. + + + 1.4.5 + 1.4 + + 2014-12-18 + + + + 1.4.4 diff --git a/win32/common/config.h b/win32/common/config.h index 913c461b0f..87eb488c66 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-11-06" +#define GST_PACKAGE_RELEASE_DATETIME "2014-12-18" /* 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.4" +#define PACKAGE_STRING "GStreamer 1.4.5" /* 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.4" +#define PACKAGE_VERSION "1.4.5" /* directory where plugins are located */ #ifdef _DEBUG @@ -401,7 +401,7 @@ #undef USE_POISONING /* Version number of package */ -#define VERSION "1.4.4" +#define VERSION "1.4.5" /* 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 a437b5b1b5..b7e8f3e16e 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 (4) +#define GST_VERSION_MICRO (5) /** * GST_VERSION_NANO: *