mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
Merge branch 'master' into 0.11
Conflicts: configure.ac win32/common/config.h win32/common/gstversion.h
This commit is contained in:
commit
c6a3878369
10 changed files with 111 additions and 20 deletions
76
ChangeLog
76
ChangeLog
|
@ -1,9 +1,79 @@
|
|||
=== release 0.10.34 ===
|
||||
=== release 0.10.35 ===
|
||||
|
||||
2011-05-14 Tim-Philipp Müller <tim.muller@collabora.co.uk>
|
||||
2011-06-15 Tim-Philipp Müller <tim.muller@collabora.co.uk>
|
||||
|
||||
* configure.ac:
|
||||
releasing 0.10.34, "Misfits"
|
||||
releasing 0.10.35, "Nuclear Fission"
|
||||
|
||||
2011-06-09 17:13:35 +0100 Javier Jardón <jjardon@gnome.org>
|
||||
|
||||
* gst/gstelement.h:
|
||||
* gst/gstelementfactory.c:
|
||||
* gst/gstelementfactory.h:
|
||||
* gst/gstformat.h:
|
||||
* gst/gstinfo.c:
|
||||
* gst/gstinfo.h:
|
||||
* gst/gstpad.c:
|
||||
* gst/gstpad.h:
|
||||
* gst/gstplugin.c:
|
||||
* gst/gstplugin.h:
|
||||
* gst/gstpluginfeature.c:
|
||||
* gst/gstpluginfeature.h:
|
||||
* gst/gstquery.h:
|
||||
* gst/gststructure.h:
|
||||
* gst/gsttaglist.c:
|
||||
* gst/gsttaglist.h:
|
||||
* gst/gsttagsetter.c:
|
||||
* gst/gsttagsetter.h:
|
||||
* gst/gsttrace.h:
|
||||
* gst/gsturi.c:
|
||||
* gst/gsturi.h:
|
||||
* gst/gstutils.c:
|
||||
* gst/gstutils.h:
|
||||
* gst/gstvalue.h:
|
||||
Use "const" instead G_CONST_RETURN
|
||||
G_CONST_RETURN will be deprecated soon.
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=652211
|
||||
|
||||
2011-06-04 00:30:15 -0700 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/glib-compat-private.h:
|
||||
* gst/gstatomicqueue.c:
|
||||
* gst/gstelementfactory.c:
|
||||
* gst/gstpoll.c:
|
||||
* gst/gstsystemclock.c:
|
||||
* gst/gstutils.c:
|
||||
* plugins/elements/gstmultiqueue.c:
|
||||
* tests/benchmarks/gstclockstress.c:
|
||||
Work around changes in g_atomic API
|
||||
See #651514 for details. It's apparently impossible to write code
|
||||
that avoids both type punning warnings with old g_atomic headers and
|
||||
assertions in the new. Thus, macros and a version check.
|
||||
|
||||
2011-05-25 13:40:30 +0400 Руслан Ижбулатов <lrn1986@gmail.com>
|
||||
|
||||
* gst/gstsystemclock.c:
|
||||
systemclock: Placate gcc by defining EWOULDBLOCK to something
|
||||
|
||||
2011-05-25 12:47:51 +0400 Руслан Ижбулатов <lrn1986@gmail.com>
|
||||
|
||||
* gst/gstpoll.c:
|
||||
poll: Fix WAKE_EVENT() to behave posixly on Windows
|
||||
|
||||
=== release 0.10.34 ===
|
||||
|
||||
2011-05-14 01:00:23 +0100 Tim-Philipp Müller <tim.muller@collabora.co.uk>
|
||||
|
||||
* ChangeLog:
|
||||
* NEWS:
|
||||
* RELEASE:
|
||||
* configure.ac:
|
||||
* docs/plugins/inspect/plugin-coreelements.xml:
|
||||
* docs/plugins/inspect/plugin-coreindexers.xml:
|
||||
* gstreamer.doap:
|
||||
* win32/common/config.h:
|
||||
* win32/common/gstversion.h:
|
||||
Release 0.10.34
|
||||
|
||||
2011-05-04 15:31:56 +0300 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
|
||||
|
||||
|
|
12
NEWS
12
NEWS
|
@ -1,4 +1,14 @@
|
|||
This is GStreamer 0.10.34 "Misfits"
|
||||
This is GStreamer 0.10.35 "Nuclear Fission"
|
||||
|
||||
Changes since 0.10.34:
|
||||
|
||||
* work around GLib atomic ops API change
|
||||
* some minor win32/mingw fixes
|
||||
* don't use G_CONST_RETURN in public headers
|
||||
|
||||
Bugs fixed since 0.10.34:
|
||||
|
||||
* 652211 : Use const instead G_CONST_RETURN
|
||||
|
||||
Changes since 0.10.33:
|
||||
|
||||
|
|
18
RELEASE
18
RELEASE
|
@ -1,5 +1,5 @@
|
|||
|
||||
Release notes for GStreamer 0.10.34 "Misfits"
|
||||
Release notes for GStreamer 0.10.35 "Nuclear Fission"
|
||||
|
||||
|
||||
|
||||
|
@ -37,14 +37,13 @@ contains a set of less supported plug-ins that haven't passed the
|
|||
|
||||
Features of this release
|
||||
|
||||
* Fix multiqueue thread-safety regression
|
||||
* Don't set artificial 0-timestamp on first packet for TIME-based live sources
|
||||
* Otherwise identical to the previous release (0.10.33)
|
||||
* work around GLib atomic ops API change
|
||||
* some minor win32/mingw fixes
|
||||
* don't use G_CONST_RETURN in public headers
|
||||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 649369 : basesrc: do not set first buffer timestamp to 0 for live sources
|
||||
* 649878 : [multiqueue] regression: gst_single_queue_new not MT-safe
|
||||
* 652211 : Use const instead G_CONST_RETURN
|
||||
|
||||
Download
|
||||
|
||||
|
@ -78,6 +77,7 @@ Let us know if you want to be added to this list.
|
|||
|
||||
Contributors to this release
|
||||
|
||||
* Mark Nauwelaerts
|
||||
* Vincent Penquerc'h
|
||||
|
||||
* David Schleef
|
||||
* Javier Jardón
|
||||
* Руслан Ижбулатов
|
||||
|
|
@ -244,7 +244,7 @@ AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
|
|||
AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
|
||||
|
||||
dnl check for gobject-introspection
|
||||
GOBJECT_INTROSPECTION_CHECK([0.6.3])
|
||||
GOBJECT_INTROSPECTION_CHECK([0.6.8])
|
||||
|
||||
dnl check for documentation tools
|
||||
AG_GST_DOCBOOK_CHECK
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 22 KiB |
|
@ -3,7 +3,7 @@
|
|||
<description>standard GStreamer elements</description>
|
||||
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
|
||||
<basename>libgstcoreelements.so</basename>
|
||||
<version>0.10.34.1</version>
|
||||
<version>0.10.35.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gstreamer</source>
|
||||
<package>GStreamer git</package>
|
||||
|
@ -331,4 +331,4 @@
|
|||
</pads>
|
||||
</element>
|
||||
</elements>
|
||||
</plugin>
|
||||
</plugin>
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
<description>GStreamer core indexers</description>
|
||||
<filename>../../plugins/indexers/.libs/libgstcoreindexers.so</filename>
|
||||
<basename>libgstcoreindexers.so</basename>
|
||||
<version>0.10.34.1</version>
|
||||
<version>0.10.35.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gstreamer</source>
|
||||
<package>GStreamer git</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
</elements>
|
||||
</plugin>
|
||||
</plugin>
|
||||
|
|
|
@ -38,6 +38,17 @@ hierarchy, and a set of media-agnostic core elements.
|
|||
</GitRepository>
|
||||
</repository>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>0.10.35</revision>
|
||||
<branch>0.10</branch>
|
||||
<name>Nuclear Fission</name>
|
||||
<created>2011-06-15</created>
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.35.tar.bz2" />
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.35.tar.gz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>0.10.34</revision>
|
||||
|
|
|
@ -3113,7 +3113,7 @@ stopping:
|
|||
*
|
||||
* Queue an object for rendering.
|
||||
* The first prerollable object queued will complete the preroll. If the
|
||||
* preroll queue if filled, we render all the objects in the queue.
|
||||
* preroll queue is filled, we render all the objects in the queue.
|
||||
*
|
||||
* This function takes ownership of the object.
|
||||
*/
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
#define GST_PACKAGE_ORIGIN "Unknown package origin"
|
||||
|
||||
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
|
||||
#define GST_PACKAGE_RELEASE_DATETIME "2011-06-04T15:03Z"
|
||||
#define GST_PACKAGE_RELEASE_DATETIME "2011-06-18T12:45Z"
|
||||
|
||||
/* location of the installed gst-plugin-scanner */
|
||||
#define GST_PLUGIN_SCANNER_INSTALLED LIBDIR "\\gst-plugin-scanner"
|
||||
|
|
Loading…
Reference in a new issue