diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-09-19 14:19:08 +0300 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-09-19 14:19:08 +0300 |
commit | 23205f04f145a2ae14d20370ca5a8588de7ce591 (patch) | |
tree | 5221dbce14062150a9af0a0a3bfcbb10f16e5784 | |
parent | 39ee08f250f61ec5086fc34d63d5b0ce03e440e8 (diff) |
Release 1.4.21.4.2
-rw-r--r-- | ChangeLog | 177 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | RELEASE | 25 | ||||
-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, 208 insertions, 22 deletions
@@ -1,9 +1,182 @@ +=== release 1.4.2 === + +2014-09-19 Sebastian Dröge <slomo@coaxion.net> + + * configure.ac: + releasing 1.4.2 + +2014-09-19 00:33:58 +0100 Tim-Philipp Müller <tim@centricular.com> + + * docs/pwg/advanced-tagging.xml: + * docs/pwg/intro-basics.xml: + docs: pwg: fix some links to the API docs + https://bugzilla.gnome.org/show_bug.cgi?id=736762 + +2014-09-17 17:17:10 +0200 Ognyan Tonchev <ognyan@axis.com> + + * plugins/elements/gsttypefindelement.c: + typefindelement: do not leak sticky events in flush_stop + https://bugzilla.gnome.org/show_bug.cgi?id=736813 + +2014-09-16 13:48:18 +0200 Ognyan Tonchev <ognyan@axis.com> + + * gst/gstevent.c: + event: add annotations to gst_event_parse_toc_select() + https://bugzilla.gnome.org/show_bug.cgi?id=736739 + +2014-09-16 12:17:48 +0200 Ognyan Tonchev <ognyan@axis.com> + + * gst/gstquery.c: + query: Add annotations to gst_query_add_allocation_pool() + https://bugzilla.gnome.org/show_bug.cgi?id=736736 + +2014-09-11 18:01:58 -0300 Thiago Santos <thiagoss@osg.samsung.com> + + * plugins/elements/gstmultiqueue.c: + * plugins/elements/gstmultiqueue.h: + multiqueue: do not post messages holding the lock + It might cause deadlocks to post messages while holding the multiqueue + lock. To avoid this a new boolean flag is set whenever a new buffering percent + is found. The message is posted after the lock can be 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=736295 + +2014-09-15 16:38:17 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com> + + * libs/gst/base/gstbasesrc.c: + basesrc: handle reference in set_allocation rather than in prepare_allocation + Otherwise we can forget to unref objects in error cases. + https://bugzilla.gnome.org/show_bug.cgi?id=736680 + +2014-09-15 13:06:40 +0300 Sebastian Dröge <sebastian@centricular.com> + + * libs/gst/check/gstcheck.c: + check: Use the name parameter of gst_check_setup_src_pad_by_name() and the sink variant + This was hardcoded to "sink" / "src" by accident in previous refactoring. + +2014-09-10 14:53:00 +0200 Ognyan Tonchev <ognyan@axis.com> + + * gst/gstquery.c: + query: add annotations to gst_query_set_nth_allocation_pool() + https://bugzilla.gnome.org//show_bug.cgi?id=736424 + +2014-09-11 09:35:17 +0200 Rémi Lefèvre <remi.lefevre@parrot.com> + + * plugins/elements/gstvalve.c: + valve: fix typo in description + https://bugzilla.gnome.org/show_bug.cgi?id=736455 + +2014-08-27 17:06:57 +0530 Ravi Kiran K N <ravi.kiran@samsung.com> + + * plugins/elements/gstoutputselector.c: + output-selector: Send all events to active src pad and EOS to all src pads + Fixes tests/icles/output-selector-test + https://bugzilla.gnome.org/show_bug.cgi?id=729811 + +2014-09-03 17:38:16 +0100 Tim-Philipp Müller <tim@centricular.com> + + * gst/gstdevicemonitor.c: + devicemonitor: fix typo in sample code in docs + https://bugzilla.gnome.org/show_bug.cgi?id=735975 + +2014-08-07 12:18:04 +0200 Thibault Saunier <thibault.saunier@collabora.com> + + * plugins/elements/gstmultiqueue.c: + multiqueue: Not post BUFFERING message if one of the singlequeue doesn't need it + Imagine the following 'pipeline' + -------------- + p1/| 'fullqueue' |--- 'laggy' downstream + --------- / | | + -| demuxer | | multiqueue | + --------- \ | | + p2\| 'emptyqueue' |--- 'fast' downstream + -------------- + In the case downstream of one single queue (fullqueue) has (a lot of) latency + (for example for reverse playback with video), we can end up having the other + SingleQueue (emptyqueue) emptied, before that fullqueue gets + unblocked. In the meantime, the demuxer tries to push on fullqueue, and + is blocking there. + In that case the current code will post a BUFFERING message on the bus when + emptyqueue gets emptied, that leads to the application setting the pipeline state to + PAUSED. So now we end up in a situation where 'laggy downstream' is + prerolled and will not unblock anymore because the pipeline is set to + PAUSED, the fullequeue does not have a chance to be emptied and + the emptyqueue can not get filled anymore so no more BUFERRING message + will be posted and the pipeline is stucked in PAUSED for the eternity. + Making sure that we do not try to "buffer" if one of the single queue + does not need buffering, prevents this situtation from happening though it lets the + oportunity for buffering in all other cases. + That implements a new logic where we need all singlequeue to need + buffering for the multiqueue to actually state buffering is needed, + taking the maximum buffering of the single queue as the reference point. + https://bugzilla.gnome.org/show_bug.cgi?id=734412 + +2014-08-26 20:14:40 +0200 Arnaud Vrac <avrac@freebox.fr> + + * gst/gstbuffer.c: + buffer: do not touch memory tag flag when copying buffer flags + The tag memory flag will be set later if the memory is also copied. This + patch avoids buffers being freed needlessly in bufferpools. + https://bugzilla.gnome.org/show_bug.cgi?id=735574 + === release 1.4.1 === -2014-08-27 Sebastian Dröge <slomo@coaxion.net> +2014-08-27 15:03:36 +0300 Sebastian Dröge <sebastian@centricular.com> + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.4.1 + * docs/plugins/inspect/plugin-coreelements.xml: + * gstreamer.doap: + * win32/common/config.h: + * win32/common/gstversion.h: + Release 1.4.1 + +2014-08-27 14:22:21 +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-08-21 14:02:16 +0100 Tim-Philipp Müller <tim@centricular.com> @@ -1,2 +1,2 @@ -This is GStreamer 1.4.1 +This is GStreamer 1.4.2 @@ -1,6 +1,5 @@ -Release notes for GStreamer 1.4.1 - +Release notes for GStreamer 1.4.2 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 @@ -48,11 +47,13 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Bugs fixed in this release - * 732851 : funnel: storing sticky events after event callback - * 733805 : poll: WAKE_EVENT() reports false negatives on W32 - * 733974 : gstbufferpool::default_alloc_buffer does not fail if buffer allocation fails - * 734688 : queue: race when receiving flush-stop event during shutdown, task gets re-started - * 734773 : Add allow-none annotation for gst_bin_new() + * 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 ==== Download ==== @@ -89,11 +90,13 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Mohammed Sameer + * Arnaud Vrac + * Aurélien Zanelli + * Ognyan Tonchev + * Ravi Kiran K N + * Rémi Lefèvre * Sebastian Dröge - * Sebastian Rasmussen - * Srimanta Panda * Thiago Santos + * Thibault Saunier * Tim-Philipp Müller - * Руслан Ижбулатов
\ No newline at end of file diff --git a/configure.ac b/configure.ac index f3fa7e25f..98f9325dc 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.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer]) +AC_INIT([GStreamer],[1.4.2],[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, 401, 0, 401) +AS_LIBTOOL(GST, 402, 0, 402) dnl *** autotools stuff **** diff --git a/docs/plugins/inspect/plugin-coreelements.xml b/docs/plugins/inspect/plugin-coreelements.xml index 494ac5012..5256fe9d4 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.1</version> + <version>1.4.2</version> <license>LGPL</license> <source>gstreamer</source> <package>GStreamer source release</package> diff --git a/gstreamer.doap b/gstreamer.doap index f8e866c01..7bc757448 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.2</revision> + <branch>1.4</branch> + <name></name> + <created>2014-09-19</created> + <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.4.2.tar.xz" /> + </Version> + </release> + + <release> + <Version> <revision>1.4.1</revision> <branch>1.4</branch> <name></name> diff --git a/win32/common/config.h b/win32/common/config.h index 928b84190..980e128f4 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-08-27" +#define GST_PACKAGE_RELEASE_DATETIME "2014-09-19" /* 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.1" +#define PACKAGE_STRING "GStreamer 1.4.2" /* 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.1" +#define PACKAGE_VERSION "1.4.2" /* directory where plugins are located */ #ifdef _DEBUG @@ -401,7 +401,7 @@ #undef USE_POISONING /* Version number of package */ -#define VERSION "1.4.1" +#define VERSION "1.4.2" /* 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 7f9f0295b..381d6cae5 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 (1) +#define GST_VERSION_MICRO (2) /** * GST_VERSION_NANO: * |