Release 0.10.13 "With or without you"

Original commit message from CVS:
Release 0.10.13 "With or without you"
This commit is contained in:
Jan Schmidt 2007-06-05 12:47:23 +00:00
parent 200397d119
commit eaaa878f86
20 changed files with 2131 additions and 1999 deletions

View file

@ -1,3 +1,10 @@
=== release 0.10.13 ===
2007-06-05 Jan Schmidt <thaytan@mad.scientist.com>
* configure.ac:
releasing 0.10.13, "With or without you"
2007-05-25 Wim Taymans <wim@fluendo.com> 2007-05-25 Wim Taymans <wim@fluendo.com>
* gst/gstbin.c: (bin_handle_async_done): * gst/gstbin.c: (bin_handle_async_done):
@ -1013,7 +1020,7 @@
2007-03-22 Wim Taymans <wim@fluendo.com> 2007-03-22 Wim Taymans <wim@fluendo.com>
Patch by: <syrjala at sci dot fi> Patch by: Ville Syrjala <syrjala at sci dot fi>
* gst/gstpad.c: (gst_pad_alloc_buffer_full), (gst_pad_send_event): * gst/gstpad.c: (gst_pad_alloc_buffer_full), (gst_pad_send_event):
Fix possible deadlock if pad eventfunc is not specified. Fixes #421177. Fix possible deadlock if pad eventfunc is not specified. Fixes #421177.
@ -1072,6 +1079,8 @@
Add ::unlock_stop to basesrc and basesink. This allows an opportunity Add ::unlock_stop to basesrc and basesink. This allows an opportunity
for sub-classes to correctly clear any state they set trying to for sub-classes to correctly clear any state they set trying to
unlock, such as clearing out unlock commands from a command fd. unlock, such as clearing out unlock commands from a command fd.
API: basesrc::unlock_stop
API: basesink::unlock_stop
* plugins/elements/gstfdsink.c: (gst_fd_sink_class_init), * plugins/elements/gstfdsink.c: (gst_fd_sink_class_init),
(gst_fd_sink_render), (gst_fd_sink_unlock), (gst_fd_sink_render), (gst_fd_sink_unlock),
@ -1252,6 +1261,7 @@
* gst/gstbuffer.c: (gst_buffer_copy_metadata), (_gst_buffer_copy): * gst/gstbuffer.c: (gst_buffer_copy_metadata), (_gst_buffer_copy):
* gst/gstbuffer.h: * gst/gstbuffer.h:
Add metadata copy functions. Fixes #393099. Add metadata copy functions. Fixes #393099.
API: gst_buffer_copy_metadata()
* gst/gstutils.c: (gst_buffer_stamp): * gst/gstutils.c: (gst_buffer_stamp):
* libs/gst/base/gstbasetransform.c: * libs/gst/base/gstbasetransform.c:

69
NEWS
View file

@ -1,4 +1,71 @@
This is GStreamer 0.10.10.12 "Inevitable Demise" This is GStreamer 0.10.13 "With or without you"
Changes since 0.10.12:
* Latency handling infrastructure for live playback scenarios
* State change handling changes
* GstController property handling improved
* Various bug fixes and improvements
* Parallel installability with 0.8.x series
* Threadsafe design and API
Bugs fixed since 0.10.12:
* 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
API additions since 0.10.12:
* 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_buffer_copy_metadata()
* GstBufferCopyFlags enum
* GST_BUFFER_COPY_ALL flag
* 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
* GstBin::async-handling property
* gst_message_new_async_start()
* gst_message_parse_async_start()
* gst_message_new_async_done()
* GST_MESSAGE_ASYNC_START
* GST_MESSAGE_ASYNC_DONE
Changes since 0.10.11: Changes since 0.10.11:

125
RELEASE
View file

@ -1,5 +1,5 @@
Release notes for GStreamer 0.10.12 "Inevitable Demise" Release notes for GStreamer 0.10.13 "With or without you"
@ -37,69 +37,63 @@ contains a set of less supported plug-ins that haven't passed the
Features of this release Features of this release
* Add a warning if GLib threading support is not properly initialised * Latency handling infrastructure for live playback scenarios
* Add support for binary registry serialisation * State change handling changes
* Preliminary support for pull-mode scheduling of entire chains * GstController property handling improved
* Add support for HPPA * Various bug fixes and improvements
* Collectpads fixes * Parallel installability with 0.8.x series
* Lots of bug fixes * Threadsafe design and API
Bugs fixed in this release Bugs fixed in this release
* 378931 : Bison version check doesn't work on Solaris 9 * 440682 : gst/gstsystemclock unit test occasionally fails
* 399875 : [multiqueue] dynamic growth not implemented. * 342564 : Configure options causing compilation to fail
* 339326 : pads not set to FLUSHING when created * 378255 : Swedish translation updated
* 380129 : gst_plugin_feature_load doesn't consistently ref a return... * 392804 : [API] add GST_CORE_ERROR_DISABLED
* 381301 : [patch] Make GstBus watch work with any GMainContext * 412648 : [filesink] reports wrong (byte) position after seeking
* 383382 : Removing pads from collectpads not threadsafe * 413123 : No XML dependency patch
* 383506 : Disallow CLOCK_TIME_NONE as periodic clock id interval * 415394 : [identity] post message for imperfect streams if check-pe...
* 387073 : gst-launch videotestsrc ! ffmpegcolorspace ! ximagesink d... * 417992 : Quickly playing/pausing messes up synchronization
* 387866 : [docs] Small fix for GstCollectPads docs * 420106 : [basetransform] race on shutdown: setcaps func called aft...
* 391278 : g_thread_init() called too late, possibly causing memory ... * 420206 : Collectpads causes a segv. when stopping after a pad remove
* 391296 : [API] add gst_update_registry() to rescan registry at run... * 421480 : Make it possible to build without libxml2 with --disable-...
* 391777 : GStreamer does not reset SEGV trap handler * 421543 : [GstPad] Doesn't check if pad accepts caps after caps change
* 391909 : Fix compilation with MinGW * 422295 : GstController crashes with quadratic and cubic interpolat...
* 399094 : gst_pad_start_task: small doc typo * 425400 : Multiqueue leaks memory when releasing sink pads
* 401381 : GstRegistry signals documentation is missing * 431150 : compilation fails with flex 2.5.4
* 401781 : [API] add GST_ROUND_DOWN_* macros * 431940 : [API] add gst_buffer_try_new_and_alloc()
* 402393 : [API][GstCollectPads] Allow elements to specify destroy n... * 432876 : current time level in queue
* 405284 : Changing state of pipeline can lock up with preroll queue... * 434926 : Multilib conflicts with gst-launch-0.10 man page
* 400656 : [PATCH] filesrc seekability detection fix (NFS and 2GB+ f... * 435880 : [GstBin] Property to allow bins to handle child async cha...
* 403172 : [filesrc] doesn't handle localhost file locations * 437563 : URIs with upper-case protocol don't play
* 404569 : [filesrc] Unexpected end of file * 440463 : gstbin unit test sometimes hangs waiting for ASYNC_DONE m...
* 161922 : script to provide plugin installation info * 441159 : Regression in state change handling
* 391915 : adapter test doesn't compile with mingw * 349180 : gst_parse_launch is not reentrant (or recursively callable)
* 395554 : gst_tag_setter_merge_tags works at most once * 414986 : Don't start the async thread for the system clock until n...
* 403597 : [API] Add ReplayGain reference level tag * 393099 : GstBuffer copy vfunc broken?
* 405288 : Configure checks use pkg-config directly * 419851 : pad-added and pad-removed signals parameter type incorrect
* 381492 : [SystemClock] ClockID wait_async notification broken * 420133 : gst_element_sync_state_with_parent should look at pending...
* 382592 : Multiple wait()ers break periodic clock ids * 421177 : Possible deadlock if pad eventfunc is not specified
* 385084 : endless ghost pad pull/push activate recursion until crash
* 388201 : [API] add gst_adapter_copy()
API changed in this release API changed in this release
- API additions: - API additions:
* gst_update_registry() * gst_element_change_state()
* gst_adapter_copy() * GST_STATE_TARGET
* GST_ROUND_DOWN_* macros * GST_BASE_TRANSFORM_LOCK/UNLOCK
* GstCollectDataDestroyNotify * GstClock::gst_clock_unadjust_unlocked()
* gst_query_new_latency() * fakesink::num-buffers property
* gst_query_set_latency() * GST_CORE_ERROR_DISABLED
* gst_query_parse_latency() * basesrc::prepare_seek_segment vmethod
* gst_message_new_lost_preroll() * gst_buffer_try_new_and_alloc()
* gst_message_parse_lost_preroll() * gst_uri_protocol_is_supported()
* gst_message_new_prerolled() * gst_base_src_query_latency()
* gst_message_new_latency() * GstQueue::pushing
* gst_event_new_latency() * gst_controller_suggest_next_sync()
* gst_event_parse_latency() * gst_object_suggest_next_sync()
* GST_TAG_REFERENCE_LEVEL * basesrc::unlock_stop
* gst_base_sink_query_latency() * basesink::unlock_stop
* gst_base_sink_get_latency()
* gst_bus_timed_pop()
* gst_message_new_info()
* gst_message_parse_info()
Download Download
@ -134,21 +128,24 @@ Let us know if you want to be added to this list.
Contributors to this release Contributors to this release
* Andy Wingo * Ville Syrjala
* Carlos Sanmartin Dominguez
* David Schleef * David Schleef
* Edward Hervey * Edward Hervey
* Evan Nemerson
* Jan Schmidt * Jan Schmidt
* Jindrich Makovicka * Jeroen Wouters
* Marc-Andre Lureau
* Mark Nauwelaerts * Mark Nauwelaerts
* Michal Benes * Michael Smith
* René Stadler * Mogens Jaeger
* Olivier Crete
* Peter Kjellerstedt
* Sebastian Dröge * Sebastian Dröge
* Sjoerd Simons * Sebastien Moutte
* Stefan Kost * Stefan Kost
* Sébastien Moutte
* Thomas Vander Stichele * Thomas Vander Stichele
* Tim-Philipp Müller * Tim-Philipp Müller
* Vincent Torri * Tommi Myöhänen
* Wim Taymans * Wim Taymans
* Zaheer Abbas Merali
   

View file

@ -3,7 +3,7 @@ AC_PREREQ(2.52)
dnl initialize autoconf dnl initialize autoconf
dnl when going to/from release please set the nano (fourth number) right ! dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, cvs and prerelease does Werror too dnl releases only do Wall, cvs and prerelease does Werror too
AC_INIT(GStreamer, 0.10.12.1, AC_INIT(GStreamer, 0.10.13,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gstreamer) gstreamer)
AG_GST_INIT AG_GST_INIT
@ -43,7 +43,7 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
dnl - interfaces added -> increment AGE dnl - interfaces added -> increment AGE
dnl - interfaces removed -> AGE = 0 dnl - interfaces removed -> AGE = 0
dnl sets GST_LT_LDFLAGS dnl sets GST_LT_LDFLAGS
AS_LIBTOOL(GST, 11, 0, 11) AS_LIBTOOL(GST, 12, 0, 12)
dnl FIXME: this macro doesn't actually work; dnl FIXME: this macro doesn't actually work;
dnl the generated libtool script has no support for the listed tags. dnl the generated libtool script has no support for the listed tags.

View file

@ -258,6 +258,16 @@
<DEFAULT>No state change errors</DEFAULT> <DEFAULT>No state change errors</DEFAULT>
</ARG> </ARG>
<ARG>
<NAME>GstFakeSink::num-buffers</NAME>
<TYPE>gint</TYPE>
<RANGE>>= G_MAXULONG</RANGE>
<FLAGS>rw</FLAGS>
<NICK>num-buffers</NICK>
<BLURB>Number of buffers to accept going EOS.</BLURB>
<DEFAULT>-1</DEFAULT>
</ARG>
<ARG> <ARG>
<NAME>GstFdSrc::fd</NAME> <NAME>GstFdSrc::fd</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
@ -334,7 +344,7 @@
<RANGE></RANGE> <RANGE></RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>Check For Perfect Stream</NICK> <NICK>Check For Perfect Stream</NICK>
<BLURB>Verify that the stream is time- and data-contiguous.</BLURB> <BLURB>Verify that the stream is time- and data-contiguous. This only logs in the debug log. This will be deprecated in favor of the check-imperfect-timestamp/offset properties.</BLURB>
<DEFAULT>FALSE</DEFAULT> <DEFAULT>FALSE</DEFAULT>
</ARG> </ARG>
@ -354,7 +364,7 @@
<RANGE>[0,1]</RANGE> <RANGE>[0,1]</RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>Drop Probability</NICK> <NICK>Drop Probability</NICK>
<BLURB>The Probability a buffer is dropped (not implemented).</BLURB> <BLURB>The Probability a buffer is dropped.</BLURB>
<DEFAULT>0</DEFAULT> <DEFAULT>0</DEFAULT>
</ARG> </ARG>
@ -428,6 +438,26 @@
<DEFAULT>FALSE</DEFAULT> <DEFAULT>FALSE</DEFAULT>
</ARG> </ARG>
<ARG>
<NAME>GstIdentity::check-imperfect-offset</NAME>
<TYPE>gboolean</TYPE>
<RANGE></RANGE>
<FLAGS>rw</FLAGS>
<NICK>Check for discontiguous offset</NICK>
<BLURB>Send element messages if offset and offset_end do not match up.</BLURB>
<DEFAULT>FALSE</DEFAULT>
</ARG>
<ARG>
<NAME>GstIdentity::check-imperfect-timestamp</NAME>
<TYPE>gboolean</TYPE>
<RANGE></RANGE>
<FLAGS>rw</FLAGS>
<NICK>Check for discontiguous timestamps</NICK>
<BLURB>Send element messages if timestamps and durations do not match up.</BLURB>
<DEFAULT>FALSE</DEFAULT>
</ARG>
<ARG> <ARG>
<NAME>GstQueue::current-level-buffers</NAME> <NAME>GstQueue::current-level-buffers</NAME>
<TYPE>guint</TYPE> <TYPE>guint</TYPE>
@ -698,3 +728,13 @@
<DEFAULT>1000000000</DEFAULT> <DEFAULT>1000000000</DEFAULT>
</ARG> </ARG>
<ARG>
<NAME>GstBin::async-handling</NAME>
<TYPE>gboolean</TYPE>
<RANGE></RANGE>
<FLAGS>rw</FLAGS>
<NICK>Async Handling</NICK>
<BLURB>The bin will handle Asynchronous state changes.</BLURB>
<DEFAULT>FALSE</DEFAULT>
</ARG>

View file

@ -70,6 +70,13 @@ GstQueue *gstqueue
GstQueue *gstqueue GstQueue *gstqueue
</SIGNAL> </SIGNAL>
<SIGNAL>
<NAME>GstQueue::pushing</NAME>
<RETURNS>void</RETURNS>
<FLAGS>f</FLAGS>
GstQueue *gstqueue
</SIGNAL>
<SIGNAL> <SIGNAL>
<NAME>GstTypeFindElement::have-type</NAME> <NAME>GstTypeFindElement::have-type</NAME>
<RETURNS>void</RETURNS> <RETURNS>void</RETURNS>

View file

@ -3,7 +3,7 @@
<description>standard GStreamer elements</description> <description>standard GStreamer elements</description>
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename> <filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
<basename>libgstcoreelements.so</basename> <basename>libgstcoreelements.so</basename>
<version>0.10.12</version> <version>0.10.13</version>
<license>LGPL</license> <license>LGPL</license>
<source>gstreamer</source> <source>gstreamer</source>
<package>GStreamer source release</package> <package>GStreamer source release</package>

View file

@ -3,7 +3,7 @@
<description>GStreamer core indexers</description> <description>GStreamer core indexers</description>
<filename>../../plugins/indexers/.libs/libgstcoreindexers.so</filename> <filename>../../plugins/indexers/.libs/libgstcoreindexers.so</filename>
<basename>libgstcoreindexers.so</basename> <basename>libgstcoreindexers.so</basename>
<version>0.10.12</version> <version>0.10.13</version>
<license>LGPL</license> <license>LGPL</license>
<source>gstreamer</source> <source>gstreamer</source>
<package>GStreamer source release</package> <package>GStreamer source release</package>

View file

@ -39,6 +39,17 @@ hierarchy, and a set of media-agnostic core elements.
</CVSRepository> </CVSRepository>
</repository> </repository>
<release>
<Version>
<revision>0.10.13</revision>
<branch>0.10</branch>
<name>With or without you</name>
<created>2007-06-05</created>
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.13.tar.bz2" />
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.13.tar.gz" />
</Version>
</release>
<release> <release>
<Version> <Version>
<revision>0.10.12</revision> <revision>0.10.12</revision>

View file

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