diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2013-03-22 14:36:34 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2013-03-22 14:36:34 +0000 |
commit | 9323ae51af67cce856506578b058562eeae77d6d (patch) | |
tree | f03ed1637d323cae2dec3dbb463402be664333e2 | |
parent | 879052472841d584e0aad21ac220131b586c1de5 (diff) |
Release 1.0.61.0.6
-rw-r--r-- | ChangeLog | 42 | ||||
-rw-r--r-- | NEWS | 13 | ||||
-rw-r--r-- | RELEASE | 16 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | gst-libav.doap | 10 |
5 files changed, 74 insertions, 11 deletions
@@ -1,9 +1,47 @@ +=== release 1.0.6 === + +2013-03-22 Tim-Philipp Müller <tim@centricular.net> + + * configure.ac: + releasing 1.0.6 + +2013-02-25 10:38:09 +0000 Tim-Philipp Müller <tim@centricular.net> + + * ext/libav/gstavutils.c: + * ext/libav/gstavviddec.c: + avviddec: fix H.264 decoding errors by disabling multi-threaded decoding + Multi-threaded decoding does not work properly with the older libav 0.8 + version included in this gst-libav series, so just disable multi-threaded + decoding again entirely for now. (We could also switch from FF_THREAD_SLICE + to FF_THREAD_FRAME, but that may have other side-effects and just disabling + it seems safest for now). + This works properly in git master with more recent libav 0.9.x versions. + Adventurous users may still re-enable this functionality by setting + the GST_AVVIDDEC_MAX_THREADS environment variable to 'auto' or the + max. number of threads desired. + https://bugzilla.gnome.org/show_bug.cgi?id=694230 + +2013-02-11 15:52:52 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk> + + * gst-libs/ext/libav: + libav: Update to 0.8.5 release + +2013-01-14 17:00:17 +0100 Andoni Morales Alastruey <ylatuya@gmail.com> + + * configure.ac: + libav: fix checks for internal libav configure options + https://bugzilla.gnome.org/show_bug.cgi?id=691723 + === release 1.0.5 === -2013-01-08 Tim-Philipp Müller <tim.muller@collabora.co.uk> +2013-01-08 10:56:21 +0000 Tim-Philipp Müller <tim.muller@collabora.co.uk> + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.0.5 + * gst-libav.doap: + Release 1.0.5 2012-12-31 00:32:41 +0000 Tim-Philipp Müller <tim@centricular.net> @@ -1,4 +1,15 @@ -This is GStreamer Libav Plugins 1.0.5 +This is GStreamer Libav Plugins 1.0.6 + +Changes since 1.0.5: + + * avviddec: fix H.264 decoding errors in some files by disabling multi-threaded decoding + * libav: fix checks for internal libav configure options + * libav: Update to 0.8.5 release + +Bugs fixed since 1.0.5: + + * 691723 : libav: fix checks for internal libav configure options + * 694230 : quicktime videos have decoding issues in gst-1.x Changes since 1.0.4: @@ -1,7 +1,7 @@ -Release notes for GStreamer libav Plugins 1.0.5 +Release notes for GStreamer libav Plugins 1.0.6 -The GStreamer team is pleased to announce a new bug-fix release +The GStreamer team is proud to announce a new bug-fix release in the 1.x stable series of the core of the GStreamer streaming media framework. @@ -38,10 +38,14 @@ contains a set of less supported plugins that haven't passed the Features of this release - * Pass CC, LD, AS, AR and NM to the libav configure if set + * avviddec: fix H.264 decoding errors in some files by disabling multi-threaded decoding + * libav: fix checks for internal libav configure options + * libav: Update to 0.8.5 release -There were no bugs fixed in this release - +Bugs fixed in this release + + * 691723 : libav: fix checks for internal libav configure options + * 694230 : quicktime videos have decoding issues in gst-1.x ==== Download ==== @@ -78,6 +82,6 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Sebastian Dröge + * Andoni Morales Alastruey * Tim-Philipp Müller
\ No newline at end of file diff --git a/configure.ac b/configure.ac index 5d17844..22ede88 100644 --- a/configure.ac +++ b/configure.ac @@ -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.0.5, +AC_INIT(GStreamer libav, 1.0.6, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, gst-libav) @@ -42,7 +42,7 @@ GST_API_VERSION=1.0 AC_SUBST(GST_API_VERSION) AG_GST_LIBTOOL_PREPARE -AS_LIBTOOL(GST, 5, 0, 5) +AS_LIBTOOL(GST, 6, 0, 6) dnl *** required versions of GStreamer stuff *** GST_REQ=1.0.0 diff --git a/gst-libav.doap b/gst-libav.doap index a90b9c8..44ab96f 100644 --- a/gst-libav.doap +++ b/gst-libav.doap @@ -34,6 +34,16 @@ colorspace conversion elements. <release> <Version> + <revision>1.0.6</revision> + <branch>1.0</branch> + <name></name> + <created>2013-03-22</created> + <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.0.6.tar.xz" /> + </Version> + </release> + + <release> + <Version> <revision>1.0.5</revision> <branch>1.0</branch> <name></name> |