Release 1.9.90

This commit is contained in:
Sebastian Dröge 2016-09-30 13:03:42 +03:00
parent e3558d4d07
commit 4a9a7d61e5
6 changed files with 97 additions and 22 deletions

View file

@ -1,9 +1,79 @@
=== release 1.9.2 === === release 1.9.90 ===
2016-09-01 Sebastian Dröge <slomo@coaxion.net> 2016-09-30 Sebastian Dröge <slomo@coaxion.net>
* configure.ac: * configure.ac:
releasing 1.9.2 releasing 1.9.90
2016-09-29 12:01:59 +0300 Sebastian Dröge <sebastian@centricular.com>
* 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 <sebastian@centricular.com>
* configure.ac:
configure: Depend on gstreamer 1.9.2.1
2016-09-14 11:20:48 +0200 Sebastian Dröge <sebastian@centricular.com>
* 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 <jan@centricular.com>
* autogen.sh:
* common:
Automatic update of common submodule
From b18d820 to f980fd9
2016-09-10 09:58:11 +1000 Jan Schmidt <jan@centricular.com>
* autogen.sh:
* common:
Automatic update of common submodule
From f49c55e to b18d820
2016-08-29 11:08:16 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
* 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 <iain@orangesquash.org.uk>
* 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 <sebastian@centricular.com>
* configure.ac:
Back to development
=== release 1.9.2 ===
2016-09-01 12:31:10 +0300 Sebastian Dröge <sebastian@centricular.com>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* 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 <sebastian@centricular.com> 2016-08-29 17:03:18 +0300 Sebastian Dröge <sebastian@centricular.com>

2
NEWS
View file

@ -1 +1 @@
This is GStreamer 1.9.2 This is GStreamer 1.9.90

21
RELEASE
View file

@ -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 The GStreamer team is pleased to announce the first release candidate of the
1.9 release series, which marks the feature freeze for 1.10. The 1.9 release stable 1.10 release series. The 1.10 release series is adding new features on
series is adding new features on top of the 1.0, 1.2, 1.4, 1.6 and 1.8 series top of the 1.0, 1.2, 1.4, 1.6 and 1.8 series and is part of the API and
and is part of the API and ABI-stable 1.x release series of the GStreamer ABI-stable 1.x release series of the GStreamer multimedia framework.
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.
Binaries for Android, iOS, Mac OS X and Windows will be provided in the next days. 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 Bugs fixed in this release
* 769809 : libgstlibav fails on Linux * 771092 : avenc: Got Caught SIGSEGV when using avenc_xxx
==== Download ==== ==== Download ====
@ -76,10 +73,8 @@ subscribe to the gstreamer-devel list.
Contributors to this release Contributors to this release
* Edward Hervey * Iain Lane
* Josep Torra * Jan Schmidt
* Sebastian Dröge * Sebastian Dröge
* Stefan Sauer
* Thibault Saunier * Thibault Saunier
* Tim-Philipp Müller
   

View file

@ -3,7 +3,7 @@ AC_PREREQ(2.69)
dnl initialize autoconf dnl initialize autoconf
dnl when going to/from release please set the nano (fourth number) right ! dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, cvs and prerelease does Werror too 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, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-libav) gst-libav)
@ -40,11 +40,11 @@ GST_API_VERSION=1.0
AC_SUBST(GST_API_VERSION) AC_SUBST(GST_API_VERSION)
AG_GST_LIBTOOL_PREPARE AG_GST_LIBTOOL_PREPARE
AS_LIBTOOL(GST, 902, 0, 902) AS_LIBTOOL(GST, 990, 0, 990)
dnl *** required versions of GStreamer stuff *** dnl *** required versions of GStreamer stuff ***
GST_REQ=1.9.2.1 GST_REQ=1.9.90
GST_PBREQ=1.9.2.1 GST_PBREQ=1.9.90
ORC_REQ=0.4.16 ORC_REQ=0.4.16
ORC_CHECK([$ORC_REQ]) ORC_CHECK([$ORC_REQ])

View file

@ -3,7 +3,7 @@
<description>All libav codecs and formats (local snapshot)</description> <description>All libav codecs and formats (local snapshot)</description>
<filename>../../ext/libav/.libs/libgstlibav.so</filename> <filename>../../ext/libav/.libs/libgstlibav.so</filename>
<basename>libgstlibav.so</basename> <basename>libgstlibav.so</basename>
<version>1.9.2</version> <version>1.9.90</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-libav</source> <source>gst-libav</source>
<package>libav</package> <package>libav</package>

View file

@ -32,6 +32,16 @@ colorspace conversion elements.
</GitRepository> </GitRepository>
</repository> </repository>
<release>
<Version>
<revision>1.9.90</revision>
<branch>master</branch>
<name></name>
<created>2016-09-30</created>
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.9.90.tar.xz" />
</Version>
</release>
<release> <release>
<Version> <Version>
<revision>1.9.2</revision> <revision>1.9.2</revision>