mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-17 05:46:36 +00:00
Release 0.10.16
Original commit message from CVS: Release 0.10.16
This commit is contained in:
parent
0454153e93
commit
92a59d99e1
12 changed files with 165 additions and 105 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
=== release 0.10.16 ===
|
||||||
|
|
||||||
|
2008-01-28 Jan Schmidt <thaytan@noraisin.net>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
releasing 0.10.16, "Special Dispensation"
|
||||||
|
|
||||||
2008-01-24 Tim-Philipp Müller <tim at centricular dot net>
|
2008-01-24 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
49
NEWS
49
NEWS
|
@ -1,4 +1,51 @@
|
||||||
This is GStreamer 0.10.15 "October"
|
This is GStreamer 0.10.16 "Special Dispensation"
|
||||||
|
|
||||||
|
Changes since 0.10.15:
|
||||||
|
|
||||||
|
* Monotonic/Posix clock support
|
||||||
|
* Dumping of dot-file graph descriptions for debugging
|
||||||
|
* Clean-up of exported symbols
|
||||||
|
* Many bug-fixes and enhancements
|
||||||
|
|
||||||
|
Bugs fixed since 0.10.15:
|
||||||
|
|
||||||
|
* 497859 : --disable-gst-debug option fails compilation
|
||||||
|
* 339279 : [gst.URIHandler] interfaces with class-global virtual met...
|
||||||
|
* 498694 : Patches to avoid g_signal_emit(SIGNAL_HANDOFF) on identit...
|
||||||
|
* 498746 : basesink is forwarding downstream events
|
||||||
|
* 498767 : Hangs after end of tracks since 0.10.15
|
||||||
|
* 498924 : deprecate GST_PLUGIN_DEFINE_STATIC because it's not portable
|
||||||
|
* 499007 : [gst-plot-timeline] more options
|
||||||
|
* 499140 : Add check to ensure .def files are kept up-to-date
|
||||||
|
* 500143 : Some small improvements (limiting realloc and CPU usage )
|
||||||
|
* 500150 : [filesink] add property to enable buffering via setvbuf()
|
||||||
|
* 501560 : gst_(caps|structure)_from_string() crash if structure nam...
|
||||||
|
* 503131 : g_intern_string SUSE 10.2
|
||||||
|
* 503231 : Change to GST_BUFFER_FLAG_GAP meaning can break with base...
|
||||||
|
* 503417 : Build failure due uninitialized variable in function 'gst...
|
||||||
|
* 503590 : gstreamer-0.10.15 fails tests on ppc64
|
||||||
|
* 503675 : broken registry files written to disk
|
||||||
|
* 504499 : Messages from check no longer contain the test case name
|
||||||
|
* 505799 : iSight camera does not work in gstreamer
|
||||||
|
* 506643 : crash in fixate_value/gst_value_init_and_copy on empty li...
|
||||||
|
* 507957 : clean-up incomplete function declarations
|
||||||
|
* 508175 : GST_TIMEVAL_TO_TIME() and GST_TIMESPEC_TO_TIME() need to ...
|
||||||
|
* 510187 : gst_plugin_register_static() API review and GST_PLUGIN_DE...
|
||||||
|
* 510747 : Use $(MAKE) instead of make to fix the build if GNU make ...
|
||||||
|
* 511750 : Configure of prereleases 15.2-15.4 fail in OpenEmbedded M...
|
||||||
|
|
||||||
|
API additions since 0.10.15:
|
||||||
|
|
||||||
|
* GstIdentity::signal-handoffs
|
||||||
|
* gst_util_get_timestamp()
|
||||||
|
* gst_base_transform_set_gap_aware()
|
||||||
|
* GstFileSink::buffer-mode
|
||||||
|
* GstFileSink::buffer-size
|
||||||
|
* gst_plugin_register_static()
|
||||||
|
|
||||||
|
API deprecated since 0.10.15:
|
||||||
|
|
||||||
|
* GST_PLUGIN_DEFINE_STATIC()
|
||||||
|
|
||||||
Changes since 0.10.14:
|
Changes since 0.10.14:
|
||||||
|
|
||||||
|
|
134
RELEASE
134
RELEASE
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
Release notes for GStreamer 0.10.15 "October"
|
Release notes for GStreamer 0.10.16 "Special Dispensation"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ It is, however, parallel installable with the 0.8.x series.
|
||||||
|
|
||||||
|
|
||||||
The 0.10.x series has been reworked for threadsafety. It also features
|
The 0.10.x series has been reworked for threadsafety. It also features
|
||||||
various feature additions and enchancements.
|
various feature additions and enhancements.
|
||||||
|
|
||||||
|
|
||||||
This module, gstreamer, only contains core functionality.
|
This module, gstreamer, only contains core functionality.
|
||||||
|
@ -37,84 +37,52 @@ contains a set of less supported plug-ins that haven't passed the
|
||||||
|
|
||||||
Features of this release
|
Features of this release
|
||||||
|
|
||||||
* Changes for asynchronous sink management
|
* Monotonic/Posix clock support
|
||||||
* New ts-offset property on basesink for adjusting clock synchronisation
|
* Dumping of dot-file graph descriptions for debugging
|
||||||
* New GstController LFO feature
|
* Clean-up of exported symbols
|
||||||
* Fixes and improvements in latency measurement for live pipelines
|
* Many bug-fixes and enhancements
|
||||||
* Additional documentation and docs fixes
|
*
|
||||||
* Faster typefinding
|
|
||||||
* More tag types added
|
|
||||||
* Improvements in various core elements and parent classes
|
|
||||||
* New unit tests
|
|
||||||
* Allow dumping pipelines as dot graphs
|
|
||||||
* GstStructures now support nesting
|
|
||||||
* URIHandler interface can now be implemented in bindings
|
|
||||||
* Many other bug-fixes and improvements
|
|
||||||
|
|
||||||
Bugs fixed in this release
|
Bugs fixed in this release
|
||||||
|
|
||||||
* 496722 : DSP/DSW files in win32/vs6 directory are in unix format
|
* 497859 : --disable-gst-debug option fails compilation
|
||||||
* 476514 : [queue] Doesn't forward EOS event in all cases
|
* 339279 : [gst.URIHandler] interfaces with class-global virtual met...
|
||||||
* 456573 : allow dumping pipelines as dot graphs
|
* 498694 : Patches to avoid g_signal_emit(SIGNAL_HANDOFF) on identit...
|
||||||
* 475723 : cleanup static caps correctly
|
* 498746 : basesink is forwarding downstream events
|
||||||
* 480341 : Memory leak at fakesink (regression in cvs)
|
* 498767 : Hangs after end of tracks since 0.10.15
|
||||||
* 349410 : Problems with type handling
|
* 498924 : deprecate GST_PLUGIN_DEFINE_STATIC because it's not portable
|
||||||
* 414539 : [API] Support more GST_TAG*_SORTNAME and remove MusicBrai...
|
* 499007 : [gst-plot-timeline] more options
|
||||||
* 459717 : [Controller] Add GstLFOControlSource that provides values...
|
* 499140 : Add check to ensure .def files are kept up-to-date
|
||||||
* 459809 : [API] add GST_TAG_COMPOSER
|
* 500143 : Some small improvements (limiting realloc and CPU usage )
|
||||||
* 461598 : Commit Hungarian translations from TP
|
* 500150 : [filesink] add property to enable buffering via setvbuf()
|
||||||
* 461599 : Some files missing from POTFILES.in
|
* 501560 : gst_(caps|structure)_from_string() crash if structure nam...
|
||||||
* 464366 : program including gst/gstbuffer.h does not compile with -...
|
* 503131 : g_intern_string SUSE 10.2
|
||||||
* 466595 : gst_index_add_association generates corrupted entries
|
* 503231 : Change to GST_BUFFER_FLAG_GAP meaning can break with base...
|
||||||
* 469402 : File uri handling on windows broken
|
* 503417 : Build failure due uninitialized variable in function 'gst...
|
||||||
* 473846 : Deadlock if sink is unable to send first buffer
|
* 503590 : gstreamer-0.10.15 fails tests on ppc64
|
||||||
* 474371 : Can't build libsgtcontroller with VS6
|
* 503675 : broken registry files written to disk
|
||||||
* 474823 : tee unit test failure
|
* 504499 : Messages from check no longer contain the test case name
|
||||||
* 478347 : GST_STATIC_PAD_TEMPLATE macro causes warnings with g++-4.2
|
* 505799 : iSight camera does not work in gstreamer
|
||||||
* 478401 : gstbasesrc.c ref count bug
|
* 506643 : crash in fixate_value/gst_value_init_and_copy on empty li...
|
||||||
* 479784 : GST_PLUGIN_DEFINE() doesn't accept BSD and MIT/X11 licences
|
* 507957 : clean-up incomplete function declarations
|
||||||
* 485343 : Implement a wait_eos function in basesink
|
* 508175 : GST_TIMEVAL_TO_TIME() and GST_TIMESPEC_TO_TIME() need to ...
|
||||||
* 487969 : allow nested GstStructures
|
* 510187 : gst_plugin_register_static() API review and GST_PLUGIN_DE...
|
||||||
* 492077 : Build issues on Windows/MSVC
|
* 510747 : Use $(MAKE) instead of make to fix the build if GNU make ...
|
||||||
* 493134 : Wrong GstObject signals registration
|
* 511750 : Configure of prereleases 15.2-15.4 fail in OpenEmbedded M...
|
||||||
* 493983 : Build issues on Windows
|
|
||||||
* 494343 : pre-release vs6 patch
|
|
||||||
* 480858 : gstqueue code cleaning
|
|
||||||
* 486758 : queue element fails to re-negotiate caps upstream when si...
|
|
||||||
* 488201 : gst_segment_set_newsegment does not accumulate correctly
|
|
||||||
* 492729 : PAUSED- > PLAYING returns ASYNC when triggered from bus han...
|
|
||||||
* 494245 : [basesink] doesn't sync correctly if segment is in BYTES ...
|
|
||||||
|
|
||||||
API changed in this release
|
API changed in this release
|
||||||
|
|
||||||
- API additions:
|
- API additions:
|
||||||
|
|
||||||
* gst_base_sink_get_last_buffer()
|
* GstIdentity::signal-handoffs
|
||||||
* GstBaseSink::last-buffer
|
* gst_util_get_timestamp()
|
||||||
* GstURIHandlerInterface::get_type_full
|
* gst_base_transform_set_gap_aware()
|
||||||
* GstURIHandlerInterface::get_protocols_full
|
* GstFileSink::buffer-mode
|
||||||
* New tag: GST_TAG_ARTIST_SORTNAME
|
* GstFileSink::buffer-size
|
||||||
* New tag: GST_TAG_ALBUM_SORTNAME
|
* gst_plugin_register_static()
|
||||||
* New tag: GST_TAG_TITLE_SORTNAME
|
- API deprecations:
|
||||||
* New tag: GST_TAG_COMPOSER
|
|
||||||
* gst_value_set_structure()
|
* GST_PLUGIN_DEFINE_STATIC()
|
||||||
* gst_value_get_structure()
|
|
||||||
* GST_VALUE_HOLDS_STRUCTURE macro
|
|
||||||
* gst_bus_pop_filtered()
|
|
||||||
* gst_bus_timed_pop_filtered()
|
|
||||||
* gst_base_sink_wait_eos()
|
|
||||||
* gst_pad_peer_query()
|
|
||||||
* GstBaseSrc::do-timestamp
|
|
||||||
* gst_base_src_set_do_timestamp()
|
|
||||||
* gst_base_src_get_do_timestamp()
|
|
||||||
* GstBaseSink::ts-offset property
|
|
||||||
* gst_base_sink_set_ts_offset()
|
|
||||||
* gst_base_sink_get_ts_offset()
|
|
||||||
* GstBaseSink::async property
|
|
||||||
* gst_base_sink_set_async_enabled()
|
|
||||||
* gst_base_sink_is_async_enabled()
|
|
||||||
* gst_structure_get_uint()
|
|
||||||
* GstLFOControlSource and functions
|
|
||||||
|
|
||||||
Download
|
Download
|
||||||
|
|
||||||
|
@ -149,25 +117,19 @@ Let us know if you want to be added to this list.
|
||||||
|
|
||||||
Contributors to this release
|
Contributors to this release
|
||||||
|
|
||||||
*
|
* Alexis Ballier
|
||||||
* Benoit Fouet
|
* Damien Lespiau
|
||||||
* David Nečas
|
* David Schleef
|
||||||
* Edgard Lima
|
|
||||||
* Edward Hervey
|
* Edward Hervey
|
||||||
* Felipe Contreras
|
|
||||||
* Gabor Kelemen
|
|
||||||
* Jan Schmidt
|
* Jan Schmidt
|
||||||
* Jan Schmidt - Sun Microsystems
|
|
||||||
* Jorge González González
|
|
||||||
* Julien MOUTTE
|
* Julien MOUTTE
|
||||||
* Michael Smith
|
* Julien Moutte
|
||||||
* Murray Cumming
|
* Laurent Glayal
|
||||||
* Ole André Vadla Ravnås
|
* Matthias Bolte
|
||||||
* Philippe Kalaf
|
* Peter Kjellerstedt
|
||||||
* Sebastian Dröge
|
* Sebastian Dröge
|
||||||
* Sebastien Moutte
|
|
||||||
* Stefan Kost
|
* Stefan Kost
|
||||||
* Steve Fink
|
* Thijs Vermeir
|
||||||
* Thomas Vander Stichele
|
* Thomas Vander Stichele
|
||||||
* Tim-Philipp Müller
|
* Tim-Philipp Müller
|
||||||
* Wim Taymans
|
* Wim Taymans
|
||||||
|
|
|
@ -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.15.1,
|
AC_INIT(GStreamer, 0.10.16,
|
||||||
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, 14, 0, 14)
|
AS_LIBTOOL(GST, 15, 0, 15)
|
||||||
|
|
||||||
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.
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstCapsFilter::caps</NAME>
|
<NAME>GstCapsFilter::caps</NAME>
|
||||||
<TYPE>GstCaps</TYPE>
|
<TYPE>GstCaps*</TYPE>
|
||||||
<RANGE></RANGE>
|
<RANGE></RANGE>
|
||||||
<FLAGS>rw</FLAGS>
|
<FLAGS>rw</FLAGS>
|
||||||
<NICK>Filter caps</NICK>
|
<NICK>Filter caps</NICK>
|
||||||
|
@ -100,7 +100,7 @@
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstFakeSrc::last-message</NAME>
|
<NAME>GstFakeSrc::last-message</NAME>
|
||||||
<TYPE>gchararray</TYPE>
|
<TYPE>gchar*</TYPE>
|
||||||
<RANGE></RANGE>
|
<RANGE></RANGE>
|
||||||
<FLAGS>r</FLAGS>
|
<FLAGS>r</FLAGS>
|
||||||
<NICK>last-message</NICK>
|
<NICK>last-message</NICK>
|
||||||
|
@ -120,7 +120,7 @@
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstFakeSrc::pattern</NAME>
|
<NAME>GstFakeSrc::pattern</NAME>
|
||||||
<TYPE>gchararray</TYPE>
|
<TYPE>gchar*</TYPE>
|
||||||
<RANGE></RANGE>
|
<RANGE></RANGE>
|
||||||
<FLAGS>rw</FLAGS>
|
<FLAGS>rw</FLAGS>
|
||||||
<NICK>pattern</NICK>
|
<NICK>pattern</NICK>
|
||||||
|
@ -220,7 +220,7 @@
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstFakeSink::last-message</NAME>
|
<NAME>GstFakeSink::last-message</NAME>
|
||||||
<TYPE>gchararray</TYPE>
|
<TYPE>gchar*</TYPE>
|
||||||
<RANGE></RANGE>
|
<RANGE></RANGE>
|
||||||
<FLAGS>r</FLAGS>
|
<FLAGS>r</FLAGS>
|
||||||
<NICK>Last Message</NICK>
|
<NICK>Last Message</NICK>
|
||||||
|
@ -290,7 +290,7 @@
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstFileSrc::location</NAME>
|
<NAME>GstFileSrc::location</NAME>
|
||||||
<TYPE>gchararray</TYPE>
|
<TYPE>gchar*</TYPE>
|
||||||
<RANGE></RANGE>
|
<RANGE></RANGE>
|
||||||
<FLAGS>rw</FLAGS>
|
<FLAGS>rw</FLAGS>
|
||||||
<NICK>File Location</NICK>
|
<NICK>File Location</NICK>
|
||||||
|
@ -390,7 +390,7 @@
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstIdentity::last-message</NAME>
|
<NAME>GstIdentity::last-message</NAME>
|
||||||
<TYPE>gchararray</TYPE>
|
<TYPE>gchar*</TYPE>
|
||||||
<RANGE></RANGE>
|
<RANGE></RANGE>
|
||||||
<FLAGS>r</FLAGS>
|
<FLAGS>r</FLAGS>
|
||||||
<NICK>last-message</NICK>
|
<NICK>last-message</NICK>
|
||||||
|
@ -458,6 +458,16 @@
|
||||||
<DEFAULT>FALSE</DEFAULT>
|
<DEFAULT>FALSE</DEFAULT>
|
||||||
</ARG>
|
</ARG>
|
||||||
|
|
||||||
|
<ARG>
|
||||||
|
<NAME>GstIdentity::signal-handoffs</NAME>
|
||||||
|
<TYPE>gboolean</TYPE>
|
||||||
|
<RANGE></RANGE>
|
||||||
|
<FLAGS>rw</FLAGS>
|
||||||
|
<NICK>Signal handoffs</NICK>
|
||||||
|
<BLURB>Send a signal before pushing the buffer.</BLURB>
|
||||||
|
<DEFAULT>TRUE</DEFAULT>
|
||||||
|
</ARG>
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstQueue::current-level-buffers</NAME>
|
<NAME>GstQueue::current-level-buffers</NAME>
|
||||||
<TYPE>guint</TYPE>
|
<TYPE>guint</TYPE>
|
||||||
|
@ -560,7 +570,7 @@
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstFileSink::location</NAME>
|
<NAME>GstFileSink::location</NAME>
|
||||||
<TYPE>gchararray</TYPE>
|
<TYPE>gchar*</TYPE>
|
||||||
<RANGE></RANGE>
|
<RANGE></RANGE>
|
||||||
<FLAGS>rw</FLAGS>
|
<FLAGS>rw</FLAGS>
|
||||||
<NICK>File Location</NICK>
|
<NICK>File Location</NICK>
|
||||||
|
@ -568,6 +578,26 @@
|
||||||
<DEFAULT>NULL</DEFAULT>
|
<DEFAULT>NULL</DEFAULT>
|
||||||
</ARG>
|
</ARG>
|
||||||
|
|
||||||
|
<ARG>
|
||||||
|
<NAME>GstFileSink::buffer-mode</NAME>
|
||||||
|
<TYPE>GstFileSinkBufferMode</TYPE>
|
||||||
|
<RANGE></RANGE>
|
||||||
|
<FLAGS>rw</FLAGS>
|
||||||
|
<NICK>Buffering mode</NICK>
|
||||||
|
<BLURB>The buffering mode to use.</BLURB>
|
||||||
|
<DEFAULT>Default buffering</DEFAULT>
|
||||||
|
</ARG>
|
||||||
|
|
||||||
|
<ARG>
|
||||||
|
<NAME>GstFileSink::buffer-size</NAME>
|
||||||
|
<TYPE>guint</TYPE>
|
||||||
|
<RANGE></RANGE>
|
||||||
|
<FLAGS>rw</FLAGS>
|
||||||
|
<NICK>Buffering size</NICK>
|
||||||
|
<BLURB>Size of buffer in number of bytes for line or full buffer-mode.</BLURB>
|
||||||
|
<DEFAULT>65536</DEFAULT>
|
||||||
|
</ARG>
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstTee::has-chain</NAME>
|
<NAME>GstTee::has-chain</NAME>
|
||||||
<TYPE>gboolean</TYPE>
|
<TYPE>gboolean</TYPE>
|
||||||
|
@ -590,7 +620,7 @@
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstTee::last-message</NAME>
|
<NAME>GstTee::last-message</NAME>
|
||||||
<TYPE>gchararray</TYPE>
|
<TYPE>gchar*</TYPE>
|
||||||
<RANGE></RANGE>
|
<RANGE></RANGE>
|
||||||
<FLAGS>r</FLAGS>
|
<FLAGS>r</FLAGS>
|
||||||
<NICK>Last Message</NICK>
|
<NICK>Last Message</NICK>
|
||||||
|
@ -630,7 +660,7 @@
|
||||||
|
|
||||||
<ARG>
|
<ARG>
|
||||||
<NAME>GstTypeFindElement::caps</NAME>
|
<NAME>GstTypeFindElement::caps</NAME>
|
||||||
<TYPE>GstCaps</TYPE>
|
<TYPE>GstCaps*</TYPE>
|
||||||
<RANGE></RANGE>
|
<RANGE></RANGE>
|
||||||
<FLAGS>r</FLAGS>
|
<FLAGS>r</FLAGS>
|
||||||
<NICK>caps</NICK>
|
<NICK>caps</NICK>
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
GObject
|
GObject
|
||||||
GstObject
|
GstObject
|
||||||
GstPad
|
GstPad
|
||||||
|
GstPadTemplate
|
||||||
GstPluginFeature
|
GstPluginFeature
|
||||||
GstElementFactory
|
GstElementFactory
|
||||||
GstTypeFindFactory
|
GstTypeFindFactory
|
||||||
|
@ -18,16 +19,17 @@ GObject
|
||||||
GstFileSrc
|
GstFileSrc
|
||||||
GstBaseSink
|
GstBaseSink
|
||||||
GstFakeSink
|
GstFakeSink
|
||||||
|
GstFdSink
|
||||||
GstFileSink
|
GstFileSink
|
||||||
GstQueue
|
GstQueue
|
||||||
GstTee
|
GstTee
|
||||||
GstTypeFindElement
|
GstTypeFindElement
|
||||||
|
GstMultiQueue
|
||||||
GstPlugin
|
GstPlugin
|
||||||
GstRegistry
|
GstRegistry
|
||||||
GstIndex
|
GstIndex
|
||||||
GstMemIndex
|
GstMemIndex
|
||||||
GstFileIndex
|
GstFileIndex
|
||||||
GstPadTemplate
|
|
||||||
GstSignalObject
|
GstSignalObject
|
||||||
GInterface
|
GInterface
|
||||||
GstChildProxy
|
GstChildProxy
|
||||||
|
|
|
@ -2,4 +2,5 @@ GstBin GstChildProxy
|
||||||
GstPipeline GstChildProxy
|
GstPipeline GstChildProxy
|
||||||
GstFdSrc GstURIHandler
|
GstFdSrc GstURIHandler
|
||||||
GstFileSrc GstURIHandler
|
GstFileSrc GstURIHandler
|
||||||
|
GstFdSink GstURIHandler
|
||||||
GstFileSink GstURIHandler
|
GstFileSink GstURIHandler
|
||||||
|
|
|
@ -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.15</version>
|
<version>0.10.16</version>
|
||||||
<license>LGPL</license>
|
<license>LGPL</license>
|
||||||
<source>gstreamer</source>
|
<source>gstreamer</source>
|
||||||
<package>GStreamer source release</package>
|
<package>GStreamer source release</package>
|
||||||
|
|
|
@ -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.15</version>
|
<version>0.10.16</version>
|
||||||
<license>LGPL</license>
|
<license>LGPL</license>
|
||||||
<source>gstreamer</source>
|
<source>gstreamer</source>
|
||||||
<package>GStreamer source release</package>
|
<package>GStreamer source release</package>
|
||||||
|
|
|
@ -39,6 +39,17 @@ hierarchy, and a set of media-agnostic core elements.
|
||||||
</CVSRepository>
|
</CVSRepository>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
|
<release>
|
||||||
|
<Version>
|
||||||
|
<revision>0.10.16</revision>
|
||||||
|
<branch>0.10</branch>
|
||||||
|
<name>Special Dispensation</name>
|
||||||
|
<created>2008-01-28</created>
|
||||||
|
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.16.tar.bz2" />
|
||||||
|
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.16.tar.gz" />
|
||||||
|
</Version>
|
||||||
|
</release>
|
||||||
|
|
||||||
<release>
|
<release>
|
||||||
<Version>
|
<Version>
|
||||||
<revision>0.10.15</revision>
|
<revision>0.10.15</revision>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
af az ca be bg cs da de en_GB es fi fr hu it nb nl pl ru rw sk sq sr sv tr uk vi zh_CN zh_TW
|
af az be bg ca cs da de en_GB es fi fr hu it nb nl pl ru rw sk sq sr sv tr uk vi zh_CN zh_TW
|
||||||
|
|
|
@ -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.15"
|
#define PACKAGE_STRING "GStreamer 0.10.16"
|
||||||
|
|
||||||
/* 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.15"
|
#define PACKAGE_VERSION "0.10.16"
|
||||||
|
|
||||||
/* 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.15"
|
#define VERSION "0.10.16"
|
||||||
|
|
||||||
/* 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). */
|
||||||
|
|
Loading…
Reference in a new issue