Release 0.10.11

This commit is contained in:
Jan Schmidt 2009-03-21 01:05:22 +00:00
parent 94b81a4068
commit f1c9e3bdf3
22 changed files with 7348 additions and 3967 deletions

11133
ChangeLog

File diff suppressed because it is too large Load diff

29
NEWS
View file

@ -1,4 +1,31 @@
This is GStreamer Ugly Plug-ins 0.10.10 "Under the House"
This is GStreamer Ugly Plug-ins 0.10.11 "The swords and their knives"
Changes since 0.10.10:
* Migrate twolame element from -bad
* mp3parse improvements
* Support scaling in the synaesthsia visualisation
* Improve realmedia streaming, supporting RDT and pnm://
* Improved ASF demuxing, including streaming-mode seeking
* Support for 4:4:4 MPEG-2 video
Bugs fixed since 0.10.10:
* 571146 : [mpeg2dec] Probably uses wrong strides for 4:2:2 and 4:4:...
* 574461 : [mpeg2dec] Lower rank and make ffdec_mpeg2video PRIMARY
* 454228 : [mpegdemux] problem with mark shuttleworth clip
* 522699 : pnm:/something.ra streams can't be loaded in Totem from a...
* 527112 : [real] Can't play several real audio streams
* 556714 : Real Audio streams not working properly
* 560348 : plus7.arte.tv plays slooooowly
* 562065 : mpeg2dec does not handle STATE_SEQUENCE_MODIFIED from > =l...
* 562086 : mpeg2 stream crashes something in gstreamer
* 564885 : [mpegstream] memory leak
* 568836 : [asfdemux] add seeking support when operating in push mode
* 569317 : [PLUGIN-MOVE] Move twolame plugin from -bad to -ugly
* 575068 : [mp3parse] deadlock with accurate seeking
* 335067 : Need RTP ASF depayloader
* 571358 : [real] file playing stops immediately
Changes since 0.10.9:

58
RELEASE
View file

@ -1,5 +1,5 @@
Release notes for GStreamer Ugly Plug-ins 0.10.10 "Under the House"
Release notes for GStreamer Ugly Plug-ins 0.10.11 "Their swords and their knives"
The GStreamer team is proud to announce a new release
@ -55,27 +55,30 @@ contains a set of less supported plug-ins that haven't passed the
Features of this release
* asfdemux and rmdemux fixes
* RDT support
* AMR-NB parser improvements
* Fix a52dec channel output negotiation
* Compilation fixes for mad, mpeg2dec
* Migrate twolame element from -bad
* mp3parse improvements
* Support scaling in the synaesthsia visualisation
* Improve realmedia streaming, supporting RDT and pnm://
* Improved ASF demuxing, including streaming-mode seeking
* Support for 4:4:4 MPEG-2 video
Bugs fixed in this release
* 546859 : Asfdemux doesn't properly error out on not-linked
* 536274 : handle flush seeking in amrnbparse
* 554142 : mad plugin with disable index seeking issue
* 554150 : mpeg2dec plugin with disable index seeking issue
* 556184 : [PATCH] mpeg2dec: prefer container's pixel aspect ratio o...
* 556277 : mp3parse generate discontinuities.
* 558277 : generic states test fails
* 559569 : GStreamer mp3 consistent and regular stuttering
* 559682 : negotiation problem
* 561161 : [sidplay] Uses GST_CFLAGS for C++
* 424070 : [amrnbdec] add IF2 handling
* 536226 : fix query duration
* 558896 : DVD playing on Vista using dvddemux element seg-faults on...
* 571146 : [mpeg2dec] Probably uses wrong strides for 4:2:2 and 4:4:...
* 574461 : [mpeg2dec] Lower rank and make ffdec_mpeg2video PRIMARY
* 454228 : [mpegdemux] problem with mark shuttleworth clip
* 522699 : pnm:/something.ra streams can't be loaded in Totem from a...
* 527112 : [real] Can't play several real audio streams
* 556714 : Real Audio streams not working properly
* 560348 : plus7.arte.tv plays slooooowly
* 562065 : mpeg2dec does not handle STATE_SEQUENCE_MODIFIED from > =l...
* 562086 : mpeg2 stream crashes something in gstreamer
* 564885 : [mpegstream] memory leak
* 568836 : [asfdemux] add seeking support when operating in push mode
* 569317 : [PLUGIN-MOVE] Move twolame plugin from -bad to -ugly
* 575068 : [mp3parse] deadlock with accurate seeking
* 335067 : Need RTP ASF depayloader
* 571358 : [real] file playing stops immediately
Download
@ -94,8 +97,7 @@ http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer
Developers
CVS is hosted on cvs.freedesktop.org.
All code is in CVS and can be checked out from there.
GStreamer is stored in Git, hosted at git.freedesktop.org, and can be cloned from there.
Interested developers of the core library, plug-ins, and applications should
subscribe to the gstreamer-devel list. If there is sufficient interest we
will create more lists as necessary.
@ -105,15 +107,21 @@ Applications
Contributors to this release
* Benoit Fouet
* Alessandro Decina
* Cygwin Ports maintainer
* David Schleef
* Edward Hervey
* Hans de Goede
* Jan Schmidt
* Mark Nauwelaerts
* Michael Smith
* Robin Stocker
* Sameer Naik
* René Stadler
* Roland Moser
* Sebastian Dröge
* Simon Holm Thøgersen
* Stefan Kost
* Tal Shalif
* Tim-Philipp Müller
* Wim Taymans
* Yves Lefebvre
* Zaheer Merali
 

View file

@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file
dnl initialize autoconf
dnl releases only do -Wall, cvs and prerelease does -Werror too
dnl use a three digit version number for releases, and four for cvs/prerelease
AC_INIT(GStreamer Ugly Plug-ins, 0.10.10.3,
AC_INIT(GStreamer Ugly Plug-ins, 0.10.11,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-plugins-ugly)

View file

@ -3,10 +3,10 @@
<description>Decodes ATSC A/52 encoded audio streams</description>
<filename>../../ext/a52dec/.libs/libgsta52dec.so</filename>
<basename>libgsta52dec.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>GPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>Demuxes and muxes audio and video in Microsofts ASF format</description>
<filename>../../gst/asfdemux/.libs/libgstasf.so</filename>
<basename>libgstasf.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>LGPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>Read audio from audio CDs</description>
<filename>../../ext/cdio/.libs/libgstcdio.so</filename>
<basename>libgstcdio.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>GPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>Decode DVD LPCM frames into standard PCM</description>
<filename>../../gst/dvdlpcmdec/.libs/libgstdvdlpcmdec.so</filename>
<basename>libgstdvdlpcmdec.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>LGPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>Access a DVD with dvdread</description>
<filename>../../ext/dvdread/.libs/libgstdvdread.so</filename>
<basename>libgstdvdread.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>GPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>DVD subtitle parser and decoder</description>
<filename>../../gst/dvdsub/.libs/libgstdvdsub.so</filename>
<basename>libgstdvdsub.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>LGPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>Convert raw AC3 into IEC958 (S/PDIF) frames</description>
<filename>../../gst/iec958/.libs/libgstiec958.so</filename>
<basename>libgstiec958.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>LGPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>Encode MP3s with LAME</description>
<filename>../../ext/lame/.libs/libgstlame.so</filename>
<basename>libgstlame.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>LGPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>id3 tag manipulation and mp3 decoding based on the mad library</description>
<filename>../../ext/mad/.libs/libgstmad.so</filename>
<basename>libgstmad.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>GPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>LibMpeg2 decoder</description>
<filename>../../ext/mpeg2dec/.libs/libgstmpeg2dec.so</filename>
<basename>libgstmpeg2dec.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>GPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>MPEG-1 layer 1/2/3 audio stream elements</description>
<filename>../../gst/mpegaudioparse/.libs/libgstmpegaudioparse.so</filename>
<basename>libgstmpegaudioparse.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>LGPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>MPEG system stream parser</description>
<filename>../../gst/mpegstream/.libs/libgstmpegstream.so</filename>
<basename>libgstmpegstream.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>LGPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>RealMedia support plugins</description>
<filename>../../gst/realmedia/.libs/libgstrmdemux.so</filename>
<basename>libgstrmdemux.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>LGPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>Uses libsidplay to decode .sid files</description>
<filename>../../ext/sidplay/.libs/libgstsid.so</filename>
<basename>libgstsid.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>GPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>Encode MP2s with TwoLAME</description>
<filename>../../ext/twolame/.libs/libgsttwolame.so</filename>
<basename>libgsttwolame.so</basename>
<version>0.10.10.1</version>
<version>0.10.11</version>
<license>LGPL</license>
<source>gst-plugins-ugly</source>
<package>GStreamer Ugly Plug-ins CVS/prerelease</package>
<package>GStreamer Ugly Plug-ins source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -34,6 +34,17 @@ might be widely known to present patent problems.
</CVSRepository>
</repository>
<release>
<Version>
<revision>0.10.11</revision>
<branch>0.10</branch>
<name>Their swords and their knives</name>
<created>2009-03-20</created>
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-0.10.11.tar.bz2" />
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-0.10.11.tar.gz" />
</Version>
</release>
<release>
<Version>
<revision>0.10.10</revision>

View file

@ -1,16 +1,16 @@
# Czech translations of gst-plugins-ugly.
# Copyright (C) 2007, 2008 the author(s) of gst-plugins-ugly.
# Copyright (C) 2007, 2008, 2009 the author(s) of gst-plugins-ugly.
# Copyright (C) 2004 Miloslav Trmac <mitr@volny.cz>.
# This file is put in the public domain.
# Miloslav Trmac <mitr@volny.cz>, 2004.
# Petr Kovar <pknbe@volny.cz>, 2007, 2008.
# Petr Kovar <pknbe@volny.cz>, 2007, 2008, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-ugly-0.10.8.2\n"
"Project-Id-Version: gst-plugins-ugly-0.10.10.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
"POT-Creation-Date: 2009-03-21 00:28+0000\n"
"PO-Revision-Date: 2008-08-13 23:12+0200\n"
"PO-Revision-Date: 2009-03-16 03:46+0100\n"
"Last-Translator: Petr Kovar <pknbe@volny.cz>\n"
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
#: ext/lame/gstlame.c:624
msgid "Failed to configure LAME encoder. Check your encoding parameters."
msgstr ""
"Nezdařilo se nastavení kodéru LAME. Je nutné zkontrolovat parametry kodéru."
"Nezdařilo se nastavení kodéru LAME. Je nutné zkontrolovat parametry kódování."
#: ext/lame/gstlame.c:718 ext/twolame/gsttwolame.c:502
#, c-format
@ -87,10 +87,10 @@ msgstr ""
"povolen. Datový tok byl změněn na %d kilobitů za sekundu."
#: ext/twolame/gsttwolame.c:427
#, fuzzy
msgid "Failed to configure TwoLAME encoder. Check your encoding parameters."
msgstr ""
"Nezdařilo se nastavení kodéru LAME. Je nutné zkontrolovat parametry kodéru."
"Nezdařilo se nastavení kodéru TwoLAME. Je nutné zkontrolovat parametry "
"kódování."
#: gst/asfdemux/gstasfdemux.c:329
msgid "This stream contains no data."

View file

@ -21,7 +21,7 @@
#define GST_LICENSE "LGPL"
/* package name in plugins */
#define GST_PACKAGE_NAME "GStreamer Ugly Plug-ins CVS/prerelease"
#define GST_PACKAGE_NAME "GStreamer Ugly Plug-ins source release"
/* package origin */
#define GST_PACKAGE_ORIGIN "Unknown package origin"
@ -196,13 +196,13 @@
#undef PACKAGE_NAME "GStreamer Ugly Plug-ins"
/* Define to the full name and version of this package. */
#undef PACKAGE_STRING "GStreamer Ugly Plug-ins 0.10.10.3"
#undef PACKAGE_STRING "GStreamer Ugly Plug-ins 0.10.11"
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME "gst-plugins-ugly"
/* Define to the version of this package. */
#undef PACKAGE_VERSION "0.10.10.3"
#undef PACKAGE_VERSION "0.10.11"
/* directory where plugins are located */
#undef PLUGINDIR
@ -226,7 +226,7 @@
#undef STDC_HEADERS
/* Version number of package */
#define VERSION "0.10.10.3"
#define VERSION "0.10.11"
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */