diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2018-10-02 23:11:34 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2018-10-02 23:11:35 +0100 |
commit | b83bce26e83694e3abd1d8b7caaffa417de51809 (patch) | |
tree | 77442b5fdfcaf91c1fef575704e9a2d7b8bf2464 | |
parent | 411f93f390c818bbab81ed4abcab159e9bd19d3b (diff) |
Release 1.14.41.14.4
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | NEWS | 40 | ||||
-rw-r--r-- | RELEASE | 2 | ||||
-rw-r--r-- | configure.ac | 12 | ||||
-rw-r--r-- | gst-rtsp-server.doap | 10 | ||||
-rw-r--r-- | meson.build | 2 |
6 files changed, 67 insertions, 11 deletions
@@ -1,3 +1,15 @@ +=== release 1.14.4 === + +2018-10-02 23:11:34 +0100 Tim-Philipp Müller <tim@centricular.com> + + * ChangeLog: + * NEWS: + * RELEASE: + * configure.ac: + * gst-rtsp-server.doap: + * meson.build: + Release 1.14.4 + === release 1.14.3 === 2018-09-16 16:31:53 +0100 Tim-Philipp Müller <tim@centricular.com> @@ -1480,10 +1480,44 @@ For a full list of bugfixes see Bugzilla. Note that this is not the full list of changes. For the full list of changes please refer to the GIT logs or ChangeLogs of the particular modules. -1.14.4 (future) +1.14.4 -The fourth 1.14 bug-fix release (1.14.4) is scheduled to be released -around October 2018. +The fourth 1.14 bug-fix release (1.14.4) was released on 2 October 2018. + +This release only contains bugfixes and it should be safe to update from +1.14.x. + +Highlighted bugfixes in 1.14.4 + +- glviewconvert: wait and set the gl sync meta on buffers +- glviewconvert: Copy composition meta from the primary buffer to both + outputs +- glcolorconvert: Don’t copy overlay composition meta over to NULL + outbufs +- matroskademux: add functionality needed for MSE use case fixing + youtube playback in epiphany/webkit-gtk +- msdk: fix build on windows +- opusenc: fix another crash on 32-bit x86 on windows (alignment issue + in SSE optimisations) +- osxaudio: add support for parsing more channel layouts +- tagdemux: Use upstream GST_EVENT_STREAM_START (and stream-id) if + present +- vorbisdec: fix header handling regression: init decoder immediately + once we have headers +- wasapisink: recover from low buffer levels in shared mode +- fix GstSegment unit test which would fail on some 32-bit x86 CPUs + +Contributors to 1.14.4 + +Alicia Boya García, Christoph Reiter, Edward Hervey, Jan Schmidt, +Matthew Waters, Nicola Murino, Nicolas Dufresne, Sebastian Dröge, +Tim-Philipp Müller, Wangfei, and many others. Thank you all. + +List of bugs fixed in 1.14.4 + +For a full list of bugfixes see Bugzilla. Note that this is not the full +list of changes. For the full list of changes please refer to the GIT +logs or ChangeLogs of the particular modules. Known Issues @@ -1,4 +1,4 @@ -This is GStreamer gst-rtsp-server 1.14.3. +This is GStreamer gst-rtsp-server 1.14.4. The GStreamer team is pleased to announce another bug-fix release in the stable 1.x API series of your favourite cross-platform multimedia framework! diff --git a/configure.ac b/configure.ac index f8c5dd4..ac751d3 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ(2.69) dnl initialize autoconf dnl when going to/from release please set the nano (fourth number) right ! dnl releases only do Wall, cvs and prerelease does Werror too -AC_INIT([GStreamer RTSP Server Library], [1.14.3], +AC_INIT([GStreamer RTSP Server Library], [1.14.4], [http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer], [gst-rtsp-server]) AG_GST_INIT @@ -53,13 +53,13 @@ dnl 1.2.5 => 205 dnl 1.10.9 (who knows) => 1009 dnl dnl sets GST_LT_LDFLAGS -AS_LIBTOOL(GST, 1403, 0, 1403) +AS_LIBTOOL(GST, 1404, 0, 1404) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.14.3 -GSTPB_REQ=1.14.3 -GSTPG_REQ=1.14.3 -GSTPD_REQ=1.14.3 +GST_REQ=1.14.4 +GSTPB_REQ=1.14.4 +GSTPG_REQ=1.14.4 +GSTPD_REQ=1.14.4 dnl *** autotools stuff **** diff --git a/gst-rtsp-server.doap b/gst-rtsp-server.doap index b701f46..779e272 100644 --- a/gst-rtsp-server.doap +++ b/gst-rtsp-server.doap @@ -32,6 +32,16 @@ RTSP server library based on GStreamer <release> <Version> + <revision>1.14.4</revision> + <branch>1.14</branch> + <name></name> + <created>2018-10-02</created> + <file-release rdf:resource="https://gstreamer.freedesktop.org/src/gst-rtsp-server/gst-rtsp-server-1.14.4.tar.xz" /> + </Version> + </release> + + <release> + <Version> <revision>1.14.3</revision> <branch>1.14</branch> <name></name> diff --git a/meson.build b/meson.build index 002e421..0078ec2 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('gst-rtsp-server', 'c', - version : '1.14.3', + version : '1.14.4', meson_version : '>= 0.40.1', default_options : ['warning_level=1', 'buildtype=debugoptimized']) |