diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2013-07-30 11:03:58 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2013-07-30 11:03:58 +0100 |
commit | f3c4f7455439da9b7569b0950f6168962f5ba717 (patch) | |
tree | d6598659c4f6825a50c3bc1a640873e3ddc67cbc | |
parent | 7392c42263bd1a03c81fcb6049734cbffe200aaa (diff) |
Release 1.0.91.0.9
-rw-r--r-- | ChangeLog | 54 | ||||
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | RELEASE | 19 | ||||
-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, 90 insertions, 23 deletions
@@ -1,9 +1,59 @@ +=== release 1.0.9 === + +2013-07-30 Tim-Philipp Müller <tim@centricular.net> + + * configure.ac: + releasing 1.0.9 + +2013-07-29 11:05:09 +0200 Sebastian Dröge <slomo@circular-chaos.org> + + * plugins/elements/gsttypefindelement.c: + typefind: Only advance offset by the number of bytes we actually read + There might be a short read at EOS. + +2013-07-22 08:34:44 +0200 Sebastian Dröge <slomo@circular-chaos.org> + + * gst/gststructure.c: + structure: gst_structure_copy() returns a new structure with (transfer full) + +2013-03-07 11:46:33 +0100 Sebastian Dröge <sebastian.droege@collabora.co.uk> + + * gst/gstquery.c: + query: gst_query_get_n_allocation_params() returns a new ref to the allocator + +2013-07-16 14:44:03 +0100 Tim-Philipp Müller <tim@centricular.net> + + * libs/gst/net/gstnettimeprovider.c: + timeprovider: g-i: allow None as address for gst_net_time_provider_new() + Conflicts: + libs/gst/net/gstnettimeprovider.c + +2013-06-17 10:25:20 +0200 Wim Taymans <wim.taymans@collabora.co.uk> + + * libs/gst/base/gstbasesink.c: + basesink: call state change in all cases + When we asynchronously go from READY to PLAYING, also call the + state change function so that subclasses can update their state for PLAYING. + Because the PREROLL lock is not recursive, we can't make this without + races and we must assume for now that the subclass can handle concurrent calls + to PAUSED->PLAYING and PLAYING->PAUSED. We can make this assumption because not + many elements actually do something in those state changes and the ones that + did would be broken even more without this change. + https://bugzilla.gnome.org/show_bug.cgi?id=702282 + === release 1.0.8 === -2013-07-12 Tim-Philipp Müller <tim@centricular.net> +2013-07-12 00:25:09 +0100 Tim-Philipp Müller <tim@centricular.net> + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.0.8 + * docs/plugins/inspect/plugin-coreelements.xml: + * gstreamer.doap: + * win32/common/config.h: + * win32/common/gstversion.h: + Release 1.0.8 2013-07-08 15:26:38 +0100 Tim-Philipp Müller <tim.muller@collabora.co.uk> @@ -1,4 +1,16 @@ -This is GStreamer 1.0.8 +This is GStreamer 1.0.9 + +Changes since 1.0.8: + + * basesink: when we asynchronously go from READY to PLAYING, also + call the state change function so that subclasses can update + their state for PLAYING, esp. audio sinks added to the pipeline + dynamically + * bindings: gobject-introspection annotation fixes + +Bugs fixed since 1.0.8: + + * 702282 : basesink: makes element go to PLAYING without PAUSED_TO_PLAYING transition Changes since 1.0.7: @@ -1,5 +1,5 @@ -Release notes for GStreamer 1.0.8 +Release notes for GStreamer 1.0.9 The GStreamer team is proud to announce a new bug-fix release @@ -42,16 +42,15 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Features of this release - * basesink: improve position reporting without clock - * fix caps leak in typefind/decodebin/playbin - * gobject-introspection fixes for bindings + * basesink: when we asynchronously go from READY to PLAYING, also + call the state change function so that subclasses can update + their state for PLAYING, esp. audio sinks added to the pipeline + dynamically + * bindings: gobject-introspection annotation fixes Bugs fixed in this release - * 693365 : gst_structure_is_subset false positive - * 702617 : buffer: Wrong size/index handling when merging memory - * 702778 : REGRESSION : Backward seeking doesn't work with mp3 files. - * 703562 : Missing few allow-none annotation + * 702282 : basesink: makes element go to PLAYING without PAUSED_TO_PLAYING transition ==== Download ==== @@ -88,11 +87,7 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Nicolas Dufresne - * Olivier Crête - * Paul HENRYS * Sebastian Dröge - * Thibault Saunier * Tim-Philipp Müller * Wim Taymans
\ No newline at end of file diff --git a/configure.ac b/configure.ac index ecce763d3..df169de57 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.0.8, +AC_INIT(GStreamer, 1.0.9, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, gstreamer) AG_GST_INIT @@ -58,7 +58,7 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0 dnl - interfaces added -> increment AGE dnl - interfaces removed -> AGE = 0 dnl sets GST_LT_LDFLAGS -AS_LIBTOOL(GST, 7, 0, 7) +AS_LIBTOOL(GST, 8, 0, 8) dnl *** autotools stuff **** diff --git a/docs/plugins/inspect/plugin-coreelements.xml b/docs/plugins/inspect/plugin-coreelements.xml index df9d146e8..b7637f08e 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.0.8</version> + <version>1.0.9</version> <license>LGPL</license> <source>gstreamer</source> <package>GStreamer source release</package> diff --git a/gstreamer.doap b/gstreamer.doap index 154e1894d..a29214ce1 100644 --- a/gstreamer.doap +++ b/gstreamer.doap @@ -40,6 +40,16 @@ hierarchy, and a set of media-agnostic core elements. <release> <Version> + <revision>1.0.9</revision> + <branch>1.0</branch> + <name></name> + <created>2013-07-30</created> + <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.0.9.tar.xz" /> + </Version> + </release> + + <release> + <Version> <revision>1.0.8</revision> <branch>1.0</branch> <name></name> diff --git a/win32/common/config.h b/win32/common/config.h index d620210ec..834aba16c 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 "2013-07-11" +#define GST_PACKAGE_RELEASE_DATETIME "2013-07-30" /* Define if static plugins should be built */ #undef GST_PLUGIN_BUILD_STATIC @@ -343,7 +343,7 @@ #define PACKAGE_NAME "GStreamer" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer 1.0.8" +#define PACKAGE_STRING "GStreamer 1.0.9" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gstreamer" @@ -352,7 +352,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.0.8" +#define PACKAGE_VERSION "1.0.9" /* directory where plugins are located */ #ifdef _DEBUG @@ -390,7 +390,7 @@ #undef USE_POISONING /* Version number of package */ -#define VERSION "1.0.8" +#define VERSION "1.0.9" /* 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 9090e55f1..6b06db1d4 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 (8) +#define GST_VERSION_MICRO (9) /** * GST_VERSION_NANO: * |