mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
releasing 0.10.1
Original commit message from CVS: releasing 0.10.1
This commit is contained in:
parent
9c09daed53
commit
ca814c15a6
8 changed files with 72 additions and 23 deletions
15
ChangeLog
15
ChangeLog
|
@ -1,3 +1,10 @@
|
|||
=== release 0.10.1 ===
|
||||
|
||||
2005-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
releasing 0.10.1, "Nollaig chridheil"
|
||||
|
||||
2005-12-22 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* docs/faq/cvs.xml:
|
||||
|
@ -146,11 +153,11 @@
|
|||
|
||||
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
|
||||
(gst_plugin_feature_load):
|
||||
more meaningful debug output
|
||||
more meaningful debug output
|
||||
* configure.ac:
|
||||
* tests/Makefile.am:
|
||||
* tests/old/examples/Makefile.am:
|
||||
make make distcheck happy again
|
||||
make make distcheck happy again
|
||||
|
||||
2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
|
@ -203,8 +210,8 @@
|
|||
* libs/gst/net/gstnettimeprovider.c
|
||||
(gst_net_time_provider_class_init, gst_net_time_provider_init)
|
||||
(gst_net_time_provider_set_property)
|
||||
(gst_net_time_provider_get_property): Export "active" as a GObject
|
||||
property.
|
||||
(gst_net_time_provider_get_property):
|
||||
API addition: Export "active" as a GObject property.
|
||||
(gst_net_time_provider_thread): Only respond to time queries if
|
||||
the time provider is active.
|
||||
|
||||
|
|
24
NEWS
24
NEWS
|
@ -1,4 +1,26 @@
|
|||
This is GStreamer 0.10.0, "Maroilles".
|
||||
This is GStreamer 0.10.1, "Nollaig chridheil"
|
||||
|
||||
Changes since 0.10.0:
|
||||
|
||||
* element factory leak fixes
|
||||
* tests cleanup
|
||||
* BaseSrc seeking in other format than BYTES
|
||||
* collectpad fixes
|
||||
|
||||
Bugs fixed since 0.10.0:
|
||||
|
||||
* 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac...
|
||||
* 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for...
|
||||
* 323870 : [tools] gst-feedback needs updating for 0.9/0.10
|
||||
* 323882 : gst-launch manpage needs updates
|
||||
* 323905 : use return val of g_list_append
|
||||
|
||||
API added since 0.10.0:
|
||||
|
||||
* GST_TYPE_STATIC_CAPS
|
||||
* GST_TYPE_STATIC_PAD_TEMPLATE
|
||||
* GstNetTimeProvider::active
|
||||
* gst_base_src_set_format
|
||||
|
||||
Changes from the 0.8 series to 0.10 series:
|
||||
|
||||
|
|
32
RELEASE
32
RELEASE
|
@ -1,5 +1,5 @@
|
|||
|
||||
GStreamer: Release notes for GStreamer 0.10.0 "Maroilles"
|
||||
GStreamer: Release notes for GStreamer 0.10.1 "Nollaig chridheil"
|
||||
|
||||
|
||||
|
||||
|
@ -38,13 +38,28 @@ Features of this release
|
|||
|
||||
* Parallel installability with 0.8.x series
|
||||
* Threadsafe design and API
|
||||
* new Chinese/Traditional translation
|
||||
* element factory leak fixes
|
||||
* tests cleanup
|
||||
* BaseSrc seeking in other format than BYTES
|
||||
* collectpad fixes
|
||||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 322874 : [PAD] pad_alloc_buffer should not call set_caps
|
||||
* 323222 : GStreamer 0.9.7 still checks in dirs containing 0.9
|
||||
* 323250 : [collectpads] debug category should be called 'collectpad...
|
||||
* 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac...
|
||||
* 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for...
|
||||
* 323870 : [tools] gst-feedback needs updating for 0.9/0.10
|
||||
* 323882 : gst-launch manpage needs updates
|
||||
* 323905 : use return val of g_list_append
|
||||
|
||||
API changed in this release
|
||||
|
||||
|
||||
- API additions:
|
||||
|
||||
* GST_TYPE_STATIC_CAPS
|
||||
* GST_TYPE_STATIC_PAD_TEMPLATE
|
||||
* GstNetTimeProvider::active
|
||||
* gst_base_src_set_format
|
||||
|
||||
Download
|
||||
|
||||
|
@ -83,10 +98,13 @@ Flumotion has been ported to 0.10 as well.
|
|||
|
||||
Contributors to this release
|
||||
|
||||
*
|
||||
* Andy Wingo
|
||||
* Funda Wang
|
||||
* David Schleef
|
||||
* Edward Hervey
|
||||
* Jan Schmidt
|
||||
* Julien MOUTTE
|
||||
* Michael Smith
|
||||
* Stefan Kost
|
||||
* Thomas Vander Stichele
|
||||
* Tim-Philipp Müller
|
||||
* Wim Taymans
|
||||
|
|
|
@ -6,7 +6,7 @@ AC_INIT
|
|||
|
||||
dnl when going to/from release please set the nano (fourth number) right !
|
||||
dnl releases only do Wall, cvs and prerelease does Werror too
|
||||
AS_VERSION(gstreamer, GST_VERSION, 0, 10, 0, 2,
|
||||
AS_VERSION(gstreamer, GST_VERSION, 0, 10, 1, 0,
|
||||
GST_CVS="no", GST_CVS="yes")
|
||||
|
||||
dnl can autoconf find the source ?
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>standard GStreamer elements</description>
|
||||
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
|
||||
<basename>libgstcoreelements.so</basename>
|
||||
<version>0.10.0</version>
|
||||
<version>0.10.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gstreamer</source>
|
||||
<package>GStreamer source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>GStreamer core indexers</description>
|
||||
<filename>../../plugins/indexers/.libs/libgstcoreindexers.so</filename>
|
||||
<basename>libgstcoreindexers.so</basename>
|
||||
<version>0.10.0</version>
|
||||
<version>0.10.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gstreamer</source>
|
||||
<package>GStreamer source release</package>
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
*
|
||||
* The source can be configured to operate in a any #GstFormat with the
|
||||
* gst_base_src_set_format(). This format determines the format of the
|
||||
* internal #GstSegment and the #GST_EVENT_NEW_SEGMENT. The default format for
|
||||
* internal #GstSegment and the #GST_EVENT_NEW_SEGMENT. The default format for
|
||||
* #GstBaseSrc is GST_FORMAT_BYTES.
|
||||
*
|
||||
* #GstBaseSrc always supports the push mode scheduling. If the following
|
||||
|
@ -45,16 +45,16 @@
|
|||
* <listitem><para>#GstBaseSrc::is_seekable returns TRUE.</para></listitem>
|
||||
* </itemizedlist>
|
||||
*
|
||||
* If all the conditions are met for operating in pull mode, #GstBaseSrc is
|
||||
* If all the conditions are met for operating in pull mode, #GstBaseSrc is
|
||||
* automatically seekable in push mode as well. The following conditions must be
|
||||
* met to make the element seekable in push mode when the format is not
|
||||
* met to make the element seekable in push mode when the format is not
|
||||
* GST_FORMAT_BYTES:
|
||||
* <itemizedlist>
|
||||
* <listitem><para>
|
||||
* #GstBaseSrc::is_seekable returns TRUE.
|
||||
* </para></listitem>
|
||||
* <listitem><para>
|
||||
* #GstBaseSrc::query can convert all supported seek formats to the
|
||||
* #GstBaseSrc::query can convert all supported seek formats to the
|
||||
* internal format as set with gst_base_src_set_format().
|
||||
* </para></listitem>
|
||||
* <listitem><para>
|
||||
|
@ -372,6 +372,8 @@ gst_base_src_is_live (GstBaseSrc * src)
|
|||
*
|
||||
* If a format of GST_FORMAT_BYTES is set, the element will be able to
|
||||
* operate in pull mode if the #GstBaseSrc::is_seekable returns TRUE.
|
||||
*
|
||||
* @Since: 0.10.1
|
||||
*/
|
||||
void
|
||||
gst_base_src_set_format (GstBaseSrc * src, GstFormat format)
|
||||
|
|
|
@ -21,7 +21,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"
|
||||
|
@ -30,10 +30,10 @@
|
|||
#define GST_PACKAGE_ORIGIN "Unknown package origin"
|
||||
|
||||
/* package name in plugins */
|
||||
#define GST_PACKAGE_NAME "GStreamer CVS/prerelease"
|
||||
#define GST_PACKAGE_NAME "GStreamer source release"
|
||||
|
||||
/* Define the version */
|
||||
#define GST_VERSION "0.10.0.2"
|
||||
#define GST_VERSION "0.10.1"
|
||||
|
||||
/* Define if the host CPU is an Alpha */
|
||||
#undef HAVE_CPU_ALPHA
|
||||
|
@ -210,7 +210,7 @@
|
|||
#undef USE_POISONING
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "0.10.0.2"
|
||||
#define VERSION "0.10.1"
|
||||
|
||||
/* Define to 1 if your processor stores words with the most significant byte
|
||||
first (like Motorola and SPARC, unlike Intel and VAX). */
|
||||
|
|
Loading…
Reference in a new issue