Release 1.1.90

This commit is contained in:
Sebastian Dröge 2013-09-19 10:53:46 +02:00
parent 677eaa6692
commit 9d018829ca
5 changed files with 113 additions and 16 deletions

View file

@ -1,9 +1,97 @@
=== release 1.1.4 ===
=== release 1.1.90 ===
2013-08-28 Sebastian Dröge <sebastian.droege@collabora.co.uk>
2013-09-19 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* configure.ac:
releasing 1.1.4
releasing 1.1.90
2013-09-12 13:56:31 +0200 Sebastian Dröge <slomo@circular-chaos.org>
* ext/libav/gstavviddec.c:
* ext/libav/gstavviddec.h:
avviddec: Initialize strides with the ones of avcodec_default_get_buffer() if we ever call it
https://bugzilla.gnome.org/show_bug.cgi?id=704769
2013-09-12 12:41:51 +0200 Sebastian Dröge <slomo@circular-chaos.org>
* gst-libs/ext/libav:
libav: Update to v9.9
2013-09-12 12:12:23 +0200 Sebastian Dröge <slomo@circular-chaos.org>
* ext/libav/gstavviddec.c:
avviddec: Use the correct context for negotiation
During get_buffer() it can happen that the main context is not
updated yet and only the context passed here has the correct
width, height, etc.
2013-09-12 12:11:29 +0200 Sebastian Dröge <slomo@circular-chaos.org>
* ext/libav/gstavviddec.c:
* ext/libav/gstavviddec.h:
avviddec: Remember initially used stride and don't allow stride changes
libav does not allow stride changes currently, fall back to
non-direct rendering here:
https://bugzilla.gnome.org/show_bug.cgi?id=704769
https://bugzilla.libav.org/show_bug.cgi?id=556
2013-09-10 21:47:55 +0200 Matej Knopp <matej.knopp@gmail.com>
* ext/libav/gstavcodecmap.c:
avcodecmap: Add support for TechSmith Screen Capture 2
https://bugzilla.gnome.org/show_bug.cgi?id=707878
2013-08-30 11:48:51 +0100 Alex Ashley <bugzilla@ashley-family.net>
* ext/libav/gstavcodecmap.c:
avcodecmap: exclude avc3 stream format from AV_CODEC_ID_H264
As part of the changes to support the "avc3" variant of the ISO-BMFF
(see bug #702004) a new stream-format has been created
(video/x-h264, stream-format="avc3", alignment="au") that requires
changes to gstavcodecmap to exclude this format because avdec_h264
expects the SPS and PPS to be in the codec_data.
Amendment 2 of ISO/IEC 14496-15 (AVC file format) is defining a new
structure for fragmented MP4 called "avc3". The principal difference
between AVC1 and AVC3 is the location of the codec initialisation data
(e.g. SPS, PPS). In AVC1 this data is placed in the initial MOOV box
(moov.trak.mdia.minf.stbl.stsd.avc1) but in AVC3 this data goes in the
first sample of every fragment.
https://bugzilla.gnome.org/show_bug.cgi?id=702004
2013-08-30 13:58:14 +0200 Josep Torra <n770galaxy@gmail.com>
* ext/libav/gstavcodecmap.c:
codecmap: add mapping for MSS1 and MSS2
Windows Media Video Screen (WMV Screen) are video formats that
specilise in screencast content.
2013-08-29 16:53:28 +0200 Sebastian Dröge <slomo@circular-chaos.org>
* ext/libav/gstavauddec.c:
* ext/libav/gstavaudenc.c:
* ext/libav/gstavviddec.c:
* ext/libav/gstavvidenc.c:
libav: avcodec_close() also resets fields like the AVCodec
We need to reload the defaults for the codec after closing it,
otherwise we can't access codec information like the supported
sample rates and can crash.
https://bugzilla.gnome.org/show_bug.cgi?id=707040
2013-08-28 13:27:12 +0200 Sebastian Dröge <slomo@circular-chaos.org>
* configure.ac:
Back to development
=== release 1.1.4 ===
2013-08-28 13:11:19 +0200 Sebastian Dröge <slomo@circular-chaos.org>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:
* gst-libav.doap:
Release 1.1.4
2013-08-28 12:09:33 +0200 Sebastian Dröge <slomo@circular-chaos.org>

2
NEWS
View file

@ -1,2 +1,2 @@
This is GStreamer Libav Plugins 1.1.4
This is GStreamer Libav Plugins 1.1.90

15
RELEASE
View file

@ -1,5 +1,5 @@
Release notes for GStreamer libav Plugins 1.1.4
Release notes for GStreamer libav Plugins 1.1.90
The GStreamer team is proud to announce a new bug-fix release
in the 1.x stable series of the
@ -38,10 +38,9 @@ contains a set of less supported plugins that haven't passed the
Bugs fixed in this release
* 158719 : [PVA] Support for PVA container format demuxing
* 697512 : avmux: Fails to register muxers with commas in the libav muxer name
* 705333 : h264parse : broken bytestream/nal = > avc/au conversion
* 706601 : Windows compilation fails since libav v9.5
* 704769 : avviddec: Make libav codecs handle gracefully renegotiation.
* 707040 : Segfault in avenc_g722
* 707449 : avviddec: Renegotiates immediately if width/height changes before the first frame is generated
==== Download ====
@ -78,8 +77,8 @@ subscribe to the gstreamer-devel list.
Contributors to this release
* Hans de Goede
* Lubosz Sarnecki
* Alex Ashley
* Josep Torra
* Matej Knopp
* Sebastian Dröge
* Tim-Philipp Müller
 

View file

@ -3,7 +3,7 @@ AC_PREREQ(2.62)
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.1.4.1,
AC_INIT(GStreamer libav, 1.1.90,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-libav)
@ -42,11 +42,11 @@ GST_API_VERSION=1.0
AC_SUBST(GST_API_VERSION)
AG_GST_LIBTOOL_PREPARE
AS_LIBTOOL(GST, 104, 0, 104)
AS_LIBTOOL(GST, 190, 0, 190)
dnl *** required versions of GStreamer stuff ***
GST_REQ=1.1.4.1
GST_PBREQ=1.1.4.1
GST_REQ=1.1.90
GST_PBREQ=1.1.90
ORC_REQ=0.4.16
ORC_CHECK([$ORC_REQ])

View file

@ -32,6 +32,16 @@ colorspace conversion elements.
</GitRepository>
</repository>
<release>
<Version>
<revision>1.1.90</revision>
<branch>1.1</branch>
<name></name>
<created>2013-09-19</created>
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.1.90.tar.xz" />
</Version>
</release>
<release>
<Version>
<revision>1.1.4</revision>