From 4a9a7d61e56820a108aa78409d216d65e59ee0e3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 30 Sep 2016 13:03:42 +0300 Subject: [PATCH] Release 1.9.90 --- ChangeLog | 74 ++++++++++++++++++++++++++++++++++- NEWS | 2 +- RELEASE | 21 ++++------ configure.ac | 8 ++-- docs/plugins/inspect/plugin-libav.xml | 2 +- gst-libav.doap | 10 +++++ 6 files changed, 96 insertions(+), 21 deletions(-) diff --git a/ChangeLog b/ChangeLog index 406fa1d..e3d2e5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,79 @@ +=== release 1.9.90 === + +2016-09-30 Sebastian Dröge + + * configure.ac: + releasing 1.9.90 + +2016-09-29 12:01:59 +0300 Sebastian Dröge + + * ext/libav/gstavviddec.c: + avviddec: Use enum instead of magic numbers for the chroma siting values + +2016-09-14 11:31:07 +0200 Sebastian Dröge + + * configure.ac: + configure: Depend on gstreamer 1.9.2.1 + +2016-09-14 11:20:48 +0200 Sebastian Dröge + + * ext/libav/gstavaudenc.c: + * ext/libav/gstavcodecmap.c: + * ext/libav/gstavvidenc.c: + av: Cast AVContext::bit_rate to a guint before passing to varargs functions + We expect it to be a int or uint, however it changed the type to a + int64_t in later versions of ffmpeg. As such it would be passed as a 64 + bit value to varargs functions, while the consumer of the arguments + assumes only 32 bits. This causes crashes. + https://bugzilla.gnome.org/show_bug.cgi?id=771092 + +2016-09-10 20:52:01 +1000 Jan Schmidt + + * autogen.sh: + * common: + Automatic update of common submodule + From b18d820 to f980fd9 + +2016-09-10 09:58:11 +1000 Jan Schmidt + + * autogen.sh: + * common: + Automatic update of common submodule + From f49c55e to b18d820 + +2016-08-29 11:08:16 -0300 Thibault Saunier + + * config.h.meson: + * configure.ac: + * ext/libav/meson.build: + * meson.build: + build: Do not link plugin against lzma and bz2 if using system install + And bump version to 1.9.2 + +2016-09-02 16:55:46 +0100 Iain Lane + + * ext/libav/gstavviddec.c: + * ext/libav/gstavvidenc.c: + Only use AV_CODEC_ID_WRAPPED_AVFRAME on new enough libavcodecs + https://bugzilla.gnome.org/show_bug.cgi?id=770753 + +2016-09-01 12:31:21 +0300 Sebastian Dröge + + * configure.ac: + Back to development + === release 1.9.2 === -2016-09-01 Sebastian Dröge +2016-09-01 12:31:10 +0300 Sebastian Dröge + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.9.2 + * docs/plugins/gst-libav-plugins.hierarchy: + * docs/plugins/inspect/plugin-libav.xml: + * gst-libav.doap: + Release 1.9.2 2016-08-29 17:03:18 +0300 Sebastian Dröge diff --git a/NEWS b/NEWS index 027c018..072b2df 100644 --- a/NEWS +++ b/NEWS @@ -1 +1 @@ -This is GStreamer 1.9.2 +This is GStreamer 1.9.90 diff --git a/RELEASE b/RELEASE index 63ecd7d..dc4005d 100644 --- a/RELEASE +++ b/RELEASE @@ -1,13 +1,10 @@ -Release notes for GStreamer libav Plugins 1.9.2 +Release notes for GStreamer libav Plugins 1.9.90 -The GStreamer team is pleased to announce the second release of the unstable -1.9 release series, which marks the feature freeze for 1.10. The 1.9 release -series is adding new features on top of the 1.0, 1.2, 1.4, 1.6 and 1.8 series -and is part of the API and ABI-stable 1.x release series of the GStreamer -multimedia framework. The unstable 1.9 release series will lead to the stable -1.10 release series in the next weeks. Any newly added API can still change -until that point. +The GStreamer team is pleased to announce the first release candidate of the +stable 1.10 release series. The 1.10 release series is adding new features on +top of the 1.0, 1.2, 1.4, 1.6 and 1.8 series and is part of the API and +ABI-stable 1.x release series of the GStreamer multimedia framework. Binaries for Android, iOS, Mac OS X and Windows will be provided in the next days. @@ -39,7 +36,7 @@ contains a set of less supported plugins that haven't passed the Bugs fixed in this release - * 769809 : libgstlibav fails on Linux + * 771092 : avenc: Got Caught SIGSEGV when using avenc_xxx ==== Download ==== @@ -76,10 +73,8 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Edward Hervey - * Josep Torra + * Iain Lane + * Jan Schmidt * Sebastian Dröge - * Stefan Sauer * Thibault Saunier - * Tim-Philipp Müller   \ No newline at end of file diff --git a/configure.ac b/configure.ac index 9f4f903..cdfca05 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,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 libav, 1.9.2.1, +AC_INIT(GStreamer libav, 1.9.90, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, gst-libav) @@ -40,11 +40,11 @@ GST_API_VERSION=1.0 AC_SUBST(GST_API_VERSION) AG_GST_LIBTOOL_PREPARE -AS_LIBTOOL(GST, 902, 0, 902) +AS_LIBTOOL(GST, 990, 0, 990) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.9.2.1 -GST_PBREQ=1.9.2.1 +GST_REQ=1.9.90 +GST_PBREQ=1.9.90 ORC_REQ=0.4.16 ORC_CHECK([$ORC_REQ]) diff --git a/docs/plugins/inspect/plugin-libav.xml b/docs/plugins/inspect/plugin-libav.xml index 078f864..624c3ba 100644 --- a/docs/plugins/inspect/plugin-libav.xml +++ b/docs/plugins/inspect/plugin-libav.xml @@ -3,7 +3,7 @@ All libav codecs and formats (local snapshot) ../../ext/libav/.libs/libgstlibav.so libgstlibav.so - 1.9.2 + 1.9.90 LGPL gst-libav libav diff --git a/gst-libav.doap b/gst-libav.doap index e9f1035..a7fd524 100644 --- a/gst-libav.doap +++ b/gst-libav.doap @@ -34,6 +34,16 @@ colorspace conversion elements. + 1.9.90 + master + + 2016-09-30 + + + + + + 1.9.2 master -- 2.7.4