Release 0.10.14

Original commit message from CVS:
Release 0.10.14
This commit is contained in:
Jan Schmidt 2007-08-03 14:39:15 +00:00
parent 2ecc42d7ba
commit 1c1759f2fc
10 changed files with 125 additions and 79 deletions

View file

@ -1,3 +1,10 @@
=== release 0.10.14 ===
2007-08-03 Jan Schmidt <thaytan@mad.scientist.com>
* configure.ac:
releasing 0.10.14, "Breathing Vacuum"
2007-08-02 Tim-Philipp Müller <tim at centricular dot net>
* gst/gstelement.c: (gst_element_class_set_details_simple):

48
NEWS
View file

@ -1,4 +1,50 @@
This is GStreamer 0.10.13 "With or without you"
This is GStreamer 0.10.14 "Breathing Vacuum"
Changes since 0.10.13:
* State change handling improvements
* New improved GstController API
* Multi-queue fixes and enhancements
* Fewer dynamic library relocations
* Various other fixes and improvements
* Parallel installability with 0.8.x series
* Threadsafe design and API
Bugs fixed since 0.10.13:
* 457322 : registry is read twice on startup
* 406632 : pkgconfigify the check for Check in configure.ac
* 423700 : [multiqueue] leaks memory when flushing
* 437457 : saving relocations for GstElementDetails
* 444648 : [API] add GstParamSpecFraction
* 444820 : build error with grammar.tab.c
* 448794 : state changes are racy with decodebin after rewrite for 0...
* 449197 : [capsfilter] Should set src pad caps on buffer
* 449226 : Incomplete ghostpads in xml session save
* 449493 : minor quoting fix in gst-feature.m4 macro
* 450711 : [GstController] Improve extensibility by providing a GstC...
* 451939 : [API] add GST_TAG_LICENSE_URI and GST_TAG_COPYRIGHT_URI
* 459501 : gst_registry_lookup_feature_locked is slow
* 462558 : Regression in async state change handling
* 462752 : make gst_element_class_set_details_simple args const
* 430682 : multiqueue doesn't output data on unlinked pads properly
* 462085 : registry feature hash can access invalid memory
* 357959 : buffer_alloc is not proxied through tee
* 374639 : GstTee doesn't handle pad list resyncs properly
* 449414 : [capsfilter] Copy of passed GstCaps taken instead of refe...
* 453732 : [PATCH] multiqueue returns wrong internally linked pads
API added since 0.10.13:
* Add GstParamSpecFraction, so elements can have fraction
properties without lots of painful string parsing (#444648).
* Add fail_unless_equals_float() and assert_equals_float()
* Add gst_type_register_static_full
* Add gst_element_class_set_details_simple
* Refactor GstController into the core controller which can take
a GstControlSource for providing actual values for timestamps.
* add GST_TAG_LICENSE_URI and GST_TAG_COPYRIGHT_URI (#451939)
* gst_element_factory_has_interface()
Changes since 0.10.12:

100
RELEASE
View file

@ -1,5 +1,5 @@
Release notes for GStreamer 0.10.13 "With or without you"
Release notes for GStreamer 0.10.14 "Breathing Vacuum"
@ -37,63 +37,51 @@ contains a set of less supported plug-ins that haven't passed the
Features of this release
* Latency handling infrastructure for live playback scenarios
* State change handling changes
* GstController property handling improved
* Various bug fixes and improvements
* State change handling improvements
* New improved GstController API
* Multi-queue fixes and enhancements
* Fewer dynamic library relocations
* Various other fixes and improvements
* Parallel installability with 0.8.x series
* Threadsafe design and API
Bugs fixed in this release
* 440682 : gst/gstsystemclock unit test occasionally fails
* 342564 : Configure options causing compilation to fail
* 378255 : Swedish translation updated
* 392804 : [API] add GST_CORE_ERROR_DISABLED
* 412648 : [filesink] reports wrong (byte) position after seeking
* 413123 : No XML dependency patch
* 415394 : [identity] post message for imperfect streams if check-pe...
* 417992 : Quickly playing/pausing messes up synchronization
* 420106 : [basetransform] race on shutdown: setcaps func called aft...
* 420206 : Collectpads causes a segv. when stopping after a pad remove
* 421480 : Make it possible to build without libxml2 with --disable-...
* 421543 : [GstPad] Doesn't check if pad accepts caps after caps change
* 422295 : GstController crashes with quadratic and cubic interpolat...
* 425400 : Multiqueue leaks memory when releasing sink pads
* 431150 : compilation fails with flex 2.5.4
* 431940 : [API] add gst_buffer_try_new_and_alloc()
* 432876 : current time level in queue
* 434926 : Multilib conflicts with gst-launch-0.10 man page
* 435880 : [GstBin] Property to allow bins to handle child async cha...
* 437563 : URIs with upper-case protocol don't play
* 440463 : gstbin unit test sometimes hangs waiting for ASYNC_DONE m...
* 441159 : Regression in state change handling
* 349180 : gst_parse_launch is not reentrant (or recursively callable)
* 414986 : Don't start the async thread for the system clock until n...
* 393099 : GstBuffer copy vfunc broken?
* 419851 : pad-added and pad-removed signals parameter type incorrect
* 420133 : gst_element_sync_state_with_parent should look at pending...
* 421177 : Possible deadlock if pad eventfunc is not specified
* 457322 : registry is read twice on startup
* 406632 : pkgconfigify the check for Check in configure.ac
* 423700 : [multiqueue] leaks memory when flushing
* 437457 : saving relocations for GstElementDetails
* 444648 : [API] add GstParamSpecFraction
* 444820 : build error with grammar.tab.c
* 448794 : state changes are racy with decodebin after rewrite for 0...
* 449197 : [capsfilter] Should set src pad caps on buffer
* 449226 : Incomplete ghostpads in xml session save
* 449493 : minor quoting fix in gst-feature.m4 macro
* 450711 : [GstController] Improve extensibility by providing a GstC...
* 451939 : [API] add GST_TAG_LICENSE_URI and GST_TAG_COPYRIGHT_URI
* 459501 : gst_registry_lookup_feature_locked is slow
* 462558 : Regression in async state change handling
* 462752 : make gst_element_class_set_details_simple args const
* 430682 : multiqueue doesn't output data on unlinked pads properly
* 462085 : registry feature hash can access invalid memory
* 357959 : buffer_alloc is not proxied through tee
* 374639 : GstTee doesn't handle pad list resyncs properly
* 449414 : [capsfilter] Copy of passed GstCaps taken instead of refe...
* 453732 : [PATCH] multiqueue returns wrong internally linked pads
API changed in this release
- API additions:
* gst_element_change_state()
* GST_STATE_TARGET
* GST_BASE_TRANSFORM_LOCK/UNLOCK
* GstClock::gst_clock_unadjust_unlocked()
* fakesink::num-buffers property
* GST_CORE_ERROR_DISABLED
* basesrc::prepare_seek_segment vmethod
* gst_buffer_try_new_and_alloc()
* gst_uri_protocol_is_supported()
* gst_base_src_query_latency()
* GstQueue::pushing
* gst_controller_suggest_next_sync()
* gst_object_suggest_next_sync()
* basesrc::unlock_stop
* basesink::unlock_stop
* Add GstParamSpecFraction, so elements can have fraction
properties without lots of painful string parsing (#444648).
* Add fail_unless_equals_float() and assert_equals_float()
* Add gst_type_register_static_full
* Add gst_element_class_set_details_simple
* Refactor GstController into the core controller which can take
a GstControlSource for providing actual values for timestamps.
* add GST_TAG_LICENSE_URI and GST_TAG_COPYRIGHT_URI (#451939)
* gst_element_factory_has_interface()
Download
@ -128,24 +116,18 @@ Let us know if you want to be added to this list.
Contributors to this release
* Ville Syrjala
* David Schleef
* Andy Wingo
* Edward Hervey
* Evan Nemerson
* Jan Schmidt
* Jeroen Wouters
* Marc-Andre Lureau
* Mark Nauwelaerts
* Michael Smith
* Mogens Jaeger
* Olivier Crete
* Peter Kjellerstedt
* Sebastian Dröge
* Sebastien Moutte
* Stefan Kost
* Steve Fink
* Thomas Vander Stichele
* Tim Angus
* Tim-Philipp Müller
* Tommi Myöhänen
* Tommi Vainikainen
* Wim Taymans
* Zaheer Abbas Merali
* Étienne Noreau-Hébert
 

View file

@ -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, 0.10.13.1,
AC_INIT(GStreamer, 0.10.14,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gstreamer)
AG_GST_INIT
@ -43,7 +43,7 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
dnl - interfaces added -> increment AGE
dnl - interfaces removed -> AGE = 0
dnl sets GST_LT_LDFLAGS
AS_LIBTOOL(GST, 12, 0, 12)
AS_LIBTOOL(GST, 13, 0, 13)
dnl FIXME: this macro doesn't actually work;
dnl the generated libtool script has no support for the listed tags.

View file

@ -24,7 +24,7 @@
<RANGE></RANGE>
<FLAGS>rw</FLAGS>
<NICK>Filter caps</NICK>
<BLURB>Restrict the possible allowed capabilities (NULL means ANY).</BLURB>
<BLURB>Restrict the possible allowed capabilities (NULL means ANY). Setting this property takes a reference to the supplied GstCaps object.</BLURB>
<DEFAULT></DEFAULT>
</ARG>
@ -261,7 +261,7 @@
<ARG>
<NAME>GstFakeSink::num-buffers</NAME>
<TYPE>gint</TYPE>
<RANGE>>= -1</RANGE>
<RANGE>>= G_MAXULONG</RANGE>
<FLAGS>rw</FLAGS>
<NICK>num-buffers</NICK>
<BLURB>Number of buffers to accept going EOS.</BLURB>
@ -633,8 +633,8 @@
<TYPE>GstCaps</TYPE>
<RANGE></RANGE>
<FLAGS>r</FLAGS>
<NICK>Fähigkeiten</NICK>
<BLURB>Erkannte Fähigkeiten im Datenstrom.</BLURB>
<NICK>caps</NICK>
<BLURB>detected capabilities in stream.</BLURB>
<DEFAULT></DEFAULT>
</ARG>
@ -643,7 +643,7 @@
<TYPE>guint</TYPE>
<RANGE>[1,100]</RANGE>
<FLAGS>rw</FLAGS>
<NICK>Maximum</NICK>
<NICK>maximum</NICK>
<BLURB>probability to stop typefinding (deprecated; non-functional).</BLURB>
<DEFAULT>100</DEFAULT>
</ARG>
@ -653,7 +653,7 @@
<TYPE>guint</TYPE>
<RANGE>[1,100]</RANGE>
<FLAGS>rw</FLAGS>
<NICK>Minimum</NICK>
<NICK>minimum</NICK>
<BLURB>minimum probability required to accept caps.</BLURB>
<DEFAULT>1</DEFAULT>
</ARG>

View file

@ -3,10 +3,10 @@
<description>standard GStreamer elements</description>
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
<basename>libgstcoreelements.so</basename>
<version>0.10.13.1</version>
<version>0.10.14</version>
<license>LGPL</license>
<source>gstreamer</source>
<package>GStreamer CVS/prerelease</package>
<package>GStreamer source release</package>
<origin>Unknown package origin</origin>
<elements>
<element>

View file

@ -3,10 +3,10 @@
<description>GStreamer core indexers</description>
<filename>../../plugins/indexers/.libs/libgstcoreindexers.so</filename>
<basename>libgstcoreindexers.so</basename>
<version>0.10.13.1</version>
<version>0.10.14</version>
<license>LGPL</license>
<source>gstreamer</source>
<package>GStreamer CVS/prerelease</package>
<package>GStreamer source release</package>
<origin>Unknown package origin</origin>
<elements>

View file

@ -100,7 +100,7 @@ RELEASE PROCEDURE:
gstreamer-devel@lists.sourceforge.net gstreamer-announce@lists.sourceforge.net kde-multimedia@kde.org gnome-multimedia@gnome.org
- Update freshmeat with new releases (get Uraeus to do it)
Old release notes - superceded by the www/bin/new-release script.
Old release notes - superseded by the www/bin/new-release script.
----------------------------------------------------------------
TODO :

View file

@ -39,6 +39,17 @@ hierarchy, and a set of media-agnostic core elements.
</CVSRepository>
</repository>
<release>
<Version>
<revision>0.10.14</revision>
<branch>0.10</branch>
<name>Breathing Vacuum</name>
<created>2007-08-03</created>
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.14.tar.bz2" />
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.14.tar.gz" />
</Version>
</release>
<release>
<Version>
<revision>0.10.13</revision>

View file

@ -24,7 +24,7 @@
/* #undef GST_GCOV_ENABLED */
/* Default errorlevel to use */
#define GST_LEVEL_DEFAULT GST_LEVEL_ERROR
#define GST_LEVEL_DEFAULT GST_LEVEL_NONE
/* GStreamer license */
#define GST_LICENSE "LGPL"
@ -33,7 +33,7 @@
#define GST_MAJORMINOR "0.10"
/* package name in plugins */
#define GST_PACKAGE_NAME "GStreamer CVS/prerelease"
#define GST_PACKAGE_NAME "GStreamer source release"
/* package origin */
#define GST_PACKAGE_ORIGIN "Unknown package origin"
@ -175,7 +175,7 @@
#define HAVE_WIN32 1
/* Define host CPU */
#define HOST_CPU "i686"
#define HOST_CPU "x86_64"
/* library dir */
#ifdef _DEBUG
@ -197,13 +197,13 @@
#define PACKAGE_NAME "GStreamer"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "GStreamer 0.10.13.1"
#define PACKAGE_STRING "GStreamer 0.10.14"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gstreamer"
/* Define to the version of this package. */
#define PACKAGE_VERSION "0.10.13.1"
#define PACKAGE_VERSION "0.10.14"
/* Define the plugin directory */
#ifdef _DEBUG
@ -219,7 +219,7 @@
#undef USE_POISONING
/* Version number of package */
#define VERSION "0.10.13.1"
#define VERSION "0.10.14"
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */