mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
Release 0.10.6
Original commit message from CVS: Release 0.10.6
This commit is contained in:
parent
9445fccba6
commit
215038f2b5
6 changed files with 71 additions and 21 deletions
|
@ -1,3 +1,10 @@
|
|||
=== release 0.10.6 ===
|
||||
|
||||
2008-11-27 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
* configure.ac:
|
||||
releasing 0.10.6, "A little itching in our bones"
|
||||
|
||||
2008-11-19 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
Unfreeze gst-ffmpeg pending resolution of #559467 and an out-of-cycle
|
||||
|
|
22
NEWS
22
NEWS
|
@ -1,4 +1,24 @@
|
|||
This is GStreamer FFmpeg Plug-ins 0.10.5, "This little piggy went to market"
|
||||
This is GStreamer FFmpeg Plug-ins 0.10.6, "A little itching in our bones"
|
||||
|
||||
Changes since 0.10.5:
|
||||
|
||||
* Update ffmpeg and libswscale snapshot
|
||||
* Prefer aspect ratios prescribed by the container over the codec
|
||||
* Improve ffmpeg encoders wrapping
|
||||
* Rewrite ffvideoscale to use libswscale
|
||||
* Improve H.264 wrapping
|
||||
|
||||
Bugs fixed since 0.10.5:
|
||||
|
||||
* 350738 : [ffvideoscale] GStreamer-Critical when pixel-aspects-rati...
|
||||
* 504056 : [ffvideoscale] Switch to using libswscale
|
||||
* 542216 : cross compilation and mingw32 support
|
||||
* 548304 : missing check for bz2 library and header
|
||||
* 551046 : gst-ffmpeg configure complains about libz2, should be libbz2
|
||||
* 556336 : [PATCH] gstffmpegdec.c: prefer demuxer's pixel aspect rat...
|
||||
* 556405 : gst-ffmpeg fails to build against 20081014 ffmpeg snapshot
|
||||
* 560137 : Two build fixes for using system ffmpeg
|
||||
* 560305 : x264enc & ffmux_* doesnt link
|
||||
|
||||
Changes since 0.10.4:
|
||||
|
||||
|
|
37
RELEASE
37
RELEASE
|
@ -1,5 +1,5 @@
|
|||
|
||||
Release notes for GStreamer FFmpeg Plug-ins 0.10.5 "This little piggy went to market"
|
||||
Release notes for GStreamer FFmpeg Plug-ins 0.10.6 "A little itching in our bones"
|
||||
|
||||
|
||||
The GStreamer team is proud to announce a new release
|
||||
|
@ -34,22 +34,23 @@ contains a set of less supported plug-ins that haven't passed the
|
|||
|
||||
Features of this release
|
||||
|
||||
* Updated to upstream ffmpeg revision r15004 (28th Aug 2008)
|
||||
* Parallel installability with 0.8.x series
|
||||
* Threadsafe design and API
|
||||
* Update ffmpeg and libswscale snapshot
|
||||
* Prefer aspect ratios prescribed by the container over the codec
|
||||
* Improve ffmpeg encoders wrapping
|
||||
* Rewrite ffvideoscale to use libswscale
|
||||
* Improve H.264 wrapping
|
||||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 371939 : mov/mp4/m4a/3gp/3g2 muxers create wrong durations
|
||||
* 383420 : [ffmpeg] ISO-derivative muxers don't handle audio correctly
|
||||
* 518705 : Can't play streams from Rai.it
|
||||
* 533708 : broken mpeg-ts typefinding?
|
||||
* 534371 : autogen.sh not dist'ed
|
||||
* 534390 : Patch: use av_picture_copy instead of swscale to copy pic...
|
||||
* 534392 : PATCH: never use ffdec_faad
|
||||
* 534783 : Remove FLV demuxer
|
||||
* 540401 : Garbled sound instead of music
|
||||
* 549799 : all audio codecs claim to support up to 6 channels
|
||||
* 350738 : [ffvideoscale] GStreamer-Critical when pixel-aspects-rati...
|
||||
* 504056 : [ffvideoscale] Switch to using libswscale
|
||||
* 542216 : cross compilation and mingw32 support
|
||||
* 548304 : missing check for bz2 library and header
|
||||
* 551046 : gst-ffmpeg configure complains about libz2, should be libbz2
|
||||
* 556336 : [PATCH] gstffmpegdec.c: prefer demuxer's pixel aspect rat...
|
||||
* 556405 : gst-ffmpeg fails to build against 20081014 ffmpeg snapshot
|
||||
* 560137 : Two build fixes for using system ffmpeg
|
||||
* 560305 : x264enc & ffmux_* doesnt link
|
||||
|
||||
Download
|
||||
|
||||
|
@ -79,13 +80,13 @@ Applications
|
|||
|
||||
Contributors to this release
|
||||
|
||||
* Aurelien Grimaud
|
||||
* Alexis Ballier
|
||||
* Damien Lespiau
|
||||
* Edward Hervey
|
||||
* Jan Schmidt
|
||||
* Mark Nauwelaerts
|
||||
* Michael Smith
|
||||
* Robin Stocker
|
||||
* Sebastian Dröge
|
||||
* Thijs Vermeir
|
||||
* Tim-Philipp Müller
|
||||
* Stefan Kost
|
||||
* Wim Taymans
|
||||
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit edfb4b44ea433b0b83b8a2f27a6e0bcbccdc3f2f
|
||||
Subproject commit e4b2fe44724e1c1a6e816ae4fbbae43d7f68f1ef
|
|
@ -3,7 +3,7 @@ AC_PREREQ(2.52)
|
|||
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 FFMpeg, 0.10.5.3,
|
||||
AC_INIT(GStreamer FFMpeg, 0.10.6,
|
||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||
gst-ffmpeg)
|
||||
|
||||
|
|
|
@ -33,6 +33,28 @@ colorspace conversion elements.
|
|||
</CVSRepository>
|
||||
</repository>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>0.10.6</revision>
|
||||
<branch>0.10</branch>
|
||||
<name>A little itching in our bones</name>
|
||||
<created>2008-11-27</created>
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-ffmpeg/gst-ffmpeg-0.10.6.tar.bz2" />
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-ffmpeg/gst-ffmpeg-0.10.6.tar.gz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>0.10.5</revision>
|
||||
<branch>0.10</branch>
|
||||
<name>This little piggy went to market</name>
|
||||
<created>2008-09-03</created>
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-ffmpeg/gst-ffmpeg-0.10.5.tar.bz2" />
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-ffmpeg/gst-ffmpeg-0.10.5.tar.gz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>0.10.4</revision>
|
||||
|
|
Loading…
Reference in a new issue