summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-03-15 11:56:10 +0200
committerSebastian Dröge <sebastian@centricular.com>2016-03-15 11:56:10 +0200
commitb6859ed71f6d4c27a5174157a0e94064540b62a8 (patch)
tree41d41df56735867daa29ee2dfc0f03926ecfdb05
parent18a56b9b239cce188f69356bb7d0dc3051458f3c (diff)
Release 1.7.911.7.91
-rw-r--r--ChangeLog117
-rw-r--r--NEWS2
-rw-r--r--RELEASE29
-rw-r--r--configure.ac4
-rw-r--r--docs/plugins/inspect/plugin-coreelements.xml2
-rw-r--r--gstreamer.doap10
-rw-r--r--win32/common/config.h8
-rw-r--r--win32/common/gstversion.h2
8 files changed, 143 insertions, 31 deletions
diff --git a/ChangeLog b/ChangeLog
index d55a1bacfa..2941958403 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,122 @@
+=== release 1.7.91 ===
+
+2016-03-15 Sebastian Dröge <slomo@coaxion.net>
+
+ * configure.ac:
+ releasing 1.7.91
+
+2016-03-15 11:39:42 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * po/cs.po:
+ * po/fr.po:
+ * po/hu.po:
+ * po/ru.po:
+ * po/sr.po:
+ * po/sv.po:
+ * po/uk.po:
+ * po/vi.po:
+ * po/zh_CN.po:
+ po: Update translations
+
+2016-03-11 14:17:13 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ typefind: Store caps on the pad before emitting have-type but send it downstream only in the default signal handler
+ https://bugzilla.gnome.org/show_bug.cgi?id=763491
+
+2016-03-13 10:33:53 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: Recheck after pre_push_frame() if there are tags pending
+ Many parsers are storing tags only in pre_push_frame(), if we wouldn't check
+ afterwards we would push buffers before those tags and a lot of code assumes that
+ tags are available before preroll.
+ https://bugzilla.gnome.org/show_bug.cgi?id=763553
+
+2016-03-14 11:15:07 +0100 Carlos Rafael Giani <dv@pseudoterminal.org>
+
+ * plugins/elements/gstconcat.c:
+ concat: Fix comment typo
+
+2016-03-12 12:56:28 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ Revert "typefind: Store caps on the pad before emitting have-type but send it downstream only in the default signal handler"
+ This reverts commit 0835c3d6569dde0ec9e5524436367c7678cc4a4a.
+ It causes deadlocks in decodebin, which currently would deadlock if the caps
+ are already on the pad in have-type and are forwarded while copying the sticky
+ events (while holding the decodebin lock)... as that might cause the next
+ element to expose pads, which then calls back into decodebin and takes the
+ decodebin lock.
+ This needs some more thoughts.
+
+2016-03-11 14:17:13 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ typefind: Store caps on the pad before emitting have-type but send it downstream only in the default signal handler
+ https://bugzilla.gnome.org/show_bug.cgi?id=763491
+
+2016-03-10 10:35:40 +0100 Carlos Rafael Giani <dv@pseudoterminal.org>
+
+ * gst/gstelement.h:
+ * gst/gstobject.h:
+ docs: Flesh out element and object macro accessor docs a bit
+ https://bugzilla.gnome.org/show_bug.cgi?id=763213
+
+2016-03-09 16:06:58 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclientclock: Remove some obsolete code that can cause warnings
+
+2016-03-09 13:44:24 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclientclock: Don't reset calibration of internal clock whenever a new netclient clock is created
+ https://bugzilla.gnome.org/show_bug.cgi?id=763325
+
+2016-03-04 18:23:18 +0100 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
+
+ * gst/gstbuffer.h:
+ * tests/check/gst/gstbuffer.c:
+ gstbuffer: fix GstParentBufferMeta GType name
+ The alias define GST_TYPE_PARENT_BUFFER_META_API_TYPE is wrong and
+ breaks the usage of gst_buffer_get_parent_buffer_meta().
+ This patch fixes the GType alias and make another alias to keep the API
+ compatibility guarded by GST_DISABLE_DEPRECATED.
+ Also added a unit test.
+ https://bugzilla.gnome.org/show_bug.cgi?id=763112
+
+2016-03-02 10:37:09 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gsttracerrecord.c:
+ tracerrecord: Remove useless NULL check and add assertion for making assumptions explicit
+ gst_structure_new_empty() is not returning NULL in any valid scenarios,
+ checking for NULL here is useless. Especially because we would dereference any
+ NULL right after the NULL check again.
+ CID 1352037.
+ We previously check if the string ends on .class, as such strrchr() should
+ return something non-NULL. Add an assertion for that.
+ CID 1349642.
+
+2016-03-01 19:50:26 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstelement.c:
+ element: minor docs fix
+ Make gtk-doc happy.
+
=== release 1.7.90 ===
-2016-03-01 Sebastian Dröge <slomo@coaxion.net>
+2016-03-01 18:14:03 +0200 Sebastian Dröge <sebastian@centricular.com>
+ * ChangeLog:
+ * NEWS:
+ * RELEASE:
* configure.ac:
- releasing 1.7.90
+ * docs/plugins/inspect/plugin-coreelements.xml:
+ * gstreamer.doap:
+ * win32/common/config.h:
+ * win32/common/gstversion.h:
+ Release 1.7.90
2016-03-01 16:52:41 +0200 Sebastian Dröge <sebastian@centricular.com>
diff --git a/NEWS b/NEWS
index 8f11fc4c19..dec122b59e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,2 +1,2 @@
-This is GStreamer 1.7.90
+This is GStreamer 1.7.91
diff --git a/RELEASE b/RELEASE
index e1853870ae..35d8494e77 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,7 +1,7 @@
-Release notes for GStreamer 1.7.90
+Release notes for GStreamer 1.7.91
-The GStreamer team is pleased to announce the first release candidate of the stable
+The GStreamer team is pleased to announce the second release candidate of the stable
1.8 release series. The 1.8 release series is adding new features on top of
the 1.0, 1.2, 1.4 and 1.6 series and is part of the API and ABI-stable 1.x release
series of the GStreamer multimedia framework.
@@ -34,15 +34,11 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg)
Bugs fixed in this release
- * 728326 : Check for return values of gst_buffer_map and gst_memory_map
- * 759539 : Stopping a stream with AAC very soon after starting crashes
- * 760979 : tracers: Allow adding tracers programatically without defining environment variables
- * 762450 : tags: add GST_TAG_CONDUCTOR
- * 762702 : gst_bus_add_watch will SEGV when process reaches fd limit
- * 762778 : API: add gst_element_class_add_static_pad_template()
- * 762792 : amcvideodec: Can't render to Surface if the color format is not supported
- * 762845 : tests: ghostpad: Fix memory leak
- * 762849 : bus: GSource can access GPollFD after the bus was destroyed
+ * 763112 : gstbuffer: fix GstParentBufferMeta GType name
+ * 763213 : Add documentation about _NAME macros vs. _get_name functions
+ * 763325 : Multiple netclocks do not work anymore
+ * 763491 : typefind: behavior has changed on have-type signal, sets pad caps after signal handlers
+ * 763553 : baseparse: Not pushing tags before PREROLL
==== Download ====
@@ -79,15 +75,8 @@ subscribe to the gstreamer-devel list.
Contributors to this release
- * Adam Miartus
- * Edward Hervey
- * George Yunaev
- * James Stevenson
- * Mark Nauwelaerts
- * Nirbheek Chauhan
+ * Carlos Rafael Giani
* Sebastian Dröge
- * Thiago Santos
- * Thibault Saunier
* Tim-Philipp Müller
- * Vineeth TM
+ * Víctor Manuel Jáquez Leal
  \ No newline at end of file
diff --git a/configure.ac b/configure.ac
index 82da0ee463..c356917cba 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.7.90],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer])
+AC_INIT([GStreamer],[1.7.91],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer])
AG_GST_INIT
dnl initialize automake (we require GNU make)
@@ -62,7 +62,7 @@ dnl 1.2.5 => 205
dnl 1.10.9 (who knows) => 1009
dnl
dnl sets GST_LT_LDFLAGS
-AS_LIBTOOL(GST, 790, 0, 790)
+AS_LIBTOOL(GST, 791, 0, 791)
dnl *** autotools stuff ****
diff --git a/docs/plugins/inspect/plugin-coreelements.xml b/docs/plugins/inspect/plugin-coreelements.xml
index c0845e319c..d04f6c061b 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.7.90</version>
+ <version>1.7.91</version>
<license>LGPL</license>
<source>gstreamer</source>
<package>GStreamer source release</package>
diff --git a/gstreamer.doap b/gstreamer.doap
index 5e8b858954..944bdf4f5d 100644
--- a/gstreamer.doap
+++ b/gstreamer.doap
@@ -40,6 +40,16 @@ hierarchy, and a set of media-agnostic core elements.
<release>
<Version>
+ <revision>1.7.91</revision>
+ <branch>master</branch>
+ <name></name>
+ <created>2016-03-15</created>
+ <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.7.91.tar.xz" />
+ </Version>
+ </release>
+
+ <release>
+ <Version>
<revision>1.7.90</revision>
<branch>master</branch>
<name></name>
diff --git a/win32/common/config.h b/win32/common/config.h
index c4c645cbcc..4a4c27aa87 100644
--- a/win32/common/config.h
+++ b/win32/common/config.h
@@ -68,7 +68,7 @@
#define GST_PACKAGE_ORIGIN "Unknown package origin"
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
-#define GST_PACKAGE_RELEASE_DATETIME "2016-03-01"
+#define GST_PACKAGE_RELEASE_DATETIME "2016-03-15"
/* Define if static plugins should be built */
#undef GST_PLUGIN_BUILD_STATIC
@@ -462,7 +462,7 @@
#define PACKAGE_NAME "GStreamer"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "GStreamer 1.7.90"
+#define PACKAGE_STRING "GStreamer 1.7.91"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gstreamer"
@@ -471,7 +471,7 @@
#undef PACKAGE_URL
/* Define to the version of this package. */
-#define PACKAGE_VERSION "1.7.90"
+#define PACKAGE_VERSION "1.7.91"
/* directory where plugins are located */
#ifdef _DEBUG
@@ -515,7 +515,7 @@
#undef USE_POISONING
/* Version number of package */
-#define VERSION "1.7.90"
+#define VERSION "1.7.91"
/* 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 fea05c9f1b..1bc5de6b1c 100644
--- a/win32/common/gstversion.h
+++ b/win32/common/gstversion.h
@@ -60,7 +60,7 @@ G_BEGIN_DECLS
*
* The micro version of GStreamer at compile time:
*/
-#define GST_VERSION_MICRO (90)
+#define GST_VERSION_MICRO (91)
/**
* GST_VERSION_NANO:
*