Merge tag 'upstream/1.5.1' into debian-experimental
Upstream version 1.5.1
diff --git a/ChangeLog b/ChangeLog
index d1b0644..fc519c5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,4836 @@
-=== release 1.4.0 ===
+=== release 1.5.1 ===
-2014-07-19 Sebastian Dröge <slomo@coaxion.net>
+2015-06-07 Sebastian Dröge <slomo@coaxion.net>
* configure.ac:
- releasing 1.4.0
+ releasing 1.5.1
+
+2015-06-07 09:33:52 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * po/cs.po:
+ * po/de.po:
+ * po/fr.po:
+ * po/tr.po:
+ po: Update translations
+
+2015-06-07 09:32:39 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclientclock: Add Since marker to the docs for gst_ntp_clock_new()
+
+2015-06-07 09:32:12 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * po/af.po:
+ * po/az.po:
+ * po/be.po:
+ * po/bg.po:
+ * po/ca.po:
+ * po/cs.po:
+ * po/da.po:
+ * po/de.po:
+ * po/el.po:
+ * po/en_GB.po:
+ * po/eo.po:
+ * po/es.po:
+ * po/eu.po:
+ * po/fi.po:
+ * po/fr.po:
+ * po/gl.po:
+ * po/hr.po:
+ * po/hu.po:
+ * po/id.po:
+ * po/it.po:
+ * po/ja.po:
+ * po/lt.po:
+ * po/nb.po:
+ * po/nl.po:
+ * po/pl.po:
+ * po/pt_BR.po:
+ * po/ro.po:
+ * po/ru.po:
+ * po/rw.po:
+ * po/sk.po:
+ * po/sl.po:
+ * po/sq.po:
+ * po/sr.po:
+ * po/sv.po:
+ * po/tr.po:
+ * po/uk.po:
+ * po/vi.po:
+ * po/zh_CN.po:
+ * po/zh_TW.po:
+ Update .po files
+
+2015-06-07 09:08:35 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * tests/check/gst/gstmemory.c:
+ memory: Fix compiler warnings in unit test
+ gst/gstmemory.c:570:38: error: implicit conversion from enumeration type 'GstMapFlags' to different enumeration
+ type 'GstLockFlags' [-Werror,-Wenum-conversion]
+ fail_unless (gst_memory_lock (mem, GST_MAP_WRITE));
+ ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~
+
+2015-06-07 08:59:23 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstptpclock.c:
+ ptpclock: Use the current path delay for calculation the local/remote clock times
+ The mean might currently be changing, and the current path delay is the
+ closest we can get to the actual delay around the current SYNC message.
+
+2015-06-06 23:05:32 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclientclock: Add some copyright stuff
+
+2015-06-06 21:43:05 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * docs/libs/gstreamer-libs-sections.txt:
+ * libs/gst/net/Makefile.am:
+ * libs/gst/net/gstnetclientclock.c:
+ * libs/gst/net/gstnetclientclock.h:
+ * libs/gst/net/gstntppacket.c:
+ * libs/gst/net/gstntppacket.h:
+ * win32/common/libgstnet.def:
+ netclientclock: Add NTPv4 support
+ This uses all of the netclientclock code, except for the generation and
+ parsing of packets. Unfortunately some code duplication was necessary
+ because GstNetTimePacket is public API and couldn't be extended easily
+ to support NTPv4 packets without breaking API/ABI.
+
+2015-06-06 20:39:47 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclientclock: Preparation for NTPv4 support
+ We extend our calculations to work with local send time, remote receive time,
+ remote send time and local receive time. For the netclientclock protocol,
+ remote receive and send time are assumed to be the same value.
+ For the results, this modified calculation makes absolutely no difference
+ unless the two remote times are different.
+
+2015-06-06 19:01:06 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclientclock. Fix last commit
+ Apparently I failed at git add -i.
+
+2015-06-06 18:42:18 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclientclock: Make gst_net_client_clock_new() a thing wrapper around g_object_new()
+ Bindings will like this, and also it fixes a FIXME comment.
+
+2015-06-06 14:34:39 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstptpclock.c:
+ ptpclock: Use #define everywhere instead of G_N_ELEMENTS()
+
+2015-06-06 14:31:16 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclientclock: Filter RTTs based on the median of the last RTTs before considering them at all
+ This improves accuracy on wifi or similar networks, where the RTT can go very
+ high up for a single observation every now and then. Without filtering them
+ away completely, they would still still modify the average RTT, and thus all
+ clock estimations.
+
+2015-06-06 14:19:21 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstptpclock.c:
+ ptpclock: Use a system clock for the time observations instead of gst_util_get_timestamp()
+ They don't necessarily use the same underlying clocks (e.g. on Windows), or
+ might be configured to a different clock type (monotonic vs. real time clock).
+ We need the values a clean system clock returns, as those are the values used
+ by the internal clocks.
+
+2015-06-06 12:35:58 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstptpclock.c:
+ ptpclock: Fix documentation a bit
+
+2015-06-05 19:35:29 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/elements/fakesink.c:
+ tests: fakesink: test notify::last-message and deep-notify::last-message
+ deep-notify::last-message seems to cause some problems, so disable for now.
+ https://bugzilla.gnome.org/show_bug.cgi?id=681642
+
+2015-06-05 10:02:04 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ typefind: Post an error if we can't typefind the data until EOS
+ https://bugzilla.gnome.org/show_bug.cgi?id=750439
+
+2015-06-04 19:05:44 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/helpers/gst-ptp-helper.c:
+ ptp-helper: Make sure to use g_poll() for the main context
+ The modified main context from https://bugzilla.gnome.org/show_bug.cgi?id=741054
+ somehow calls setugid(), which abort()s setuid root applications on OSX.
+
+2015-06-04 18:32:14 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/helpers/gst-ptp-helper.c:
+ ptp-helper: Make sure that we are running setuid root if configured that way
+
+2015-06-04 18:00:50 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/helpers/gst-ptp-helper.c:
+ ptp-helper: Fix interface listing and MAC retrieval on OSX
+
+2015-06-03 19:04:15 +0300 Vivia Nikolaidou <vivia@ahiru.eu>
+
+ * tools/gst-indent:
+ gst-indent: Add support for gindent as executable name
+ gst-indent used to support gnuindent and indent as executable names.
+ However, on OSX one can "brew install gnu-indent" and then the
+ executable name will be gindent. Added support for that.
+ https://bugzilla.gnome.org/show_bug.cgi?id=750351
+
+2015-06-03 16:42:57 +0100 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * libs/gst/helpers/.gitignore:
+ gitignore: add libs/gst/helpers/gst-ptp-helper
+
+2015-06-03 16:34:58 +0100 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * libs/gst/helpers/Makefile.am:
+ ptp: ignore permission errors in Makefile
+ To satisfy the buildslaves ignore permission errors in chown, chmod and setcap
+
+2015-06-03 17:06:09 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/helpers/gst-ptp-helper.c:
+ ptp: Don't use SIOCGIFHWADDR on Apple
+ Just #ifdef the code for now, this should be implemented around
+ IOKit later instead of using ioctls.
+
+2015-06-03 16:28:44 +0200 Philippe Normand <philn@igalia.com>
+
+ * libs/gst/helpers/Makefile.am:
+ build: make install-exec-hooks depend on install-helpersPROGRAMS
+ To avoid race conditions where make would try to change ownership and
+ permissions of the not-yet-installed ptp helper.
+
+2015-06-03 16:08:43 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstptpclock.c:
+ ptp: Fix debug output to print the difference instead of absolute values
+
+2015-06-03 15:22:31 +0200 Wim Taymans <wtaymans@redhat.com>
+
+ * libs/gst/net/gstptpclock.c:
+ ptpclock: fix compilation
+ Don't put code between declarations.
+ Fix use of uninitialized variables
+
+2015-06-03 11:04:48 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstptpclock.c:
+ ptp: Add median based pre-filtering of delays
+ If the delay measurement is too far away from the median of the window of last
+ delay measurements, we discard it. This increases accuracy on wifi a lot.
+ https://bugzilla.gnome.org/show_bug.cgi?id=749391
+
+2015-06-02 15:24:06 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstptpclock.c:
+ ptp: Add #define to only use SYNC messages for which we can send DELAY_REQ
+ https://bugzilla.gnome.org/show_bug.cgi?id=749391
+
+2015-05-15 16:58:51 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/net/gstptpclock.c:
+ ptp: Add #defines to enable/disable improvements for unreliable networks
+ We should do some more measurements with all these and check how much sense
+ they make for PTP. Also enabling them means not following IEEE1588-2008 by the
+ letter anymore.
+ https://bugzilla.gnome.org/show_bug.cgi?id=749391
+
+2015-05-14 12:18:25 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * configure.ac:
+ * docs/libs/gstreamer-libs-docs.sgml:
+ * docs/libs/gstreamer-libs-sections.txt:
+ * libs/gst/helpers/Makefile.am:
+ * libs/gst/helpers/gst-ptp-helper.c:
+ * libs/gst/net/Makefile.am:
+ * libs/gst/net/gstptp_private.h:
+ * libs/gst/net/gstptpclock.c:
+ * libs/gst/net/gstptpclock.h:
+ * libs/gst/net/net.h:
+ * tests/examples/Makefile.am:
+ * tests/examples/ptp/.gitignore:
+ * tests/examples/ptp/Makefile.am:
+ * tests/examples/ptp/ptp-print-times.c:
+ * win32/common/libgstnet.def:
+ ptp: Initial implementation of a PTP clock
+ GstPtpClock implements a PTP (IEEE1588:2008) ordinary clock in
+ slave-only mode, that allows a GStreamer pipeline to synchronize
+ to a PTP network clock in some specific domain.
+ The PTP subsystem can be initialized with gst_ptp_init(), which then
+ starts a helper process to do the actual communication via the PTP
+ ports. This is required as PTP listens on ports < 1024 and thus
+ requires special privileges. Once this helper process is started, the
+ main process will synchronize to all PTP domains that are detected on
+ the selected interfaces.
+ gst_ptp_clock_new() then allows to create a GstClock that provides the
+ PTP time from a master clock inside a specific PTP domain. This clock
+ will only return valid timestamps once the timestamps in the PTP domain
+ are known. To check this, the GstPtpClock::internal-clock property and
+ the related notify::clock signal can be used. Once the internal clock
+ is not NULL, the PTP domain's time is known. Alternatively you can wait
+ for this with gst_ptp_clock_wait_ready().
+ To gather statistics about the PTP clock synchronization,
+ gst_ptp_statistics_callback_add() can be used. This gives the
+ application the possibility to collect all kinds of statistics
+ from the clock synchronization.
+ https://bugzilla.gnome.org/show_bug.cgi?id=749391
+
+2015-06-03 13:16:15 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * docs/gst/gstreamer-sections.txt:
+ * gst/gstclock.c:
+ * gst/gstclock.h:
+ * win32/common/libgstreamer.def:
+ clock: Add GST_CLOCK_FLAG_NEEDS_STARTUP_SYNC and related API
+ gst_clock_wait_for_sync(), gst_clock_is_synced() and gst_clock_set_synced()
+ plus a signal to asynchronously wait for the clock to be synced.
+ This can be used by clocks to signal that they need initial synchronization
+ before they can report any time, and that this synchronization can also get
+ completely lost at some point. Network clocks, like the GStreamer
+ netclientclock, NTP or PTP clocks are examples for clocks where this is useful
+ to have as they can't report any time at all before they're synced.
+ https://bugzilla.gnome.org/show_bug.cgi?id=749391
+
+2015-06-03 18:03:36 +1000 Matthew Waters <matthew@centricular.com>
+
+ * gst/gstallocator.h:
+ * gst/gstmemory.c:
+ * gst/gstmemory.h:
+ memory: provide a mem_unmap function that takes the flags to unmap
+ There are gstmemory's available that operate in two memory domains
+ and need to ensure consistent access between these domains.
+ Imagine a scenario where e.g. the GLMemory is mapped twice in both
+ the GPU and the CPU domain. On unmap or a subsequent map, it would
+ like to ensure that the most recent data is available in the memory
+ domain requested. Either by flushing the writes and/or initiating a
+ DMA transfer. Without knowing which domain is being unmapped, the
+ memory does not know where the most recent data is to transfer to
+ the other memory domain.
+ Note: this still does not allow downgrading a memory map.
+ https://bugzilla.gnome.org/show_bug.cgi?id=750319
+
+2015-06-02 16:14:50 +1000 Matthew Waters <matthew@centricular.com>
+
+ * gst/gstmemory.c:
+ * tests/check/gst/gstmemory.c:
+ memory: gst_memory_share may fail to exclusively lock the parent memory
+ Now that locking exclusively dows not always succeed, we need to signal
+ the failure case from gst_memory_init.
+ Rather than introducing an API or funcionality change to gst_memory_init,
+ workaround by checking exclusivity in the calling code.
+ https://bugzilla.gnome.org/show_bug.cgi?id=750172
+
+2015-06-02 00:23:37 +1000 Matthew Waters <matthew@centricular.com>
+
+ * gst/gstbuffer.c:
+ * tests/check/gst/gstbuffer.c:
+ buffer: locking memory exclusively may fail
+ Attempt to return a copy of the memory instead.
+ https://bugzilla.gnome.org/show_bug.cgi?id=750172
+
+2015-05-31 21:25:23 +1000 Matthew Waters <matthew@centricular.com>
+
+ * gst/gstminiobject.c:
+ * tests/check/gst/gstmemory.c:
+ miniobject: disallow a double write/exclusive lock
+ gst_memory_lock (mem, WRITE | EXCLUSIVE);
+ gst_memory_lock (mem, WRITE | EXCLUSIVE);
+ Succeeds when the part-miniobject.txt design doc suggests that this should fail:
+ "A gst_mini_object_lock() can fail when a WRITE lock is requested and
+ the exclusive counter is > 1. Indeed a GstMiniObject object with an
+ exclusive counter 1 is locked EXCLUSIVELY by at least 2 objects and is
+ therefore not writable."
+ https://bugzilla.gnome.org/show_bug.cgi?id=750172
+
+2015-06-02 20:32:35 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gsturi.c:
+ uri: match return type of get_uri_type() implementation to declaration
+ https://bugzilla.gnome.org/show_bug.cgi?id=750292
+
+2015-06-03 00:12:36 +1000 Jan Schmidt <jan@centricular.com>
+
+ * gst/gstbuffer.c:
+ gstbuffer: Add a note about metas needing to be copied last
+
+2015-05-27 22:23:00 +1000 Jan Schmidt <jan@centricular.com>
+
+ * gst/gstvalue.c:
+ * tests/check/gst/gstvalue.c:
+ gstvalue: Implement gst_value_is_subset() for flagsets
+
+2015-06-02 16:33:48 +0200 Edward Hervey <bilboed@bilboed.com>
+
+ * tests/check/gst/gstprotection.c:
+ check: Use GST_CHECK_MAIN macro
+
+2015-05-20 21:18:08 +0900 eunhae choi <eunhae1.choi@samsung.com>
+
+ * plugins/elements/gstdownloadbuffer.c:
+ downloadbuffer: release lock before posting msg
+ to avoid the deadlock in playbin2,
+ send msg after release the download buffer lock.
+ https://bugzilla.gnome.org/show_bug.cgi?id=749535
+
+2015-05-31 20:21:42 -0300 Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
+
+ * gst/gststructure.c:
+ structure: add note about missing field creation on _set()
+
+2015-05-30 13:01:09 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/gst/gstcaps.c:
+ * tests/check/gst/gststructure.c:
+ tests: fix some leaks in new flagset checks
+
+2015-05-30 12:39:19 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/base/gstqueuearray.c:
+ queuearray: remove duplicate assignment
+ We've already done this earlier in the function,
+ and nothing has changed since we first read it.
+
+2015-05-27 17:22:28 +0530 Nirbheek Chauhan <nirbheek@centricular.com>
+
+ * gst/gst.c:
+ gst/gst.c: Add a warning about DllMain to prevent misuse
+ DllMain should not be relied on for anything except storing the DLL handle.
+ It should also not be defined for static builds, but doing so is not
+ straightforward and is mostly harmless, so let's just add a comment about that
+ for now.
+
+2015-05-27 13:54:25 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstfunnel.c:
+ funnel: Improve debug output a bit
+
+2015-05-26 14:46:16 +0100 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * docs/design/draft-klass.txt:
+ docs: fix typo in draft-klass.txt
+
+2015-05-26 14:03:25 +0100 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * docs/code-reviews/README:
+ * docs/code-reviews/gstbin.c-1.41:
+ code-reviews: remove obsolete code reviews
+ This obsolete folder hasn't been touched since 2001 and has no purpose. It
+ confuses new developers.
+
+2015-05-25 21:02:28 +1000 Matthew Waters <matthew@centricular.com>
+
+ * libs/gst/base/gstbasesink.c:
+ basesink: use the slightly more correct take_sample for last-sample
+ gst_value_take_buffer() and gst_value_take_sample() both resolve to
+ g_value_take_boxed(). Use the method with the correct name if we
+ ever change that.
+
+2015-05-25 16:23:33 +1000 Jan Schmidt <jan@centricular.com>
+
+ * docs/gst/gstreamer-sections.txt:
+ * gst/gststructure.c:
+ * gst/gststructure.h:
+ * gst/gstvalue.c:
+ * gst/gstvalue.h:
+ * tests/check/gst/capslist.h:
+ * tests/check/gst/gstcaps.c:
+ * tests/check/gst/gststructure.c:
+ * tests/check/gst/gstvalue.c:
+ * win32/common/libgstreamer.def:
+ gstvalue: Add GstFlagSet type
+ GstFlagSet is a new type designed for negotiating sets
+ of boolean capabilities flags, consisting of a 32-bit
+ flags bitfield and 32-bit mask field. The mask field
+ indicates which of the flags bits an element needs to have
+ as specific values, and which it doesn't care about.
+ This allows efficient negotiation of arrays of boolean
+ capabilities.
+ The standard serialisation format is FLAGS:MASK, with
+ flags and mask fields expressed in hexadecimal, however
+ GstFlagSet has a gst_register_flagset() function, which
+ associates a new GstFlagSet derived type with an existing
+ GFlags gtype. When serializing a GstFlagSet with an
+ associated set of GFlags, it also serializes a human-readable
+ form of the flags for easier debugging.
+ It is possible to parse a GFlags style serialisation of a
+ flagset, without the hex portion on the front. ie,
+ +flag1/flag2/flag3+flag4, to indicate that
+ flag1 & flag4 must be set, and flag2/flag3 must be unset,
+ and any other flags are don't-care.
+ https://bugzilla.gnome.org/show_bug.cgi?id=746373
+
+2015-05-20 20:19:29 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ * gst/gstvalue.c:
+ gstvalue: Add a comparision function for GstStructures
+
+2015-05-19 14:34:04 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ * libs/gst/net/gstnettimeprovider.c:
+ net: keep GCancellable fd around instead of re-creating it constantly
+ Just create the cancellable fd once and keep it around instead
+ of creating/closing it for every single packet. Since we spend
+ most time waiting for packets, an fd is alloced and in use pretty
+ much all the time anyway.
+
+2015-05-18 12:52:00 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstfdsrc.c:
+ Revert "doc: Workaround gtkdoc issue"
+ This reverts commit 460a7bf68292d057c77e84d1ea86b8e73fc081f3.
+ This should be fixed by the gtk-doc 1.23 release.
+ <para> cannot contain <refsect2>:
+ http://www.docbook.org/tdg/en/html/para.html
+ http://www.docbook.org/tdg/en/html/refsect2.html
+
+2015-05-11 10:52:23 +0200 Wim Taymans <wtaymans@redhat.com>
+
+ * plugins/elements/gstsparsefile.c:
+ sparsefile: small cleanup
+ The error path unrefs file->file so make sure we only go there when
+ there is a non-NULL file->file.
+
+2015-05-16 23:29:03 -0400 Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
+
+ * plugins/elements/gstfdsrc.c:
+ doc: Workaround gtkdoc issue
+ With gtkdoc 1.22, the XML generator fails when a itemizedlist is
+ followed by a refsect2. Workaround the issue by wrapping the refsect2
+ into para.
+
+2015-05-13 13:28:05 -0300 Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
+
+ * docs/design/part-negotiation.txt:
+ docs/design/part-negotiation.txt: minor corrections
+
+2015-05-16 12:57:12 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ * libs/gst/controller/gsttimedvaluecontrolsource.c:
+ timedvaluecontrolsource: Check that the only iter is the end iter in the GSequence
+ Previous patch was assuming that if the returned iter was the last iter
+ the GSequence was empty, which is obviously wrong.
+
+2015-05-16 11:17:40 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ * libs/gst/controller/gsttimedvaluecontrolsource.c:
+ timedvaluecontrolsource: Fix removing all keyframes, and adding one back
+ We were segfaulting because g_sequence_search was returning the iter_end,
+ and that iterator does not contain anything and thus should not be used
+ directly
+
+2015-05-15 20:44:08 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstfakesrc.c:
+ fakesrc: fix property description
+ We're enterprise now folks.
+
+2015-05-15 14:57:14 +0100 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * gst/gstpad.c:
+ pad: bump chain function call logs from LOG to DEBUG
+ They're really useful compared to other LOG stuff in there, so
+ there is value is including them and not the rest.
+
+2015-05-15 13:43:12 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * docs/gst/gstreamer-sections.txt:
+ * gst/gstobject.c:
+ * gst/gstobject.h:
+ * tests/check/gst/gstobject.c:
+ * win32/common/libgstreamer.def:
+ gstobject: add gst_object_has_as_ancestor and deprecate previous function
+ The old gst_object_has_ancestor will call the new code. This establishes the
+ symetry with the new gst_object_has_as_parent.
+ API: gst_object_has_as_ancestor()
+
+2015-05-15 08:05:50 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * docs/gst/gstreamer-sections.txt:
+ * gst/gstobject.c:
+ * gst/gstobject.h:
+ * tests/check/gst/gstobject.c:
+ * win32/common/libgstreamer.def:
+ gstobject: rename gst_object_has_parent to gst_object_has_as_parent
+ This avoid confusion with a potential punction that check if a gstobject has-a
+ parent.
+ API: gst_object_has_as_parent()
+
+2015-05-14 15:49:43 +0800 Jian <Jian.Li@freescale.com>
+
+ * libs/gst/base/gstbasesink.c:
+ basesink: Fix QoS/lateness checking if subclass implements prepare/prepare_list vfuncs
+ In basesink functions gst_base_sink_chain_unlocked(), below code is used to
+ checking if buffer is late before doing prepare call to save some effort:
+ if (syncable && do_sync)
+ late =
+ gst_base_sink_is_too_late (basesink, obj, rstart, rstop,
+ GST_CLOCK_EARLY, 0, FALSE);
+ if (G_UNLIKELY (late))
+ goto dropped;
+ But this code has problem, it should calculate jitter based on current media
+ clock, rather than just passing 0. I found it will drop all the frames when
+ rewind in slow speed, such as -2X.
+ https://bugzilla.gnome.org/show_bug.cgi?id=749258
+
+2015-05-11 17:14:50 +0200 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
+
+ * plugins/elements/gstfdsrc.c:
+ fdsrc: docs: fix and update documentation
+ Update example to use gst-launch-1.0 and fix a paragraph.
+ https://bugzilla.gnome.org/show_bug.cgi?id=749233
+
+2015-05-09 11:53:49 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * Makefile.am:
+ Add removed example directories to CRUFT_DIRS
+
+2015-05-08 14:08:42 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstparse.c:
+ * plugins/elements/gstcapsfilter.c:
+ * plugins/elements/gstfakesink.c:
+ * plugins/elements/gstfakesrc.c:
+ * plugins/elements/gstfilesink.c:
+ * plugins/elements/gstfilesrc.c:
+ * plugins/elements/gsttee.c:
+ docs: gst-launch -> gst-launch-1.0 in example pipelines
+ And some small example pipeline fix-ups.
+
+2015-05-09 22:10:30 -0300 Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
+
+ * docs/design/part-conventions.txt:
+ docs/design/part-conventions.txt: minor corrections
+
+2015-05-09 22:04:52 -0300 Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
+
+ * docs/design/part-context.txt:
+ docs/design/part-context.txt: minor corrections
+
+2015-05-09 22:01:04 -0300 Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
+
+ * docs/design/part-clocks.txt:
+ docs/design/part-clocks.txt: minor corrections
+
+2015-05-02 17:16:38 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * docs/manual/appendix-porting.xml:
+ * docs/random/porting-to-1.0.txt:
+ docs: update porting guides to mention new device probing API
+
+2015-05-01 20:37:18 -0300 Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
+
+ * docs/design/part-states.txt:
+ docs/design/part-states.txt: minor corrections
+
+2015-05-01 18:32:26 +0900 Jimmy Ohn <yongjin.ohn@lge.com>
+
+ * gst/gstevent.h:
+ event: remove duplicated include
+ https://bugzilla.gnome.org/show_bug.cgi?id=748739
+
+2015-04-28 19:59:31 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * configure.ac:
+ * tests/examples/Makefile.am:
+ * tests/examples/launch/.gitignore:
+ * tests/examples/launch/Makefile.am:
+ * tests/examples/launch/mp3parselaunch.c:
+ * tests/examples/metadata/.gitignore:
+ * tests/examples/metadata/Makefile.am:
+ * tests/examples/metadata/read-metadata.c:
+ * tests/examples/queue/.gitignore:
+ * tests/examples/queue/Makefile.am:
+ * tests/examples/queue/queue.c:
+ * tests/examples/typefind/.gitignore:
+ * tests/examples/typefind/Makefile.am:
+ * tests/examples/typefind/typefind.c:
+ tests: remove some pointless ancient code examples
+
+2015-04-28 17:54:51 +0300 Ilya Konstantinov <ilya.konstantinov@gmail.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: fix GST_BASE_PARSE_FLAG_LOST_SYNC
+ Since frame->priv->discont was cleared earlier,
+ GST_BASE_PARSE_FLAG_LOST_SYNC was never being set.
+ Take the chance to refactor the frame creation a bit to
+ organize the flags setting and reset.
+ https://bugzilla.gnome.org/show_bug.cgi?id=738237
+
+2015-03-09 19:31:36 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: respect DISCONT flag on buffers
+ Drain the parser when a DISCONT buffer is received and then mark
+ the next buffer to be pushed as a DISCONT one
+ https://bugzilla.gnome.org/show_bug.cgi?id=745927
+
+2015-04-28 15:50:46 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gsttaglist.c:
+ taglist: Copy the tag scope too when copying tag lists
+
+2015-04-20 20:02:51 -0400 Olivier Crête <olivier.crete@collabora.com>
+
+ * plugins/elements/gstidentity.c:
+ identity: Also synchronize GAP events in sync=1
+ https://bugzilla.gnome.org/show_bug.cgi?id=601853
+
+2015-04-20 19:31:37 -0400 Olivier Crête <olivier.crete@collabora.com>
+
+ * plugins/elements/gstidentity.c:
+ * plugins/elements/gstidentity.h:
+ identity: With sync=true, don't pre-roll
+ To act like a real live element, block the streaming when paused, and
+ return NO_PREROLL.
+ https://bugzilla.gnome.org/show_bug.cgi?id=601853
+
+2015-04-20 19:24:45 -0400 Olivier Crête <olivier.crete@collabora.com>
+
+ * plugins/elements/gstidentity.c:
+ * plugins/elements/gstidentity.h:
+ identity: Take upstream latency into account for sync=1
+ https://bugzilla.gnome.org/show_bug.cgi?id=601853
+
+2015-04-20 19:07:27 -0400 Olivier Crête <olivier.crete@collabora.com>
+
+ * plugins/elements/gstidentity.c:
+ identity: Handle PTS and DTS separately
+ https://bugzilla.gnome.org/show_bug.cgi?id=601853
+
+2015-04-26 17:05:48 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * .gitignore:
+ * Android.mk:
+ * gst/Makefile.am:
+ * gst/parse/Makefile.am:
+ * libs/Makefile.am:
+ * libs/gst/Makefile.am:
+ * libs/gst/base/Makefile.am:
+ * libs/gst/controller/Makefile.am:
+ * libs/gst/helpers/Makefile.am:
+ * libs/gst/net/Makefile.am:
+ * plugins/Makefile.am:
+ * plugins/elements/Makefile.am:
+ * tests/examples/controller/Makefile.am:
+ * tools/Makefile.am:
+ Remove obsolete Android build cruft
+ This is not needed any longer.
+
+2015-04-24 16:51:24 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * plugins/elements/gstinputselector.c:
+ * plugins/elements/gstinputselector.h:
+ inputselector: Only try to push the first EOS received
+ Subsequent EOS will push on the source pad that already received
+ EOS and that will make the event function return FALSE. It needs
+ only to push the first one and only return TRUE for the subsequent
+ ones.
+
+2015-04-24 15:19:26 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/gst/gstprintf.c:
+ tests: printf: add unit test for %%
+ https://bugzilla.gnome.org/show_bug.cgi?id=748414
+
+2015-04-24 15:16:24 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/printf/vasnprintf.c:
+ printf: fix invalid memory access in case of %%
+ https://bugzilla.gnome.org/show_bug.cgi?id=748414
+
+2015-04-23 15:55:44 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/Makefile.am:
+ tests: define GST_CHECK_TEST_ENVIRONMENT_BEACON
+
+2015-04-23 15:54:08 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/check/gstcheck.h:
+ check: optionally check env var for us to make sure test env is set up
+ If GST_CHECK_TEST_ENVIRONMENT_BEACON is defined, check if the
+ environment variable it is defined to is set up at the start
+ of each test.
+ https://bugzilla.gnome.org//show_bug.cgi?id=747624
+
+2015-04-23 09:06:42 +0900 Changbok Chea <changbok.chea@gmail.com>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: Remove unused assignment in perform_seek()
+ https://bugzilla.gnome.org/show_bug.cgi?id=748345
+
+2015-04-22 11:44:00 +0530 Prashant Gotarne <ps.gotarne@samsung.com>
+
+ * tests/check/gst/gstmemory.c:
+ test: memory: Added test to verify the allocation params
+ New test added to verify the allocation params for the memory
+ https://bugzilla.gnome.org/show_bug.cgi?id=748277
+
+2015-04-22 11:04:06 -0600 Jason Litzinger <jlitzinger@control4.com>
+
+ * tests/check/gst/gstinfo.c:
+ tests: info: add test case to reproduce infinite loop
+ gst_debug_unset_threshold_for_name() used to go into an
+ infinite loop when there was more than one category in
+ the list. This test captures the problem by failing
+ via timeout.
+ https://bugzilla.gnome.org/show_bug.cgi?id=748321
+
+2015-04-22 12:03:33 -0600 Jason Litzinger <jlitzinger@control4.com>
+
+ * gst/gstinfo.c:
+ gstinfo: fix infinite loop in gst_debug_unset_threshold_for_name()
+ Ensure iterator is advanced. The current list iteration code only
+ advances the iterator (walk) if a match is found, which results
+ in an infinite loop when more than one entry exists in the list.
+ https://bugzilla.gnome.org/show_bug.cgi?id=748321
+
+2015-04-22 10:14:53 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * scripts/create-uninstalled-setup.sh:
+ scripts: create-uninstalled-setup: miscellaneous fixes
+ Error out if required build tools (flex, bison, pkg-config)
+ are not present, instead of printing a message and then
+ continuing.
+ Check out submodules when fetching the repositories, so
+ they're already there and ready later.
+ Remove some 0.10 cruft.
+
+2015-04-22 09:59:24 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * .gitignore:
+ Add INSTALL to .gitignore
+
+2015-04-22 09:56:55 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/generic/states.c:
+ tests: error out if test environment is not actually set up properly
+ https://bugzilla.gnome.org//show_bug.cgi?id=747624
+
+2015-04-22 09:52:58 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * configure.ac:
+ configure: can use AM_SILENT_RULES unconditionally now
+ https://autotools.io/automake/silent.html
+
+2015-04-22 09:47:39 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * configure.ac:
+ configure: bump automake requirement to 1.14 and autoconf to 2.69
+ This is only required for builds from git, people can still
+ build tarballs if they only have older autotools.
+ https://bugzilla.gnome.org//show_bug.cgi?id=747624
+
+2015-04-22 10:32:57 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * INSTALL:
+ Remove INSTALL file
+ autotools automatically generate this, and when using different versions
+ for autogen.sh there will always be changes to a file tracked by git.
+
+2015-04-20 22:07:34 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ * scripts/gst-uninstalled:
+ gstreamer-uninstalled: Update path to the GstValidate scenarios
+
+2015-04-20 09:23:43 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstbuffer.c:
+ buffer: Check return value of meta transform function in gst_buffer_copy_into()
+ ... by printing some debug output whenever copying a GstMeta fails.
+ https://bugzilla.gnome.org/show_bug.cgi?id=748119
+
+2015-04-18 12:31:02 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstevent.h:
+ event: fix header formatting
+
+2015-04-18 12:28:15 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/gst/gstprotection.c:
+ tests: protection: fix leak in unit test
+
+2015-04-18 12:27:46 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gst.h:
+ gst.h: include the new gstprotection.h header
+ https://bugzilla.gnome.org/show_bug.cgi?id=705991
+
+2015-04-15 15:33:31 +0100 Alex Ashley <bugzilla@ashley-family.net>
+
+ * docs/gst/gstreamer-docs.sgml:
+ * docs/gst/gstreamer-sections.txt:
+ * gst/Makefile.am:
+ * gst/gst_private.h:
+ * gst/gstinfo.c:
+ * gst/gstprotection.c:
+ * gst/gstprotection.h:
+ * tests/check/Makefile.am:
+ * tests/check/gst/.gitignore:
+ * tests/check/gst/gstprotection.c:
+ * win32/common/libgstreamer.def:
+ protection: add GstProtectionMeta to support protected content
+ In order to support some types of protected streams (such as those
+ protected using DASH Common Encryption) some per-buffer information
+ needs to be passed between elements.
+ This commit adds a GstMeta type called GstProtectionMeta that allows
+ protection specific information to be added to a GstBuffer. An example
+ of its usage is qtdemux providing information to each output sample
+ that enables a downstream element to decrypt it.
+ This commit adds a utility function to select a supported protection
+ system from the installed Decryption elements found in the registry.
+ The gst_protection_select_system function that takes an array of
+ identifiers and searches the registry for a element of klass Decryptor that
+ supports one or more of the supplied identifiers. If multiple elements
+ are found, the one with the highest rank is selected.
+ This commit adds a unit test for the gst_protection_select_system
+ function that adds a fake Decryptor element to the registry and then
+ checks that it can correctly be selected by the utility function.
+ This commit adds a unit test for GstProtectionMeta that creates
+ GstProtectionMeta and adds & removes it from a buffer and performs some
+ simple reference count checks.
+ API: gst_buffer_add_protection_meta()
+ API: gst_buffer_get_protection_meta()
+ API: gst_protection_select_system()
+ API: gst_protection_meta_api_get_type()
+ API: gst_protection_meta_get_info()
+ https://bugzilla.gnome.org/show_bug.cgi?id=705991
+
+2015-03-16 12:35:27 +0000 Alex Ashley <bugzilla@ashley-family.net>
+
+ * gst/gstevent.c:
+ * gst/gstevent.h:
+ * tests/check/gst/gstevent.c:
+ * win32/common/libgstreamer.def:
+ event: add new GST_EVENT_PROTECTION
+ In order for a decrypter element to decrypt media protected using a
+ specific protection system, it first needs all the protection system
+ specific information necessary (E.g. information on how to acquire
+ the decryption keys) for that stream.
+ The GST_EVENT_PROTECTION defined in this commit enables this information
+ to be passed from elements that extract it (e.g. qtdemux, dashdemux) to
+ elements that use it (E.g. a decrypter element).
+ API: GST_EVENT_PROTECTION
+ API: gst_event_new_protection()
+ API: gst_event_parse_protection()
+ https://bugzilla.gnome.org/show_bug.cgi?id=705991
+
+2015-04-18 11:42:21 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gsttee.c:
+ tee: fix use of possibly-freed pad in debug statement
+ The gst_object_unref() in the block above may be dropping
+ the last ref to the pad and free the pad. Set pad pointer
+ to NULL here, so that we don't accidentally use a
+ possibly-freed pad pointer in the debug log statements
+ further below, and also use the tee element as log object
+ since that's more appropriate anyway.
+ Fixes valgrind warnings and crashes in tee test_stress
+ unit test when debug logging is enabled.
+
+2015-04-18 12:00:13 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/gst/gstinfo.c:
+ tests: info: fix unit test when run with GST_DEBUG=*:9
+ Only save the messages we're interested in and expecting.
+ When run with *:9 we might get additional TRACE level
+ messages from other categories and then we don't end up
+ with the number of messages we expect.
+
+2015-04-18 11:25:16 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/gst/gstpad.c:
+ tests: pad: fix buffer leak in new blocking_with_probe_type_idle test
+
+2015-04-18 11:11:26 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/gst/gstpad.c:
+ tests: pad: fix invalid memory access in debug log message
+ The string we put in the buffer is not NUL-terminated, so
+ don't try to print that via %s in a debug log message.
+
+2015-04-17 15:19:07 +0200 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * libs/gst/helpers/Makefile.am:
+ helpers: on OSX, MKDIR_P is install-sh -c -d
+ So we need to call it before cding to the bin directory.
+
+2015-04-17 13:02:12 +0200 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * libs/gst/helpers/Makefile.am:
+ helpers: install -D isn't portable, use $(MKDIR_P) instead.
+
+2015-04-14 10:47:20 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * tests/check/gst/gstpad.c:
+ tests: pad: test that idle probe will block
+ This tests add an idle probe on an idle pad from a separate thread
+ so that the callback is called immediatelly. This callback will sit
+ still and then we try to push a buffer on this same pad. It verifies
+ that the idle probe blocks data passing
+ https://bugzilla.gnome.org/show_bug.cgi?id=747852
+
+2015-04-14 17:06:36 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * gst/gstpad.c:
+ pad: block data flow when idle probe is running
+ When idle probe runs directly from the gst_pad_add_probe() function
+ we need to make sure that no data flow happens as idle probe
+ is a blocking probe. The idle probe will prevent that any
+ buffer, bufferlist or serialized events and queries are not
+ flowing while it is running.
+ https://bugzilla.gnome.org/show_bug.cgi?id=747852
+
+2015-04-16 13:41:20 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gsturi.c:
+ docs: clarify that return value of gst_filename_to_uri() must be freed
+ https://bugzilla.gnome.org/show_bug.cgi?id=747104
+
+2015-04-15 11:02:54 +0100 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * gst/gstbin.c:
+ * tests/check/generic/states.c:
+ bin: undo upward state changes on children when a child fails
+ When a bin changes states upwards, and a child fails to change,
+ any child that was already switched will not be reset to its
+ original state, leaving its state inconsistent with the bin,
+ which does not change state due to the failure.
+ If the state change was from NULL to READY, it means that deleting
+ this bin will cause those children to be deleted while not in
+ NULL state, which is a Bad Thing. For other upward changes, it
+ is less of a problem, as a subsequent switch back to NULL will
+ cause an actual downwards change on those inconsistent elements,
+ albeit from the "wrong" state.
+ We now reset state to the original one when a child fails.
+ Includes unit test.
+ https://bugzilla.gnome.org/show_bug.cgi?id=747610
+
+2015-04-15 14:45:21 +0200 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * libs/gst/helpers/Makefile.am:
+ helpers: use $(INSTALL) to ... install the helper.
+ As it will create the folders and set permissions appropriately,
+ better than doing it manually.
+
+2015-04-15 13:02:36 +0200 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * libs/gst/helpers/Makefile.am:
+ helpers: Fix Makefile.am to install the completion-helper correctly.
+ + The program is installed at install-exec time, we thus need
+ to move it in install-exec-hook, not install-data-hook.
+
+2015-04-15 11:38:35 +0100 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * libs/gst/base/gstbasesrc.c:
+ Revert "basesrc: fix pool leak on allocation query error path"
+ This reverts commit 84fdf50b2f98951a32fa14802b62621f1105cd35.
+ It seems the bug was fixed independently, and the merge was
+ automagic, yielding two extra free calls.
+
+2015-04-14 13:42:55 +0900 Suhwang Kim <suhwang.kim@lge.com>
+
+ * tests/check/gst/gstclock.c:
+ tests: clock: fix test clock name
+ Don't call the slave test clock "Master".
+ https://bugzilla.gnome.org/show_bug.cgi?id=746430
+
+2015-04-14 17:47:08 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstelementfactory.c:
+ * gst/gstelementfactory.h:
+ elementfactory: add ENCRYPTOR class defines
+ to go with DECRYPTOR.
+
+2015-03-16 13:11:59 +0000 Alex Ashley <bugzilla@ashley-family.net>
+
+ * gst/gstelementfactory.c:
+ * gst/gstelementfactory.h:
+ elementfactory: add DECRYPTOR class defines
+ An element that performs decryption does not naturally fit within any
+ of the existing element factory class types. It is useful to be able
+ to easily get a list of all elements that support decryption so that
+ a union can be computed between the protection systems that have a
+ supported decryptor and the allowed protection systems for a particular
+ stream.
+ This commit adds a new GST_ELEMENT_FACTORY_TYPE_DECRYPTOR and its
+ associated string identifier "Decryptor". It also adds
+ GST_ELEMENT_FACTORY_TYPE_DECRYPTOR to GST_ELEMENT_FACTORY_TYPE_DECODABLE
+ so that uridecodebin can auto-plug a decryption element.
+ https://bugzilla.gnome.org/show_bug.cgi?id=705991
+
+2015-04-13 17:01:41 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ typefindelement: Use gst_event_unref() instead of gst_mini_object_unref() + casting
+
+2015-04-13 14:40:22 +0200 Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+
+ * plugins/elements/gsttypefindelement.c:
+ typefind: fix leak in gst_type_find_element_src_event()
+ gst_type_find_element_src_event() is supposed to consume @event but wasn't
+ doing so when it was handling the event itself.
+ https://bugzilla.gnome.org/show_bug.cgi?id=747775
+ Signed-off-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+
+2015-04-11 20:44:02 +0900 Hyunjun Ko <zzoon.ko@samsung.com>
+
+ * gst/gstvalue.c:
+ gstvalue: reset errno before g_ascii_strtoull call
+ "errno" already has meaningless value before g_ascii_strtoull call.
+ This causes invalid error check without reset.
+ https://bugzilla.gnome.org/show_bug.cgi?id=747690
+
+2015-04-12 13:13:32 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: Only set DTS to segment.start on the first buffer if subclass did not provide PTS
+ Otherwise we're going to set a rather arbitrary DTS of segment.start (usually
+ 0) for live sources, which confuses synchronization if the source started
+ capturing at a later time. And it's especially wrong for raw media, for which
+ we should not set any DTS at all.
+ https://bugzilla.gnome.org/show_bug.cgi?id=747731
+
+2014-09-02 17:40:28 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ typefind: Run the default have-type handler after all application handlers
+ Otherwise the CAPS event will already be forwarded downstream and
+ the application has no way to intervene anymore.
+ https://bugzilla.gnome.org/show_bug.cgi?id=735896
+
+2015-03-10 12:57:44 +1000 Duncan Palmer <dpalmer@digisoft.tv>
+
+ * plugins/elements/gstmultiqueue.c:
+ multiqueue: Don't automatically enter the buffering state when use-buffering is set.
+ There is no reason I can see to set mq->buffering = TRUE when
+ use_buffering is set; the code here also calls update_buffering(), which
+ will set mq->buffering = TRUE if this is warranted because of low buffer
+ levels.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745937
+
+2015-04-10 12:32:27 +0200 Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+
+ * plugins/elements/gstinputselector.c:
+ inputselector: fix cached buffer leak in chain function
+ gst_selector_pad_chain() was popping cached buffers out of the queue without
+ freeing those. Make sure we don't steal the GstBuffer as the cached buffer ref
+ has been passed to the pad chain function.
+ This can be reproduced by running the
+ validate.file.playback.switch_subtitle_track_while_paused.test5_mkv scenario
+ with Valgrind.
+ https://bugzilla.gnome.org/show_bug.cgi?id=747611
+ Signed-off-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+
+2015-04-08 16:04:11 +0200 Edward Hervey <edward@centricular.com>
+
+ * common:
+ * tests/check/Makefile.am:
+ * tests/examples/manual/Makefile.am:
+ tests: Use AM_TESTS_ENVIRONMENT
+ Needed by the new automake test runner
+
+2015-04-07 15:00:46 +0530 Prashant Gotarne <ps.gotarne@samsung.com>
+
+ * gst/gstbufferlist.c:
+ bufferlist: make sure list is writable before adding or removing buffers
+ https://bugzilla.gnome.org/show_bug.cgi?id=747439
+
+2015-04-07 14:34:58 +0530 Prashant Gotarne <ps.gotarne@samsung.com>
+
+ * gst/gstbufferlist.c:
+ bufferlist: minor docs addition for gst_buffer_list_get()
+ Return buffer remains valid as long as list is valid
+ and buffer is not removed from list.
+ https://bugzilla.gnome.org/show_bug.cgi?id=747438
+
+2015-04-07 11:38:31 +0100 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: fix pool leak on allocation query error path
+ It could be triggered by:
+ gst-launch-1.0 videotestsrc num-buffers=20 ! videcrop bottom=214748364 ! videoconvert ! autovideosink
+ Spotted while testing:
+ https://bugzilla.gnome.org/show_bug.cgi?id=743910
+
+2015-04-06 18:45:37 -0700 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: Forward SEGMENT_DONE events immediately
+ There might be no more data coming afterwards, and we just drained everything
+ that was left to be pushed anyway.
+
+2015-04-06 18:56:25 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstinfo.c:
+ docs: fix cross-reference to environment variables in GstInfo
+ https://bugzilla.gnome.org/show_bug.cgi?id=747416
+
+2015-04-06 10:18:15 +0530 Prashant Gotarne <ps.gotarne@samsung.com>
+
+ * gst/gstmemory.c:
+ memory: add check for writablity in resize
+ Add guard to gst_memory_resize() to make sure the
+ memory to be resized is actually writable.
+ https://bugzilla.gnome.org/show_bug.cgi?id=747392
+
+2015-04-05 16:47:26 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/elements/multiqueue.c:
+ tests: multiqueue: add test to make sure initial events go through without buffers
+
+2015-04-05 16:06:44 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/elements/queue.c:
+ tests: queue: check that the initial events are sent on immediately
+ Add a check that makes sure stream-start, caps, and segment events
+ are passed on by queue without delay, i.e. even if no buffer is
+ sent.
+
+2015-04-04 18:33:18 -0700 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstpad.c:
+ pad: Print debug output from gst_pad_link_full() if preparing linking failed
+ Makes it easier to find linking failures in debug logs.
+
+2015-04-04 19:29:51 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstsegment.h:
+ segment: small docs addition
+ https://bugzilla.gnome.org/show_bug.cgi?id=690564
+
+2015-04-04 18:18:03 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * docs/design/part-streams.txt:
+ * docs/design/part-synchronisation.txt:
+ docs: design: fix some 0.10-isms in GstSegment docs
+ 1) segment.accum -> segment.base
+ 2) Refer to GstSegment members as S.foo instead of
+ NS.foo, the event is now called a segment event
+ rather than newsegment event.
+ 3) There's no more abs_rate field in GstSegment,
+ and there never was an abs_applied_rate field.
+ https://bugzilla.gnome.org/show_bug.cgi?id=690564
+
+2015-04-04 04:14:50 +0300 Ilya Konstantinov <ilya.konstantinov@gmail.com>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: do not leak buffer pool in error case
+ https://bugzilla.gnome.org/show_bug.cgi?id=747321
+
+2015-04-03 19:12:48 -0400 Nicolas Dufresne <nicolas.dufresne@collabora.com>
+
+ * gst/gsturi.c:
+ uri: Silence a compiler warning
+ This is a false positive for use initialized. The variable is set and
+ used enclosed in the safe if condition.
+
+2015-04-03 16:32:16 -0400 Nicolas Dufresne <nicolas.dufresne@collabora.com>
+
+ * docs/gst/gstreamer-sections.txt:
+ doc: Add gst_segment_to_running_time_full
+
+2015-04-03 13:19:13 -0700 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: Fix documentation, buffer pools are unreffed and not freed
+
+2015-04-03 20:43:15 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * INSTALL:
+ Update INSTALL to the automake 1.14 version
+
+2015-04-03 18:57:36 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * autogen.sh:
+ * common:
+ Automatic update of common submodule
+ From bc76a8b to c8fb372
+
+2015-04-03 16:27:10 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * win32/common/libgstreamer.def:
+ win32: fix exports
+
+2015-03-19 10:45:56 +0000 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * docs/gst/gstreamer-sections.txt:
+ * gst/gstsegment.c:
+ * gst/gstsegment.h:
+ * win32/common/libgstreamer.def:
+ segment: add gst_segment_is_equal
+ It beats memcmp due to the 'reserved' fields.
+ API: gst_segment_is_equal()
+ Found via, but probably not directly linked to,
+ https://bugzilla.gnome.org/show_bug.cgi?id=738216
+
+2015-04-03 00:36:42 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * win32/common/libgstbase.def:
+ * win32/common/libgstreamer.def:
+ win32: add new API to exports
+
+2014-08-06 10:32:39 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstpad.c:
+ * tests/check/gst/gstpad.c:
+ pad: allow probes to remove the data item whilst returning PROBE_OK
+ Use case: we want to block the source pad of a leaky queue and
+ drop the buffer that causes the block. If we return PROBE_DROP
+ then the buffer gets dropped, but we get called again. If we
+ return PROBE_OK we can't easily drop the buffer. If we just
+ replace the item into the GstPadProbeInfo structure with NULL,
+ GStreamer will push a NULL buffer to the next element when we
+ unblock the pad probe. This patch ensures it doesn't do that.
+ https://bugzilla.gnome.org/show_bug.cgi?id=734342
+
+2015-02-12 19:39:44 -0500 Olivier Crête <olivier.crete@collabora.com>
+
+ * gst/gstelement.c:
+ element: Document when a clock is available from gst_element_get_clock()
+ https://bugzilla.gnome.org/show_bug.cgi?id=744442
+
+2015-02-12 19:40:06 -0500 Olivier Crête <olivier.crete@collabora.com>
+
+ * docs/gst/gstreamer-sections.txt:
+ * gst/gstpipeline.c:
+ * gst/gstpipeline.h:
+ pipeline: Add binding friendly gst_pipeline_get_pipeline_clock()
+ Also skip gst_pipeline_get_clock() and gst_pipeline_set_clock() from the
+ bindings as they are confused with gst_element_*_clock().
+ API: gst_pipeline_get_pipeline_clock()
+ https://bugzilla.gnome.org/show_bug.cgi?id=744442
+
+2015-04-02 17:32:42 -0400 Nicolas Dufresne <nicolas.dufresne@collabora.com>
+
+ * libs/gst/base/gstbasetransform.c:
+ basetransform: Add Since mark for new method
+ https://bugzilla.gnome.org/show_bug.cgi?id=734424
+
+2015-02-20 17:50:48 +0100 Thibault Saunier <tsaunier@gnome.org>
+
+ * docs/libs/gstreamer-libs-sections.txt:
+ * libs/gst/base/gstbasetransform.c:
+ * libs/gst/base/gstbasetransform.h:
+ basetransform: Add a method to let subclasses cleanly update srcpad caps
+ API:
+ gst_base_transform_update_src
+ https://bugzilla.gnome.org/show_bug.cgi?id=734424
+
+2015-04-02 21:18:39 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * docs/pwg/advanced-scheduling.xml:
+ * docs/pwg/advanced-types.xml:
+ docs: pwg: fix missing comma and 0.10-ism in code sample
+ https://bugzilla.gnome.org/show_bug.cgi?id=747267
+ https://bugzilla.gnome.org/show_bug.cgi?id=747266
+
+2015-04-02 19:29:46 +0300 Ilya Konstantinov <ilya.konstantinov@gmail.com>
+
+ * gst/gstmemory.c:
+ memory: improve docs for _copy() and _share()
+
+2015-04-02 11:42:20 +0530 Prashant Gotarne <ps.gotarne@samsung.com>
+
+ * tests/check/elements/filesink.c:
+ test: filesink: add tests for buffers with multiple memory blocks
+ Update test_seeking testcase to verify the render and render_list
+ virtual method handle buffers and buffer list containing multiple
+ memory blocks correctly.
+ https://bugzilla.gnome.org/show_bug.cgi?id=747223
+
+2015-04-02 09:44:33 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ * gst/gstelement.h:
+ element: Add a FIXME for 2.0 about request_new_pad VS request_pad naming
+
+2015-04-02 09:34:00 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ * gst/gstelement.c:
+ element: Fix request_new_pad introspection
+ Marking gst_element_request_pad as the caller of the ->request_new_pad
+ virtual method.
+
+2015-04-01 09:20:24 +0530 Prashant Gotarne <ps.gotarne@samsung.com>
+
+ * tests/check/elements/filesink.c:
+ tests: filesink: add check for render_list virtual method
+ GstFileSink implements the render_list virtual method to render
+ a list of buffers. Update the test_seeking test case to also
+ check the render_list method implementation.
+ https://bugzilla.gnome.org/show_bug.cgi?id=747100
+
+2015-04-01 12:13:17 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gst_private.h:
+ * gst/gstcaps.c:
+ * gst/gstdebugutils.c:
+ debugutils: nicer printing of caps features
+ Only print interesting caps features, don't
+ append (memory:SystemMemory) to all caps,
+ which makes them much more unwieldy and
+ harder to read. Also use internal function
+ to get caps features so that our printing
+ has no side effects on the caps.
+ https://bugzilla.gnome.org/show_bug.cgi?id=746809
+
+2015-03-26 13:05:57 +0100 Lubosz Sarnecki <lubosz.sarnecki@collabora.co.uk>
+
+ * gst/gstdebugutils.c:
+ debugutils: plot caps features
+ https://bugzilla.gnome.org/show_bug.cgi?id=746809
+
+2015-03-31 23:48:22 +0900 Wonchul Lee <chul0812@gmail.com>
+
+ * gst/gstpad.c:
+ pad: Fix a typo in a docstring
+ https://bugzilla.gnome.org/show_bug.cgi?id=747119
+
+2015-03-31 11:15:10 +0200 Edward Hervey <bilboed@bilboed.com>
+
+ * gst/Makefile.am:
+ * libs/gst/base/Makefile.am:
+ * libs/gst/check/Makefile.am:
+ * libs/gst/controller/Makefile.am:
+ * libs/gst/net/Makefile.am:
+ introspection: Don't use g-ir-scanner cache at compile time
+ It pollutes user directories and we don't need to cache it
+ https://bugzilla.gnome.org/show_bug.cgi?id=747095
+
+2015-03-28 14:45:35 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstpad.c:
+ pad: fix outdated debug message
+ Buffer lists don't have groups any more in 1.0
+
+2015-03-27 18:20:37 -0400 Nicolas Dufresne <nicolas.dufresne@collabora.com>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: Flush-stop starts live task in paused
+ The flush-stop event should not restart the task for live sources unless
+ the element is playing. This was breaking seeks in pause with the rtpsrc.
+ https://bugzilla.gnome.org/show_bug.cgi?id=635701
+
+2015-03-27 16:23:40 +0000 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * tests/check/elements/filesink.c:
+ tests: check location isn't truncated
+ Test covering the recent commit where location='".abc' won't get truncated
+ to '.ab' anymore
+ https://bugzilla.gnome.org/show_bug.cgi?id=688625
+
+2015-03-26 17:01:06 +0000 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * gst/gstvalue.c:
+ * tests/check/gst/gstvalue.c:
+ gstvalue: only unwrap string delimited with "
+ Don't unwrap strings that start but don't finish with a double quote. If a
+ string is delimited by two quotes we unescape them and any special characters
+ in the middle (like \" or \\). If the first character or the last character
+ aren't a quote we assume it's part of an unescaped string.
+ Moved some deserialize_string unit tests because we don't try to unwrap strings
+ missing that second quote anymore.
+ https://bugzilla.gnome.org/show_bug.cgi?id=688625
+
+2015-03-27 17:16:03 +0000 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * gst/parse/grammar.y:
+ parse: check before truncating strings
+ Don't truncate the last character of a string if it isn't necessary.
+ https://bugzilla.gnome.org/show_bug.cgi?id=688625
+
+2015-03-27 10:15:16 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstbus.c:
+ bus: Add guards against invalid arguments to set_flushing() and poll()
+ https://bugzilla.gnome.org/show_bug.cgi?id=746871
+
+2015-03-25 10:49:08 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ * tests/check/libs/baseparse.c:
+ baseparse: only post 'no valid frames' error if buffers were received
+ Otherwise baseparse will consider empty streams to be an error while
+ an empty stream is a valid scenario. With this patch, errors would
+ only be emitted if the parser received data but wasn't able to
+ produce any output from it.
+ This change is only for push-mode operation as in pull mode an
+ empty file can be considered an error for the one driving the
+ pipeline
+ Includes a unit test for it
+ https://bugzilla.gnome.org/show_bug.cgi?id=733171
+
+2015-03-19 10:36:11 +0100 Jose Antonio Santos Cadenas <santoscadenas@gmail.com>
+
+ * plugins/elements/gsttee.c:
+ * plugins/elements/gsttee.h:
+ * tests/check/elements/tee.c:
+ tee: Add allow-not-linked property
+ This property avoids not linked error when all the pads are unlinked
+ or when there are no source pads. This is useful in dynamic pipelines
+ where it can happen that for a short time there are no pads at all or
+ all downstream pads are not linked yet.
+ https://bugzilla.gnome.org/show_bug.cgi?id=746436
+
+2015-03-21 17:13:18 -0500 Michael Catanzaro <mcatanzaro@gnome.org>
+
+ * docs/gst/running.xml:
+ docs: Fix typos
+ https://bugzilla.gnome.org/show_bug.cgi?id=746585
+
+2015-03-21 15:46:50 -0500 Michael Catanzaro <mcatanzaro@gnome.org>
+
+ * gst/gstpluginloader.c:
+ pluginloader: Fix typos
+ https://bugzilla.gnome.org/show_bug.cgi?id=746585
+
+2015-03-24 16:04:16 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * plugins/elements/gstoutputselector.c:
+ output-selector: add drain handling
+ Release the latest buffer, if any, and then just let
+ the drain be pushed downstream
+
+2015-03-24 19:32:49 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * Makefile.am:
+ Revert "Fix distcheck"
+ This reverts commit 56dd2d89c4eac460cbc37e2a51c1dd9e792999e8.
+ Installing completions to a custom prefix is now fixed.
+
+2015-03-24 19:30:52 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * libs/gst/helpers/Makefile.am:
+ helpers: remove completion-helper on uninstall
+ + And add it to CLEANFILES
+
+2015-03-18 19:38:15 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * data/completions/gst-inspect-1.0:
+ * data/completions/gst-launch-1.0:
+ * libs/gst/helpers/gst:
+ completions: remove last unnamespaced symbols.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744877
+
+2015-03-18 14:44:21 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * data/completions/gst-inspect-1.0:
+ * data/completions/gst-launch-1.0:
+ completions: remove deprecated shell syntax.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744877#c21
+
+2015-03-18 14:37:11 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * data/completions/gst-inspect-1.0:
+ * data/completions/gst-launch-1.0:
+ completions: prefix shell functions with _gst
+ + To make it more difficult for them to conflict in the
+ global namespace.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744877#c21
+
+2015-03-24 13:13:29 -0400 Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
+
+ * configure.ac:
+ bash-completion: Respect the prefix
+ Don't try and install the bash helpers outside the defined prefix.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744877
+
+2014-11-19 13:08:45 +0100 Jan Alexander Steffens (heftig) <jsteffens@make.tv>
+
+ * plugins/elements/gstinputselector.c:
+ input-selector: Rename _activate_sinkpad to _get_active_sinkpad
+ Removes the now unused 'pad' parameter and renames the function
+ to something more appropriate.
+ https://bugzilla.gnome.org/show_bug.cgi?id=739620
+
+2014-11-19 13:03:21 +0100 Jan Alexander Steffens (heftig) <jsteffens@make.tv>
+
+ * plugins/elements/gstinputselector.c:
+ input-selector: Remove pad's 'active' field
+ This is now never read.
+ https://bugzilla.gnome.org/show_bug.cgi?id=739620
+
+2014-11-19 12:59:12 +0100 Jan Alexander Steffens (heftig) <jsteffens@make.tv>
+
+ * plugins/elements/gstinputselector.c:
+ input-selector: Use segment-presence for running_time check
+ When determining whether the running_time of a pad can be
+ calculated, check if the segment is in TIME format instead
+ of using the 'active' field.
+ Since the latter is set through *any* activity, it's not a
+ reliable indicator of segment presence.
+ https://bugzilla.gnome.org/show_bug.cgi?id=739620
+
+2015-03-23 13:20:34 +0100 Jan Alexander Steffens (heftig) <jsteffens@make.tv>
+
+ * plugins/elements/gstinputselector.c:
+ * plugins/elements/gstinputselector.h:
+ input-selector: Remove 'blocked' flag
+ With the disappearance of the 'block' signal, this
+ flag cannot be set to TRUE.
+ gst_input_selector_wait disappears as it never waits
+ and just returns self->flushing.
+ https://bugzilla.gnome.org/show_bug.cgi?id=736891
+
+2015-03-23 12:12:51 +0100 Jan Alexander Steffens (heftig) <jsteffens@make.tv>
+
+ * plugins/elements/gstinputselector.c:
+ * plugins/elements/gstinputselector.h:
+ input-selector: Remove obsolete 'block' signal
+ This signal blocks the input-selector with no means of unblocking
+ other than a state change back to READY. It seems this signal was
+ part of an old way of synchronously switching the selector,
+ together with the already-removed 'switch' signal.
+ Removing the signal is safe, as attempting to use it could only
+ end in deadlocks. Attempting to emit an unknown signal just causes
+ g_criticals.
+ https://bugzilla.gnome.org/show_bug.cgi?id=736891
+
+2015-03-23 13:05:30 +0100 Jan Alexander Steffens (heftig) <jsteffens@make.tv>
+
+ * plugins/elements/gstinputselector.c:
+ input-selector: Fix waiting on EOS
+ This apparently got broken by bc1ec4e. Since self->blocked is always
+ FALSE, gst_input_selector_wait never actually waits.
+ Using (!self->eos || self->blocked) && ... as the loop condition would
+ be incorrect as well, because then the other call to the function in
+ _chain would block until EOS, so the functions cannot be merged trivially.
+ Since blocking is obsolete, gst_input_selector_wait will get removed anyway.
+ As such, just inline the loop.
+ https://bugzilla.gnome.org/show_bug.cgi?id=746518
+
+2015-03-20 07:23:53 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * tests/check/elements/selector.c:
+ tests: input-selector: new tests for EOS handling
+ 3 new tests:
+ 1) Tests that a stream that is empty (just an EOS event)
+ on inactive pad doesn't get through and tamper
+ with the active pad that still has data
+ 2) Tests that a stream that is shorter than the active one
+ (pushes EOS earlier) doesn't has its EOS pushed
+ 3) Tests that switching to an inactive stream that has received
+ EOS will make input-selector push EOS
+ https://bugzilla.gnome.org/show_bug.cgi?id=746518
+
+2015-03-19 12:11:19 +0000 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * tests/check/elements/selector.c:
+ tests: selector: remove weird semicolons at the end of test functions
+ Even though it works, it is not needed and seems more natural
+ to not have semicolons at the end of function declarations
+ https://bugzilla.gnome.org/show_bug.cgi?id=746518
+
+2014-07-17 16:33:29 +0200 Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
+
+ * plugins/elements/gstqueue2.c:
+ queue2: Process SEEKING query
+ Add QUERY_SEEKING handling to queue2, so RTMP live streams become
+ seekable when a queue2 in download or ringbuffer mode is inserted:
+ rtmpsrc ! queue2 ! flvdemux
+ https://bugzilla.gnome.org/show_bug.cgi?id=733351
+
+2015-03-21 19:37:30 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/check/libcheck/check_run.c:
+ check: Fix uninitialized variable compiler warning with gcc
+ check_run.c: In function 'sig_handler':
+ check_run.c:127:13: warning: 'child_sig' may be used uninitialized in this function [-Wmaybe-uninitialized]
+ killpg(group_pid, child_sig);
+ ^
+ check_run.c:130:31: warning: 'idx' may be used uninitialized in this function [-Wmaybe-uninitialized]
+ sigaction(sig_nr, &old_action[idx], NULL);
+ ^
+
+2015-03-21 15:19:43 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/check/libcheck/check_run.c:
+ check: Catch SIGTERM and SIGINT in the test runner and kill all currently running tests
+ Otherwise e.g. ctrl+c in the test runner exits the test runner, while the test
+ itself is still running in the background, uses CPU and memory and potentially
+ never exits (e.g. if the test ran into a deadlock or infinite loop).
+ The reason why we have to manually kill the actual tests is that after
+ forking they will be moved to their own process group, and as such are
+ not receiving any signals sent to the test runner anymore. This is supposed
+ to be done to make it easier to kill a test, which it only really does if
+ the test itself is forking off new processes.
+ This fix is not complete though. SIGKILL can't be caught at all, and error
+ signals like SIGSEGV, SIGFPE are currently not caught. The latter will only
+ happen if there is a bug in the test runner itself, and as such seem less
+ important.
+
+2015-03-19 13:51:38 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstvalve.c:
+ valve: Don't drop non-serialized queries when the valve is dropping
+ Otherwise we end up dropping e.g. CAPS queries, and then upstream just
+ negotiates to whatever format it wants to. Once the valve is not-dropping
+ anymore this can easily result in negotiation failing completely.
+ https://bugzilla.gnome.org/show_bug.cgi?id=746448
+
+2015-03-20 09:00:47 +0100 Wim Taymans <wtaymans@redhat.com>
+
+ * gst/gst.c:
+ * gst/gstsegment.c:
+ * gst/gstsegment.h:
+ * tests/check/gst/gstsegment.c:
+ * win32/common/libgstreamer.def:
+ segment: remove the bounds check from _to_running_time_full()
+ Do not do any checks for the start/stop in the new
+ gst_segment_to_running_time_full() method, we can let this be done by
+ the more capable gst_segment_clip() method. This allows us to remove the
+ enum of results and only return the sign of the calculated running-time.
+ We need to put the old clipping checks in the old
+ gst_segment_to_running_time() still because they work slightly
+ differently than the _clip methods.
+ See https://bugzilla.gnome.org/show_bug.cgi?id=740575
+
+2015-03-19 17:36:36 +0100 Wim Taymans <wtaymans@redhat.com>
+
+ * gst/gstsegment.c:
+ * gst/gstsegment.h:
+ * tests/check/gst/gstsegment.c:
+ segment: add option to disable clipping
+ Add a clip argument to gst_segment_to_running_time_full() to disable
+ the checks against the segment boundaries. This makes it possible to
+ generate an extrapolated running-time for timestamps outside of the
+ segment.
+ See https://bugzilla.gnome.org/show_bug.cgi?id=740575
+
+2015-03-18 16:27:36 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gst.c:
+ gst: ref/unref new enum type in gst_init/deinit()
+
+2015-03-18 14:16:48 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * tests/misc/test-gstreamer-completion.sh:
+ * tools/gstreamer-completion:
+ tools: remove outdated completion script
+ + Remove the associated test
+ https://bugzilla.gnome.org/show_bug.cgi?id=744877#c21
+
+2015-03-18 11:31:51 +0100 Wim Taymans <wtaymans@redhat.com>
+
+ * gst/gstsegment.c:
+ * gst/gstsegment.h:
+ * tests/check/gst/gstsegment.c:
+ * win32/common/libgstreamer.def:
+ segment: add helper to get negative running-time
+ Add a helper method to get a running-time with a little more features
+ such as detecting if the value was before or after the segment and
+ negative running-time.
+ API: gst_segment_to_running_time_full()
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=740575
+
+2015-03-18 10:53:30 +0100 Wim Taymans <wtaymans@redhat.com>
+
+ * gst/gstsegment.c:
+ * tests/check/gst/gstsegment.c:
+ segment: fix offset handling with non 0 start
+ The position in the segment is relative to the start but the offset
+ isn't, so subtract the start from the position when setting the offset.
+ Add unit test for this as well.
+
+2015-03-18 09:36:35 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstfunnel.c:
+ funnel: Add support for buffer lists
+
+2013-11-29 16:28:41 -0500 Olivier Crête <olivier.crete@collabora.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: remove duplicate code
+ These are already freed by gst_base_parse_clear_queues()
+ https://bugzilla.gnome.org/show_bug.cgi?id=679768
+
+2015-03-17 15:41:38 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstpluginloader.c:
+ pluginloader: Fix indention
+
+2015-03-13 11:08:25 +0000 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: reset skip on segments and discontinuities
+ Large scale skip is an optimization, and thus it is safer to
+ stop skipping than to continue. Clear skip on segments and
+ discontinuities, as these are points where it is possible that
+ the original idea of "bytes to skip" changes.
+
+2015-03-15 14:19:17 +0000 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstmultiqueue.c:
+ multiqueue: Don't grow queue infinitely if only one pad is linked
+ This was introduced by
+ https://bugzilla.gnome.org/show_bug.cgi?id=719893
+ https://bugzilla.gnome.org/show_bug.cgi?id=722891
+ but it doesn't make any sense at all and causes huge memory leaks.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744253
+
+2015-03-14 21:07:01 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/base/gstbasesink.c:
+ basesink: handle empty buffer list more gracefully
+ Don't abort, just ignore it. It's like a buffer
+ without memories.
+
+2015-03-14 17:39:39 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/base/gstadapter.c:
+ adapter: minor optimisation for gst_adapter_take_buffer_list()
+ Try to allocate buffer list with a suitable size from the
+ beginning to avoid having to re-alloc the buffer list array.
+
+2015-03-14 17:23:03 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/libs/adapter.c:
+ tests: add unit test for gst_adapter_take_buffer_list()
+
+2015-03-14 17:20:33 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * docs/libs/gstreamer-libs-sections.txt:
+ * libs/gst/base/gstadapter.c:
+ * libs/gst/base/gstadapter.h:
+ * win32/common/libgstbase.def:
+ adapter: add gst_adapter_take_buffer_list()
+ API: gst_adapter_take_buffer_list()
+
+2015-03-14 16:05:57 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/.gitignore:
+ * tests/check/elements/.gitignore:
+ Add new streamiddemux binaries to .gitignore
+
+2015-03-14 16:00:47 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/base/gstcollectpads.c:
+ collectpads: avoid multiple calls to gst_buffer_get_size() in macro
+
+2015-03-14 15:58:00 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/base/gstadapter.c:
+ adapter: avoid multiple calls to gst_buffer_get_size() in macro
+
+2015-03-13 18:22:01 +0000 Ramiro Polla <ramiro.polla@collabora.co.uk>
+
+ * gst/gstelement.c:
+ element: properly escape percent sign in documentation
+
+2015-03-14 13:37:09 +0000 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstbuffer.c:
+ buffer: Use the correct enum type to fix a compiler warning
+ gstbuffer.c:522:58: error: implicit conversion from enumeration type 'GstBufferFlags' to
+ different enumeration type 'GstBufferCopyFlags' [-Werror,-Wenum-conversion]
+ if (!gst_buffer_copy_into (copy, (GstBuffer *) buffer, flags, 0, -1))
+ ~~~~~~~~~~~~~~~~~~~~ ^~~~~
+ gstbuffer.c:534:46: error: implicit conversion from enumeration type 'GstBufferCopyFlags' to
+ different enumeration type 'GstBufferFlags' [-Werror,-Wenum-conversion]
+ return gst_buffer_copy_with_flags (buffer, GST_BUFFER_COPY_ALL);
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~
+ ./gstbuffer.h:433:31: note: expanded from macro 'GST_BUFFER_COPY_ALL'
+ ...((GstBufferCopyFlags)(GST_BUFFER_COPY_METADATA | GST_BUFFER_COPY_MEMORY))
+ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+2015-03-14 14:06:09 +0100 Wim Taymans <wtaymans@redhat.com>
+
+ * win32/common/libgstnet.def:
+ defs: update defs
+
+2014-10-30 15:39:21 +0000 William Manley <will@williammanley.net>
+
+ * docs/libs/gstreamer-libs-sections.txt:
+ * libs/gst/net/Makefile.am:
+ * libs/gst/net/gstnetcontrolmessagemeta.c:
+ * libs/gst/net/gstnetcontrolmessagemeta.h:
+ meta: Add `GstNetControlMessageMeta`
+ GstNetAddress can be used to store ancillary data which was received with
+ or is to be sent alongside the buffer data. When used with socket sinks
+ and sources which understand this meta it allows sending and receiving
+ ancillary data such as unix credentials (See `GUnixCredentialsMessage`)
+ and Unix file descriptions (See `GUnixFDMessage`).
+ This will be useful for implementing protocols which use file-descriptor
+ passing in payloaders/depayloaders without having to re-implement all the
+ socket handling code already present in elements such as multisocketsink,
+ etc. This, in turn, will be useful for implementing zero-copy video IPC.
+ This meta uses the platform independent `GSocketControlMessage` API
+ provided by GLib as a part of GIO. As a result this new meta does not
+ require any new dependencies or any conditional compliation for
+ portablility, although it is unlikely to do anything useful on non-UNIX
+ platforms.
+
+2015-03-14 11:57:33 +0000 Nicolas Dufresne <nicolas.dufresne@collabora.com>
+
+ * gst/gstquery.c:
+ allocation: Allow allocation pool without size
+ This allow proposing a number of buffers required even if the size
+ of buffer is unfixed. This is often the case for encoded formats.
+
+2015-03-01 13:15:40 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
+
+ * gst/gstbufferpool.c:
+ * tests/check/gst/gstbufferpool.c:
+ bufferpool: Don't stop the pool in set_config()
+ Don't stop the pool in set_config(). Instead, let the controlling
+ element manage it. Most of the time, when an active pool is being
+ configured is because the caps didn't change.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745377
+
+2015-03-13 18:53:11 +0000 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * libs/gst/base/gstbasesink.c:
+ basesink: drain on allocation query
+ Allows buffers to be reclaimed when caps is to be renegotiated so
+ that bufferpools can be stopped. As the allocation query is
+ serialized all buffers have been already drained from the pipeline,
+ except this last_sample one.
+ https://bugzilla.gnome.org/show_bug.cgi?id=682770
+
+2015-03-13 18:35:14 +0000 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * libs/gst/base/gstbasesink.c:
+ basesink: when draining, deep copy the last buffer to unref old memory
+ Use gst_buffer_copy_deep() to force the copy of the underlying
+ memory instead of possibly doing a shallow copy of the buffer
+ and just referencing the memory
+ https://bugzilla.gnome.org/show_bug.cgi?id=745287
+
+2015-03-13 18:35:01 +0000 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * gst/gstbuffer.c:
+ * gst/gstbuffer.h:
+ * tests/check/gst/gstbuffer.c:
+ * win32/common/libgstreamer.def:
+ gstbuffer: add gst_buffer_copy_deep
+ A variant of gst_buffer_copy that forces the underlying memory
+ to be copied.
+ This is added to avoid adding an extra reference to a GstMemory
+ that might belong to a bufferpool that is trying to be drained.
+ The use case is when the buffer copying is done to release the
+ old buffer and all its resources.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745287
+
+2015-03-13 15:31:30 +0000 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstbus.c:
+ bus: Use g_list_free_full() instead of manually unreffing and freeing
+ Also unref the messages, not the GList nodes.
+
+2015-03-13 13:42:46 +0000 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstbus.c:
+ bus: Fix another case where we hold the object lock while unreffing a message
+
+2015-03-13 15:28:42 +0200 Vivia Nikolaidou <vivia@ahiru.eu>
+
+ * gst/gstbus.c:
+ bus: Unreferencing messages outside the lock
+ Shouldn't take the lock while unreferencing messages, because that may cause
+ more messages to be sent, which will try to take the lock and cause the app to
+ hang.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=728777
+
+2015-02-23 20:27:32 +0200 Vivia Nikolaidou <vivia@ahiru.eu>
+
+ * docs/gst/gstreamer-sections.txt:
+ * gst/gstutils.c:
+ * gst/gstutils.h:
+ * win32/common/libgstreamer.def:
+ utils: Add gst_bin_sync_children_states()
+ gst_bin_sync_children_states() will iterate over all the elements of a bin and
+ sync their states with the state of the bin. This is useful when adding many
+ elements to a bin and would otherwise have to call
+ gst_element_sync_state_with_parent() on each and every one of them.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745042
+
+2015-02-03 16:12:32 +0100 Aurélien Zanelli <aurelien.zanelli@parrot.com>
+
+ * gst/printf/vasnprintf.c:
+ printf: handle unsigned modifier for long long
+ Otherwise, an unsigned integer will be displayed as a signed one if we
+ use internal print, ie HAVE_LONG_LONG_FORMAT is not defined.
+ https://bugzilla.gnome.org/show_bug.cgi?id=746096
+
+2015-03-12 14:39:37 +0000 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gststreamiddemux.c:
+ streamiddemux: Reset pad counter after removing all pads
+
+2014-03-04 19:40:05 +0900 HoonHee Lee <hoonhee.lee@lge.com>
+
+ * configure.ac:
+ * plugins/elements/Makefile.am:
+ * plugins/elements/gstelements.c:
+ * plugins/elements/gststreamiddemux.c:
+ * plugins/elements/gststreamiddemux.h:
+ * tests/check/Makefile.am:
+ * tests/check/elements/streamiddemux.c:
+ * tests/examples/Makefile.am:
+ * tests/examples/streamiddemux/Makefile.am:
+ * tests/examples/streamiddemux/streamiddemux-stream.c:
+ streamiddemux: Add streamiddemux element
+ Demultiplex a stream to multiple source pads based on the stream ids from the
+ stream-start events. This basically reverses the behaviour of funnel.
+ https://bugzilla.gnome.org/show_bug.cgi?id=707605
+
+2015-03-12 13:29:35 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * win32/common/config.h:
+ * win32/common/gstenumtypes.c:
+ * win32/common/gstversion.h:
+ win32: update
+
+2015-03-12 13:26:59 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/Makefile.am:
+ * tests/check/gst/.gitignore:
+ * tests/check/gst/gstprintf.c:
+ tests: add some basic unit tests for our printf stuff
+ To test new %I32 support.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744281
+
+2015-02-10 17:40:48 +0100 Matej Knopp <matej.knopp@gmail.com>
+
+ * gst/printf/printf-parse.c:
+ printf: add support for %I32
+ https://bugzilla.gnome.org/show_bug.cgi?id=744281
+
+2015-03-12 13:14:52 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstinfo.c:
+ info: move category level threshold check into log function dispatcher
+ Minor optimisation: check category log level earlier in the
+ log function dispatcher and not only in the default log
+ function.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745213
+
+2015-03-12 12:59:57 +0000 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ typefind: Reset segment when deactivating pull mode or not running in pull mode
+ We use the segment format to detect if we run the streaming thread or not.
+ Without resetting we might believe we do so, although we only did in the past
+ and are now running in e.g. push mode.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745073
+
+2015-03-08 20:42:38 +0100 Michał Dębski <debski.mi.zd@gmail.com>
+
+ * libs/gst/check/libcheck/check_msg.c:
+ * m4/check-checks.m4:
+ check: Use mkstemp instead of tempnam if possible
+ Using tempnam() is deprecated, this gives warning and fails the build
+ with -Werror.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745858
+
+2015-03-11 16:36:29 +0100 Wim Taymans <wtaymans@redhat.com>
+
+ * libs/gst/base/gstbasesink.c:
+ basesink: clean up the need_preroll variable
+ Based on patch from Song Bing <b06498@freescale.com>
+ Don't just set the need_preroll flag to TRUE in all cases. When we
+ are already prerolled it needs to be set to FALSE and when we go to
+ READY we should not touch it. We should only set it to TRUE in other
+ cases, like what the code above does.
+ See https://bugzilla.gnome.org/show_bug.cgi?id=736655
+
+2014-12-05 14:16:52 +0900 hoonhee.lee <hoonhee.lee@lge.com>
+
+ * plugins/elements/gstfunnel.c:
+ * tests/check/elements/funnel.c:
+ funnel: handle GAP event to forwards sticky events into downstream
+ If no data is coming and funnel receive GAP event, need to forwards sticky events
+ into downstream if it needs.
+ https://bugzilla.gnome.org/show_bug.cgi?id=738202
+
+2015-03-10 16:42:44 +0000 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * libs/gst/check/libcheck/check_run.c:
+ check: duplicate code branches
+ CID #1226446
+
+2015-03-10 09:21:22 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstinfo.c:
+ * tests/check/pipelines/queue-error.c:
+ Fix double semicolons
+
+2015-02-22 10:12:01 +0100 Mark Nauwelaerts <mnauw@users.sourceforge.net>
+
+ * win32/common/libgstbase.def:
+ win32: update exports
+
+2015-02-21 20:13:04 +0100 Mark Nauwelaerts <mnauw@users.sourceforge.net>
+
+ * libs/gst/base/gstflowcombiner.c:
+ * libs/gst/base/gstflowcombiner.h:
+ flowcombiner: add a gst_flow_combiner_update_pad_flow() method
+ https://bugzilla.gnome.org/show_bug.cgi?id=744572
+ API: gst_flow_combiner_update_pad_flow()
+
+2015-02-15 20:52:10 +0100 Mark Nauwelaerts <mnauw@users.sourceforge.net>
+
+ * libs/gst/base/gstflowcombiner.c:
+ * libs/gst/base/gstflowcombiner.h:
+ flowcombiner: add a gst_flow_combiner_reset() method
+ https://bugzilla.gnome.org/show_bug.cgi?id=744572
+ API: gst_flow_combiner_reset()
+
+2015-03-06 10:59:58 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: Fix typo in debug message
+
+2015-03-05 18:30:45 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstinfo.c:
+ info: avoid malloc/free if log object is NULL
+
+2015-03-05 17:54:04 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstinfo.c:
+ info: move __FILE__ path shortening into default log handler
+ Instead of always shortening the __FILE__ path, even if the
+ log message is not actually printed, which might happen if
+ the log level is activated but the category is not, only
+ shorten the path if we're actually going to output it and
+ if it looks like it needs shortening. Log handlers had no
+ guarantee that they would get a name instead of a path
+ anyway on any architecture, so it shouldn't be a problem.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745213
+
+2015-02-27 01:16:58 +1100 Peter Urbanec <git.user@urbanec.net>
+
+ * gst/gstinfo.c:
+ info: shorten __FILE__ on all platforms
+ This is useful not only for MSVC, but also with gcc/Linux
+ when doing cross-compilation builds and out-of-tree builds.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745213
+
+2015-03-04 11:02:41 +0000 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * docs/design/part-latency.txt:
+ docs: clarify min-latency wording in part-latency.txt
+ https://bugzilla.gnome.org/show_bug.cgi?id=744338
+
+2015-02-26 14:43:25 +0100 Marcin Kolny <marcin.kolny@flytronic.pl>
+
+ * win32/common/gstconfig.h:
+ win32/common/gstconfig.h: removed libxml include directive
+ This is a leftover from 0.10 and not needed anymore.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=745210
+
+2015-03-03 12:53:13 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstqueue2.c:
+ queue2: Signal the sinkpad thread if a flow error happened
+ It might still be waiting for a query to be handled, or the queue to become
+ empty again for the next item. Also if downstream returns FLUSHING, flush the
+ queue like we do in queue and multiqueue.
+
+2015-03-03 12:48:34 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstqueue.c:
+ queue: Wake up the query function on errors from the loop function
+ Otherwise we might wait forever for serialized queries to be handled as the
+ loop function is stopped and as such we will never ever dequeue the query and
+ handle it.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745319
+
+2015-03-02 20:31:58 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstutils.c:
+ utils: improve warning when linking elements without common ancestor
+ This comes up quite a lot and it's a common mistake, so let's
+ try to improve the warning message a little.
+
+2015-02-27 00:33:27 +0530 Arun Raghavan <git@arunraghavan.net>
+
+ * plugins/elements/gstinputselector.c:
+ input-selector: Drop custom latency query handling
+ The default latency query handler now implements this logic
+
+2015-02-26 15:57:20 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * scripts/gst-uninstalled:
+ gst-unsinstalled: Add ges-launch manuals path to MANPATH.
+
+2015-02-26 13:08:48 +0530 Arun Raghavan <arun@centricular.com>
+
+ * gst/gstpad.c:
+ pad: Don't fail latency query on unlinked pads
+ A single unlinked pad can make the latency query fail across the
+ pipeline, which is probably not desirable. Instead, we return a default
+ anything goes value.
+ Perhaps we should also be emitting a gst_message_new_latency() when a
+ PLAYING element has one of its pads linked.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745197
+
+2014-10-22 16:43:43 +0200 Edward Hervey <bilboed@bilboed.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: Don't emit errors on EOS if we saw GAP events
+ If we saw GAP events (meaning the streams is advancing) before we get
+ EOS, we should not post an ERROR, since it is not fatal.
+ https://bugzilla.gnome.org/show_bug.cgi?id=745143
+
+2015-02-25 08:26:19 +0100 Edward Hervey <bilboed@bilboed.com>
+
+ * gst/gstvalue.h:
+ * tests/check/gst/gstinfo.c:
+ gstvalue: Make sure GST_FOURCC_ARGS produces printable characters
+ Some systems will crash if we use non-printable characters in print/debug
+ statements.
+ Make sure that GST_FOURCC_ARGS never does that
+ https://bugzilla.gnome.org/show_bug.cgi?id=745144
+
+2015-02-25 16:11:06 +0000 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * gst/gstutils.c:
+ gstutils: remove incorrect Fixme comment
+ If the checks were changed to using g_return_if_fail() the GST_DEBUG lines
+ about the specific failure would be lost.
+
+2015-02-25 16:02:39 +0000 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * gst/gstutils.c:
+ gstutils: remove obsolete Fixme comment
+ gst_pad_link_filtered() is very long gone and current
+ gst_element_link_pads_filtered() doesn't apply to this Fixme comment.
+
+2015-02-24 21:58:00 +0100 Matthieu Bouron <matthieu.bouron@collabora.com>
+
+ * scripts/gst-uninstalled:
+ gst-uninstalled: add adaptivedemux paths from -bad
+ https://bugzilla.gnome.org/show_bug.cgi?id=745122
+
+2015-02-24 18:14:47 +0000 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * docs/faq/developing.xml:
+ docs: remove dead link
+ Remove dead link to wiki page for SubmittingPatches
+ https://bugzilla.gnome.org/show_bug.cgi?id=730311
+
+2015-02-24 14:07:54 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * libs/gst/helpers/Makefile.am:
+ helpers: Fix install of completion-helper.
+ By applying the supplied transformation to the program name,
+ for example --program-prefix.
+
+2015-02-23 16:39:43 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.com>
+
+ * libs/gst/helpers/Makefile.am:
+ completion-helper: Add missing DESTDIR
+ Otherwise doing "make install DESTDIR" will try to write to
+ /usr/share/...
+
+2015-02-23 21:17:16 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * libs/gst/helpers/gst-completion-helper.c:
+ completion-helper: Add filtering by klass and sink caps.
+
+2015-02-21 17:13:26 +0100 Mark Nauwelaerts <mnauw@users.sourceforge.net>
+
+ * plugins/elements/gstmultiqueue.c:
+ multiqueue: avoid returning downstream GST_FLOW_EOS from previous segment to current upstream segment
+
+2015-02-22 10:02:25 +0100 Mark Nauwelaerts <mnauw@users.sourceforge.net>
+
+ * libs/gst/base/gstflowcombiner.c:
+ flowcombiner: fix documentation comment typo
+
+2015-02-22 10:01:33 +0100 Mark Nauwelaerts <mnauw@users.sourceforge.net>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: drain segment upon SEGMENT_DONE to ensure proper event order
+
+2015-02-22 10:01:50 +0100 Mark Nauwelaerts <mnauw@users.sourceforge.net>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: clean up some bogus commented code
+
+2015-02-23 19:10:08 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * libs/gst/helpers/Makefile.am:
+ completion-helper: Append $(EXEEXT) to the name of the moved file.
+ Fixes the build on Windows
+ (https://ci.gstreamer.net/job/cerbero-cross-mingw32/1742/console)
+
+2015-02-23 17:23:33 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * Makefile.am:
+ Fix distcheck
+ Disable bash completion during distchecking otherwise
+ it may try to install into a system path and fail.
+
+2015-02-23 17:16:45 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * Makefile.am:
+ Dist new data directory
+ Fixes 'make dist'
+
+2015-02-20 22:04:22 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * Makefile.am:
+ * configure.ac:
+ * data/Makefile.am:
+ * data/completions/gst-inspect-1.0:
+ * data/completions/gst-launch-1.0:
+ * libs/gst/helpers/.gitignore:
+ * libs/gst/helpers/Makefile.am:
+ * libs/gst/helpers/gst:
+ * libs/gst/helpers/gst-completion-helper.c:
+ * pkgconfig/gstreamer-uninstalled.pc.in:
+ * pkgconfig/gstreamer.pc.in:
+ bash-completion: Implement in a different way.
+ + Gets installed
+ + Uses a helper tool, gst-completion-helper, installed in
+ bash-completions/helpers.
+ + Adds a common script that other tools can source.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744877
+
+2015-02-23 12:08:49 +0000 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * gst/Makefile.am:
+ * gst/gst.h:
+ GstDeviceMonitor: keep alphabetical order
+
+2015-02-20 16:22:23 -0500 Olivier Crête <olivier.crete@collabora.com>
+
+ * gst/gstelement.c:
+ * tests/check/gst/gstelement.c:
+ Revert "element: set pads need-parent flag to false when removing"
+ This reverts commit 1911554cff2c4a11772b541a8215a80c728b1097.
+ This breaks the functionality of GST_PAD_FLAG_NEED_PARENT, the reason for this
+ flag is that if a pad is removed from a running element, you don't want
+ functions (such as chain or event) to be called on the pad without a parent set.
+ This can happen if you remove a request or sometimes pad from a running element.
+ I don't see the code that caused this in tsdemux, but if it needs to unset
+ the flag on remove, it should do it itself and then make sure that the parent
+ exists in any pad function.
+
+2015-02-19 12:17:15 +0100 Mathieu Duponchelle <mathieu.duponchelle@opencreed.com>
+
+ * libs/gst/check/gstcheck.h:
+ check: cast element in ASSERT_SET_STATE.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744777
+
+2015-02-19 01:16:52 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstinputselector.c:
+ inputselector: Use a separate query for upstream pads and let it fail if one upstream query fails
+
+2015-02-19 01:12:49 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstpad.c:
+ pad: If the latency query fails for one of the pads, it fails overall
+
+2015-02-18 11:05:19 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstqueue.c:
+ queue: Remove unused boolean parameter from internal functions
+
+2015-02-17 12:11:43 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * tests/check/elements/queue.c:
+ queue: Add unit test for buffer list and time level handling
+
+2015-02-17 11:44:40 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstqueue.c:
+ queue: Add support for buffer lists
+
+2015-02-17 11:41:50 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstqueue2.c:
+ queue2: Count the number of buffers in a buffer list for updating the current levels
+ instead of just assuming one buffer.
+
+2015-02-17 20:47:23 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstmessage.c:
+ message: revive async delivery message before bus thread can run unref
+ Revive message in dispose handler before we signal the bus thread,
+ otherwise the bus thread might be woken up and unref the message
+ before we had a chance to revive it yet.
+
+2015-02-16 23:02:40 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/gst/gstbus.c:
+ tests: bus: add unit test for async message delivery
+
+2015-02-16 22:39:42 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gst_private.h:
+ * gst/gstbus.c:
+ * gst/gstmessage.c:
+ message, bus: fix async message delivery
+ Async message delivery (where the posting thread gets blocked
+ until the message has been processed and/or freed) was pretty
+ much completely broken.
+ For one, don't use GMutex implementation details to check
+ whether a mutex has been initialized or not, esp. not
+ implementation details that don't hold true any more with
+ newer GLib versions where atomic ops and futexes are used
+ (spotted by Josep Torras). This led to async message
+ delivery no longer blocking with newer GLib versions on
+ Linux.
+ Secondly, after async delivery don't free mutex/GCond
+ embedded inside the just-freed message structure.
+ Use a new (private) mini object flag to signal GstMessage
+ that the message being freed is part of an async delivery
+ on the bus so that the dispose handler can keep the message
+ alive and the bus can free it once it's done cleaning up
+ stuff.
+
+2015-02-16 19:24:44 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstinfo.c:
+ info: nicer buffer offset printing when offsets are not set
+ Print unset offsets as 'none' instead of humongous numbers,
+ for better readability.
+
+2015-02-16 11:35:41 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstpad.c:
+ pad: Only initialize GValue to a type once, not on every retry
+ Otherwise we'll get warnings like this:
+ cannot initialize GValue with type 'gboolean', the value has already been initialized as 'gboolean'
+
+2015-02-14 12:15:03 +0100 Matthieu Bouron <matthieu.bouron@collabora.com>
+
+ * gst/gstutils.c:
+ gstutils: check uri before using it in gst_pad_create_stream_id_internal
+ If an element implements wrongly the URI query and set the uri to NULL and if
+ the element calls gst_pad_create_stream_id at some point, it will lead to crash
+ as the uri is not supposed to be NULL in the gst_pad_create_stream_id_internal
+ function.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744520
+
+2015-02-13 19:43:24 +0100 Thibault Saunier <tsaunier@gnome.org>
+
+ * libs/gst/controller/gsttimedvaluecontrolsource.c:
+ timedvaluecontrolsource: Do not wrongly send value-removed
+ And avoid freeing something we do not own
+
+2015-02-04 15:06:17 +0100 Thibault Saunier <tsaunier@gnome.org>
+
+ * scripts/gst-uninstalled:
+ gst-uninstalled: Set GST_VALIDATE_PLUGIN_PATH
+
+2015-02-12 13:34:49 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: fix documentation and debug message after latency updates
+ Changes docs and message according to latency handling fix
+
+2015-02-12 14:50:15 +0000 Frédéric Wang <fred.wang@free.fr>
+
+ * plugins/elements/gstfdsrc.c:
+ fdsrc: use g_ascii_strtoull() to convert size string in uri
+ sscanf() doesn't handle G_GUINT64_FORMAT well on mingw64 it
+ appears, leading to compiler warnings.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744034
+
+2015-02-12 14:03:15 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstpad.c:
+ pad: gst_pad_iterate_internal_links() can return NULL if there are none
+
+2015-02-12 14:03:03 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstpad.c:
+ pad: Return NULL instead of FALSE for pointers
+
+2015-02-12 13:55:36 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstpad.c:
+ pad: Implement more useful default handling for the LATENCY query
+ Before we just took the values from the first pad that succeded the query,
+ now we accumulate the results of every sinkpad properly and return that
+ result.
+
+2015-02-12 11:26:26 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * docs/design/part-latency.txt:
+ design/part-latency: Minor logic fix
+ The maximum latency will be the element's minimum latency or bigger,
+ not bigger than the element's minimum latency or bigger.
+
+2015-02-11 13:41:56 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstquery.c:
+ * libs/gst/base/gstbaseparse.c:
+ * libs/gst/base/gstbasesink.c:
+ * libs/gst/base/gstbasesrc.c:
+ * plugins/elements/gstqueue.c:
+ Improve and fix LATENCY query handling
+ This now follows the design docs everywhere.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744106
+
+2015-02-11 12:20:39 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * docs/design/part-latency.txt:
+ design/part-latency: Add more details about min/max latency handling
+ These docs missed many details that were not obvious and because of that
+ handled in a few different, incompatible ways in different elements and base
+ classes.
+ https://bugzilla.gnome.org/show_bug.cgi?id=744106
+
+2015-02-07 05:16:23 +1100 Jan Schmidt <jan@centricular.com>
+
+ * tests/check/gst/gstclock.c:
+ tests: Fix clock regression test
+ Fix up the values the test is checking for now that
+ the clock regression returns parameters starting from
+ the end of the regression range.
+
+2015-02-07 04:22:22 +1100 Jan Schmidt <jan@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclock: Don't update the clock when it desynch
+ Add a hold off when the clock calibration suddenly loses synch,
+ as it may be a glitch, but also make sure we update if it stays
+ desynched for more than a few seconds
+
+2015-02-06 06:07:43 +1100 Jan Schmidt <jan@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclock: Make the RTT average ignore large values more forcefully.
+ Smooth larger RTTs a little harder, so excessively large values
+ perturb the average a bit less, and therefore get filtered out
+ more strongly
+
+2015-02-05 22:55:39 +1100 Jan Schmidt <jan@centricular.com>
+
+ * gst/gstclock-linreg.c:
+ clock: Make linear regression x/y base start from maximum observation.
+ Project the results of the linear regression to the end of the
+ regression range, so they're more directly comparable to results
+ going forward
+
+2015-02-05 13:49:47 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstpad.c:
+ pad: add "offset" property to go with gst_pad_set_offset()
+ So we can set the offset via gst-launch.
+
+2015-02-02 08:22:47 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gstplugin.c:
+ plugin: add more detail to logging when not loading a plugin
+ Improve the log messages and add e.g the version number we checked.
+
+2015-02-02 17:37:44 +1100 Jan Schmidt <jan@centricular.com>
+
+ * gst/gstpad.c:
+ gstpad: Fix a typo in a docstring.
+
+2015-02-01 14:23:26 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
+
+ * gst/gsttask.c:
+ build: Check that _MSC_VER macro is defined
+
+2015-02-01 03:39:03 +0200 Ilya Konstantinov <ilya.konstantinov@gmail.com>
+
+ * configure.ac:
+ * gst/gsttask.c:
+ task: Add thread name support on OS X and iOS
+
+2015-01-29 16:37:07 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstclock-linreg.c:
+ clock: Don't use invalid objects for GST_DEBUG_OBJECT()
+ Not sure what "clock" actually is here, it must be something defined by one of
+ the headers that are included.
+
+2015-01-29 12:10:18 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstbuffer.c:
+ buffer: Document that gst_buffer_copy_region() accepts -1 as size to copy until the end
+ It's just a wrapper around gst_buffer_copy_into() after all.
+
+2014-12-09 16:28:56 +1100 Jan Schmidt <jan@centricular.com>
+
+ * gst/gstsegment.c:
+ * gst/gstsegment.h:
+ segment: Add new skip flags for clarifying trick mode playback.
+ Add GST_SEEK_FLAG_TRICKMODE_KEY_UNITS and
+ GST_SEEK_FLAG_TRICKMODE_NO_AUDIO, and rename GST_SEEK_FLAG_SKIP
+ to GST_SEEK_FLAG_TRICKMODE (with backwards compat define).
+ Do the same for the corresponding SEGMENT flags.
+ https://bugzilla.gnome.org/show_bug.cgi?id=735666
+
+2015-01-23 08:59:27 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * libs/gst/check/gstcheck.c:
+ check: fix another typo in the docs
+
+2015-01-22 23:10:06 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gsturi.c:
+ * tests/check/gst/gsturi.c:
+ uri: Fix indention
+
+2015-01-21 14:10:02 +0000 David Waring <david.waring@rd.bbc.co.uk>
+
+ * tests/check/gst/gsturi.c:
+ uri: Fix new URI parsing tests based on GNet's
+ https://bugzilla.gnome.org/show_bug.cgi?id=743195
+
+2015-01-21 14:09:45 +0000 David Waring <david.waring@rd.bbc.co.uk>
+
+ * gst/gsturi.c:
+ uri: Fix parsing issues
+ Make host IPs in square brackets store only the IP, i.e. strip the brackets.
+ Strip leading whitespace characters in URIs.
+ Fail parsing when host part does not match any valid formats from RFC3986.
+ https://bugzilla.gnome.org/show_bug.cgi?id=743195
+
+2015-01-19 19:15:32 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * tests/check/gst/gsturi.c:
+ uri: Add parsing unit test based on GNet's
+ Plus some new URIs to parse.
+ https://git.gnome.org/browse/archive/gnet/plain/tests/check/gnet/gneturi.c
+ https://bugzilla.gnome.org/show_bug.cgi?id=743195
+
+2015-01-22 11:29:18 +0100 Heinrich Fink <hfink@toolsonair.com>
+
+ * libs/gst/check/gstcheck.c:
+ check: Fix doc of GST_CHECKS and GST_CHECKS_IGNORE
+ https://bugzilla.gnome.org/show_bug.cgi?id=743335
+
+2015-01-21 18:07:09 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/check/Makefile.am:
+ * libs/gst/check/gstcheck.c:
+ check: Add _fail_unless() compatibility function around _ck_assert_failed()
+ We exported this in < 1.5 and it was automatically used by many macros
+ from the header. Keep it exported for now.
+
+2015-01-21 14:12:22 +0100 Edward Hervey <bilboed@bilboed.com>
+
+ * gst/gstpad.c:
+ gstpad: Inline apply_pad_offset()
+ Avoid doing a function call for something which will mostly be unused
+
+2015-01-21 14:10:06 +0100 Edward Hervey <bilboed@bilboed.com>
+
+ * gst/gstpad.c:
+ gstpad: Fix debug message
+
+2015-01-21 11:45:41 +0100 Edward Hervey <bilboed@bilboed.com>
+
+ * gst/gstpad.c:
+ gstpad: Fix PROBE_NO_DATA macro
+ The problem was that the macro was always used with 'ret' as the defaultval
+ argument.
+ This would result in the macro eventually expanding to
+ if (G_UNLIKELY (ret != ret && ret != GST_FLOW_OK))
+ ... ret != ret will always fail, and therefore we'd never call the
+ following line.
+ Instead of that, store the previous value locally for comparision
+
+2015-01-21 22:44:59 +1100 Jan Schmidt <jan@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclock: Fix docs typo. Clock bus messages are GST_MESSAGE_ELEMENT
+
+2015-01-15 22:32:28 +1100 Jan Schmidt <jan@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclock: Implement rate limits for polling and fix up skew limits
+ Add the minimum-update-interval property to the clock, with a default
+ of 50ms and don't send polling requests faster than that. That helps to
+ ensure we spread the initial observations out a little - startup takes
+ a little longer, but tracking is more stable.
+ Move the discont skew limiting code inside an if statement, so that
+ it's only done when the linear regression succeeds and the clock
+ parameters might actually change.
+
+2015-01-15 10:05:32 +1100 Jan Schmidt <jan@centricular.com>
+
+ * gst/Makefile.am:
+ * gst/gst_private.h:
+ * gst/gstclock-linreg.c:
+ * gst/gstclock.c:
+ * tests/check/gst/gstclock.c:
+ clock: Improve slaving regression.
+ Add domain checks for the input values, and a variable precision
+ calculation that loops if necessary to ensure we never overflow
+ accumulators and then silently produce garbage results.
+ Make the (non-public) linear regression function available for
+ unit testing by putting it in a separate source file the test
+ can include. Add a unit test that the new regression function
+ produces sensible results for several inputs taken from real-world
+ captures.
+
+2015-01-10 21:42:00 +1100 Jan Schmidt <jan@centricular.com>
+
+ * configure.ac:
+ * tests/examples/Makefile.am:
+ * tests/examples/netclock/.gitignore:
+ * tests/examples/netclock/Makefile.am:
+ * tests/examples/netclock/netclock-client.c:
+ * tests/examples/netclock/netclock-server.c:
+ netclock: Add simple network clock server and client examples
+
+2015-01-10 21:42:00 +1100 Jan Schmidt <jan@centricular.com>
+
+ * libs/gst/net/gstnetclientclock.c:
+ netclock: Implement sending statistic bus messages and discont limits
+ Allow setting a GstBus on the network clock client
+ via a new 'bus' object property. If a bus is set, the
+ clock will output an element message containing statistics
+ about new clock observations and the clock correlation.
+ When the local clock is synchronised with the remote, limit the
+ maximum jump in the clock at any point to be one average RTT to
+ the server. Also, publish in the bus message whether we are
+ synched with the remote or not.
+
+2015-01-10 21:42:00 +1100 Jan Schmidt <jan@centricular.com>
+
+ * gst/gstclock.c:
+ * gst/gstclock.h:
+ * win32/common/libgstreamer.def:
+ clock: Add gst_clock_add_observation_unapplied()
+ gst_clock_add_observation_unapplied() adds a new master/slave clock
+ observation and runs the regression without activating the new
+ calibration results.
+
+2014-12-16 22:51:22 +1100 Jan Schmidt <jan@centricular.com>
+
+ * gst/gstclock.c:
+ * gst/gstclock.h:
+ * win32/common/libgstreamer.def:
+ clock: Add gst_clock_adjust_with_calibration()
+ gst_clock_adjust_with_calibration() uses directly passed calibration
+ parameters, instead of using the clock's current calibration,
+ allowing for calculations using pending or old calibration params
+
+2015-01-21 09:45:16 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstoutputselector.c:
+ output-selector: Constify negotiation mode GEnumValue table
+
+2015-01-20 10:35:47 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * gst/gstevent.c:
+ docs: fix typo in GstEvent docs
+ send -> sent
+
+2015-01-20 09:19:10 +0100 Thibault Saunier <tsaunier@gnome.org>
+
+ * scripts/git-update.sh:
+ * scripts/gst-uninstalled:
+ scripts: Remove gnonlin from the scripts
+ It is not maintain anymore and its feature are now inside the GStreamer
+ Editing Services (for the time being).
+
+2015-01-16 19:17:31 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstbin.c:
+ bin: Pass structs we plan to modify around by pointer, not value
+ Otherwise the struct is going to be copied, which is not very efficient. And
+ also has the nice side effect that modifications of the struct might be
+ done in a copy, and we later use the original struct without the changes.
+ Caused LATENCY queries to always return the initialization values in one of my
+ tests, instead of the actual values reported by child elements.
+
+2015-01-14 10:52:11 +0000 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * plugins/elements/gstidentity.c:
+ identity: send gap events when dropping buffers
+
+2015-01-13 18:11:39 +0000 Phillip Wood <phillip.wood@dunelm.org.uk>
+
+ * gst/gstpreset.c:
+ preset: fix incorrect preset version comparison
+ Use app_version if there are no system presets, so that if the
+ application presets are newer than the user presets they are merged.
+ https://bugzilla.gnome.org/show_bug.cgi?id=742877
+
+2015-01-12 16:03:02 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstinputselector.c:
+ inputselector: Don't dereference NULL pointer
+ CID 1262286
+
+2015-01-12 15:55:47 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * common:
+ Automatic update of common submodule
+ From f2c6b95 to bc76a8b
+
+2015-01-11 23:00:29 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gstpreset.c:
+ preset: fix sorting presets
+ The glib docs are not clear on this, but the qsort man-page is - the
+ GCompareDataFunc does not get the strings, but pointers to them.
+
+2014-12-31 18:52:34 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstinputselector.c:
+ inputselector: fix silly GQueue iteration code
+ Not active by default though.
+
+2015-01-04 23:24:53 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gstpreset.c:
+ preset: don't return empty preset lists
+ Add a shortcut for the cases where an element implements the preset iface but
+ has no presets and return NULL instead of an empty list in that case.
+
+2015-01-04 23:08:47 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * tools/gst-inspect.c:
+ gst-inspect: only print presets line if num-presets > 0
+ Also check for an empty strv.
+
+2015-01-04 22:51:09 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * tools/gst-inspect.c:
+ gst-inspect: fix output for -a
+ Use n_print to ensure all lines are prefixed with the element name.
+
+2014-12-29 11:54:00 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * docs/libs/Makefile.am:
+ docs: ignore libcheck headers that use doxygen comments
+
+2014-12-29 11:52:22 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gstinfo.h:
+ docs: fix two gtk-doc warnings
+ One by correcting the end-of-comment marker and one by making sure the function
+ prototype in the header is in sync with the c file and doc-blob.
+
+2014-12-26 23:22:30 +0100 Sebastian Rasmussen <sebras@hotmail.com>
+
+ * docs/gst/gstreamer-sections.txt:
+ * docs/libs/gstreamer-libs-sections.txt:
+ * docs/plugins/gstreamer-plugins-sections.txt:
+ docs: Add missing interfaces to documentation
+ https://bugzilla.gnome.org/show_bug.cgi?id=742057
+
+2014-12-27 15:15:30 +0530 Nirbheek Chauhan <nirbheek@centricular.com>
+
+ * gst/gstiterator.c:
+ iterator: Fix outdated example code and accompanying documentation
+ GstIterator no longer returns a refcounted gpointer
+
+2014-12-24 13:46:28 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstinputselector.c:
+ inputselector: Use the same waiting function for EOS and non-EOS waiting
+
+2014-12-24 13:44:09 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstinputselector.c:
+ inputselector: Wake up all waitings pads directly if we forward the EOS event
+ Otherwise they might wait a bit longer unnecessarily.
+ Also do some minor cleanup.
+
+2014-12-24 10:13:51 +0800 Song Bing <b06498@freescale.com>
+
+ * plugins/elements/gstinputselector.c:
+ * plugins/elements/gstinputselector.h:
+ inputselector: Block when receiving an EOS event on a deactivated pad
+ ... and only unblock when either a) the pad becomes active and the event
+ should be forwarded or b) the active pad went EOS itself.
+ Otherwise it can happen that we switch from a longer track that is not EOS yet
+ to a shorter track that already is EOS, but the shorter track won't have any
+ possibility to send its EOS event downstream anymore.
+ https://bugzilla.gnome.org/show_bug.cgi?id=740949
+
+2014-12-23 12:54:50 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstinputselector.c:
+ inputselector: Keep a ref of the currently active sinkpad around
+ Otherwise we can't be sure that the pointer points to a still existing
+ pad instance after releasing the lock.
+
+2014-12-23 12:53:58 +0100 Song Bing <b06498@freescale.com>
+
+ * plugins/elements/gstinputselector.c:
+ inputselector: Get the active sinkpad again after taking the lock when handling events
+ It might have changed in the meantime.
+ https://bugzilla.gnome.org/show_bug.cgi?id=741893
+
+2014-12-22 13:08:37 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/base/gstbasetransform.c:
+ basetransform: Short-circuit CAPS query handling if transform_caps returns EMPTY caps
+ Both for the peer filter caps and the converted caps based on the peer caps.
+ If the peer filter caps are EMPTY, the peer caps query will also return
+ EMPTY. There's no ned to both downstream/upstream with this query.
+
+2014-12-22 11:45:13 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * MAINTAINERS:
+ MAINTAINERS: Update my mail address
+
+2014-12-21 14:12:29 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gstdebugutils.c:
+ debugutils: use a constant for the max param length
+ Improve readability by using a define for the max-chars. Also use the unicode
+ ellipsis as dot files are utf-8.
+
+2014-12-15 14:03:54 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * tools/gst-inspect.c:
+ gst-inspect: print preset names
+ If the element supports presets and ships some, print them.
+ Fixes #741427
+
+2014-12-19 11:35:24 +0100 Edward Hervey <bilboed@bilboed.com>
+
+ * gst/gstinfo.h:
+ gstinfo: Add new maximum level debugging
+ API: GST_LEVEL_MAX
+ By compiling gstreamer (or plugins) with GST_LEVEL_MAX defined, only
+ the debugging statements at or below that level will be compiled in.
+ This allows compiling in some debugging (like errors and warnings) which
+ helps in debugging, but without the full cpu/memory overhead of all debugging
+ enabled.
+
+2014-12-18 12:04:22 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * libs/gst/check/gstcheck.c:
+ gstcheck: fix GI annotation
+ Add missing : to annotation
+
+2014-11-13 14:53:59 +0000 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: jump over large skips in pull mode
+ This bypasses the dumping of buffers we still have to do in push mode.
+ https://bugzilla.gnome.org/show_bug.cgi?id=730053
+
+2014-10-25 17:16:25 +0530 Arun Raghavan <arun@accosted.net>
+
+ * gst/gstdebugutils.c:
+ * gst/gstdebugutils.h:
+ debugutils: Truncate parameter values that are too long
+ This removes some information from the dumps, but improves readability.
+ https://bugzilla.gnome.org/show_bug.cgi?id=739165
+
+2014-12-18 10:53:02 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * common:
+ Automatic update of common submodule
+ From ef1ffdc to f2c6b95
+
+2014-12-16 16:31:21 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * docs/gst/gstreamer-sections.txt:
+ * gst/gstcaps.c:
+ * gst/gstcaps.h:
+ * gst/gststructure.c:
+ * gst/gststructure.h:
+ * tests/check/gst/gstcaps.c:
+ * tests/check/gst/gststructure.c:
+ * win32/common/libgstreamer.def:
+ structure/caps: Add gst_{structure,caps}_filter_and_map_in_place()
+ https://bugzilla.gnome.org/show_bug.cgi?id=739765
+
+2014-12-16 18:14:22 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * tests/check/gst/gststructure.c:
+ structure: Add simple unit test for foreach() and map_in_place()
+
+2014-11-07 11:15:09 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * docs/gst/gstreamer-sections.txt:
+ * gst/gstcaps.c:
+ * gst/gstcaps.h:
+ * tests/check/gst/gstcaps.c:
+ caps: Add gst_caps_foreach() and gst_caps_map_in_place()
+ https://bugzilla.gnome.org/show_bug.cgi?id=739765
+
+2014-12-16 15:53:06 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * po/af.po:
+ * po/az.po:
+ * po/be.po:
+ * po/bg.po:
+ * po/ca.po:
+ * po/cs.po:
+ * po/da.po:
+ * po/de.po:
+ * po/el.po:
+ * po/en_GB.po:
+ * po/eo.po:
+ * po/es.po:
+ * po/eu.po:
+ * po/fi.po:
+ * po/fr.po:
+ * po/gl.po:
+ * po/hr.po:
+ * po/hu.po:
+ * po/id.po:
+ * po/it.po:
+ * po/ja.po:
+ * po/lt.po:
+ * po/nb.po:
+ * po/nl.po:
+ * po/pl.po:
+ * po/pt_BR.po:
+ * po/ro.po:
+ * po/ru.po:
+ * po/rw.po:
+ * po/sk.po:
+ * po/sl.po:
+ * po/sq.po:
+ * po/sr.po:
+ * po/sv.po:
+ * po/tr.po:
+ * po/uk.po:
+ * po/vi.po:
+ * po/zh_CN.po:
+ * po/zh_TW.po:
+ po: update for new translatable strings
+
+2014-12-14 12:54:32 +0100 Sebastian Rasmussen <sebras@hotmail.com>
+
+ * configure.ac:
+ * libs/gst/check/Makefile.am:
+ * libs/gst/check/libcheck/Makefile.am:
+ * libs/gst/check/libcheck/check.c:
+ * libs/gst/check/libcheck/check_log.c:
+ * libs/gst/check/libcheck/check_msg.c:
+ * libs/gst/check/libcheck/check_pack.c:
+ * libs/gst/check/libcheck/check_print.c:
+ * libs/gst/check/libcheck/check_run.c:
+ * libs/gst/check/libcheck/check_str.c:
+ check: Have autotools generate internal-check.h
+ Previously GStreamer got access to the libcheck interface by including
+ libs/gst/check/check.h which in turn included internal-check.h in the
+ same directory. internal-check.h was generated by copying
+ libs/gst/check/libcheck/check.h which in turn was generated from
+ check.h.in in the same directory. In this case generating
+ libs/gst/check/libcheck/check.h is unnecessary, in addition this file
+ was accidentally distributed in generated project tarballs.
+ Now libs/gst/check/internal-check.h is generated directly from
+ libs/gst/check/libcheck/check.h.in by configure. This means that the
+ libcheck source must include internal-check.h instead of the previously
+ generated libs/gst/check/libcheck/check.h. However the unnecessary
+ intermediate step is now skipped.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=741359
+
+2014-12-16 10:13:03 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
+
+ * gst/gstbufferpool.c:
+ * tests/check/gst/gstbufferpool.c:
+ bufferpool: Don't check size in config validation
+ Pools are allowed to change the size in order to adapt padding. So
+ don't check the size. Normally pool will change the size without
+ failing set_config(), but it they endup changing the size before
+ the validate method may fail on a false positive.
+ https://bugzilla.gnome.org/show_bug.cgi?id=741420
+
+2014-12-16 12:21:59 +0100 Wim Taymans <wtaymans@redhat.com>
+
+ * gst/gstbufferpool.c:
+ bufferpool: log reason for discarded buffers
+ PERFORMANCE log the reason why a buffer could not be recycled in the
+ bufferpool.
+
+2014-12-15 14:53:28 +0100 Sebastian Rasmussen <sebras@hotmail.com>
+
+ * m4/check-checks.m4:
+ check: Update version number of included libcheck
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=741550
+
+2014-12-12 21:02:22 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * win32/common/libgstreamer.def:
+ win32: update exports
+
+2014-12-12 21:54:01 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * docs/gst/gstreamer-sections.txt:
+ docs: add new preset api
+
+2014-12-12 21:38:26 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gstpreset.c:
+ * gst/gstpreset.h:
+ preset: add gst_preset_is_editable()
+ Add a function to check if the preset iface implementation is editable and
+ document this from the implementers perspective.
+ API: gst_preset_is_editable()
+
+2014-12-12 14:23:19 +0100 Edward Hervey <bilboed@bilboed.com>
+
+ * win32/common/libgstreamer.def:
+ win32: Update def file
+
+2014-12-12 13:57:39 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstdebugutils.c:
+ debugutils: Fix compiler warning
+ gstdebugutils.c: In function 'gst_debug_bin_to_dot_data':
+ gstdebugutils.c:683:530: error: 'return' with no value, in function returning non-void [-Werror]
+ g_return_if_fail (GST_IS_BIN (bin));
+
+2014-12-12 13:15:02 +0530 Arun Raghavan <git@arunraghavan.net>
+
+ * gst/gstdebugutils.c:
+ * gst/gstdebugutils.h:
+ debugutils: Add a gst_debug_bin_to_dot_data() method
+ This provides the dot file as a string, rather than dumping to a file.
+ https://bugzilla.gnome.org/show_bug.cgi?id=741425
+
+2014-12-10 11:17:11 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ * plugins/elements/gsttypefindelement.h:
+ typefind: minor cosmetic change
+ No nee to abbrev variab nam here, nicer to read if full.
+
+2014-12-10 11:16:09 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ typefind: use GST_BUFFER_OFFSET_NONE for buffer offset
+
+2014-12-07 12:55:26 +0100 Sebastian Rasmussen <sebras@hotmail.com>
+
+ * libs/gst/check/libcheck/check.h.in:
+ check: Avoid requring (u)intmax_t in macros
+ Previously embedded libcheck versions did not depend on (u)intmax_t and
+ doing so would require projects using GStreamer's check framework to add
+ AX_CREATE_STDINT_H to their configure.ac. A workaround is to fallback to
+ glib types. This patch assumes that glib.h is always included before
+ internal-check.h which is ok since everything Gstreamer would include
+ gst/gstcheck.h instead of directly including internal-check.h.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=727826
+
+2014-12-06 19:03:04 +0100 Sebastian Rasmussen <sebras@hotmail.com>
+
+ * libs/gst/check/libcheck/clock_gettime.c:
+ check: Fix compilation error for iOS
+ libcheck includes CoreServices for its compat for clock_gettime(),
+ even though it never uses anything it declares. Let's remove it.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=727826
+
+2014-11-15 13:26:47 +0100 Sebastian Rasmussen <sebras@hotmail.com>
+
+ * configure.ac:
+ * libs/gst/check/gstcheck.h:
+ * libs/gst/check/libcheck/Makefile.am:
+ * libs/gst/check/libcheck/check.c:
+ * libs/gst/check/libcheck/check.h.in:
+ * libs/gst/check/libcheck/check_error.c:
+ * libs/gst/check/libcheck/check_error.h:
+ * libs/gst/check/libcheck/check_list.c:
+ * libs/gst/check/libcheck/check_log.c:
+ * libs/gst/check/libcheck/check_msg.c:
+ * libs/gst/check/libcheck/check_pack.c:
+ * libs/gst/check/libcheck/check_print.c:
+ * libs/gst/check/libcheck/check_run.c:
+ * libs/gst/check/libcheck/check_str.c:
+ * libs/gst/check/libcheck/libcompat.h:
+ * m4/check-checks.m4:
+ check: Apply GStreamer-specific patches
+ Reintroduced patches:
+ * Make sure that fail_if(1) actually fails
+ from commit 9f99d056a263e71a5e6181224829def906cf0226
+ New patches due to updated libcheck (based on 0.9.14):
+ * Checks in m4/check-checks.m4 to cater for new dependencies
+ * Conditional compile-time compat POSIX fallbacks for libcheck
+ * Avoid relative paths for libcheck header files
+ * Make timer_create() usage depend on posix timers, not librt
+ * Rely on default AX_PTHREAD behavior to allow HAVE_PTHREAD to be used
+ when checking for types and functions (like clock_gettime())
+ * Avoid double declaration of clock_gettime() when availabe outside of
+ librt by making compat clock_gettime() declaration conditional
+ * check 0.9.9 renamed _fail_unless() and 0.9.12 later renamed it again
+ to _ck_assert_failed(), so ASSERT_{CRITICAL,WARNING}() now calls this
+ function
+ * Remove libcheck fallback infrastructure for malloc(), realloc(),
+ gettimeofday() and snprintf() since either they appear to be
+ available or they introduce even more dependencies.
+ The result is an embedded check in gstreamer that has been tested by
+ running check tests in core, -base, -good, -bad, -ugly and rtsp-server
+ on Linux, OSX and Windows.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=727826
+
+2014-11-15 12:53:32 +0100 Sebastian Rasmussen <sebras@hotmail.com>
+
+ * libs/gst/check/libcheck/alarm.c:
+ * libs/gst/check/libcheck/check.c:
+ * libs/gst/check/libcheck/check.h.in:
+ * libs/gst/check/libcheck/check_error.c:
+ * libs/gst/check/libcheck/check_error.h:
+ * libs/gst/check/libcheck/check_impl.h:
+ * libs/gst/check/libcheck/check_list.c:
+ * libs/gst/check/libcheck/check_list.h:
+ * libs/gst/check/libcheck/check_log.c:
+ * libs/gst/check/libcheck/check_log.h:
+ * libs/gst/check/libcheck/check_msg.c:
+ * libs/gst/check/libcheck/check_msg.h:
+ * libs/gst/check/libcheck/check_pack.c:
+ * libs/gst/check/libcheck/check_pack.h:
+ * libs/gst/check/libcheck/check_print.c:
+ * libs/gst/check/libcheck/check_print.h:
+ * libs/gst/check/libcheck/check_run.c:
+ * libs/gst/check/libcheck/check_str.c:
+ * libs/gst/check/libcheck/check_str.h:
+ * libs/gst/check/libcheck/clock_gettime.c:
+ * libs/gst/check/libcheck/libcompat.c:
+ * libs/gst/check/libcheck/libcompat.h:
+ * libs/gst/check/libcheck/localtime_r.c:
+ * libs/gst/check/libcheck/strsignal.c:
+ * libs/gst/check/libcheck/timer_create.c:
+ * libs/gst/check/libcheck/timer_delete.c:
+ * libs/gst/check/libcheck/timer_settime.c:
+ check: Import version 0.9.14
+ This lifts the files almost verbatim (the changes being running though
+ gst-indent and fixing the FSF address) from the upstream respository.
+ Therefore this commit reverts some GStreamer-specific patches to check
+ that will be reintroduced next.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=727826
+
+2014-11-04 19:11:50 +0100 Edward Hervey <bilboed@bilboed.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ * plugins/elements/gsttypefindelement.h:
+ typefind: Propagate input buffer offset
+ The initial buffers might have non-default offsets, make sure they get
+ propagated if present.
+
+2014-10-07 16:44:45 +0200 Edward Hervey <bilboed@bilboed.com>
+
+ * libs/gst/base/gstbasesink.c:
+ basesink: clamp reported position based on direction
+ When using a negative rate (rate being segment.rate * segment.applied_rate),
+ we will end up reporting decreasing positions, therefore adjust the clamping
+ against last reported value accordingly.
+ Fixes positions getting properly reported with applied_rate < 0.0
+ https://bugzilla.gnome.org/show_bug.cgi?id=738092
+
+2014-11-28 14:17:54 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * docs/manual/advanced-buffering.xml:
+ * gst/gstbin.c:
+ * gst/gstbus.c:
+ * gst/gstcontrolbinding.c:
+ * gst/gstdevicemonitor.c:
+ * gst/gstghostpad.c:
+ * gst/gstinfo.c:
+ * gst/gstplugin.c:
+ * gst/gststructure.c:
+ * gst/gstsystemclock.c:
+ * libs/gst/base/gstbasesink.c:
+ * libs/gst/base/gstbasetransform.c:
+ * libs/gst/base/gstcollectpads.c:
+ * libs/gst/check/gstcheck.c:
+ * libs/gst/check/gstcheck.h:
+ * libs/gst/check/gsttestclock.c:
+ * plugins/elements/gstfunnel.c:
+ * plugins/elements/gstidentity.c:
+ * plugins/elements/gstinputselector.c:
+ * tools/gst-launch.c:
+ Don't compare booleans for equality to TRUE and FALSE
+ TRUE is 1, but every other non-zero value is also considered true. Comparing
+ for equality with TRUE would only consider 1 but not the others.
+ Also normalize booleans in a few places.
+
+2014-11-30 23:50:53 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstelements_private.c:
+ plugins: fix build on windows
+ gstelements_private.c: In function 'gst_writev_buffers':
+ gstelements_private.c:236:51: error: 'EWOULDBLOCK' undeclared
+
+2014-11-28 15:09:16 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstfilesink.c:
+ filesink: use writev() in ::render() to write out memories without merging them
+
+2014-11-28 15:04:27 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstfilesink.c:
+ * plugins/elements/gstfilesink.h:
+ filesink: implement ::render_list() function that uses writev()
+
+2014-11-28 14:47:20 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstfdsink.c:
+ fdsink: use writev() in ::render() to write out memories without merging them
+
+2014-11-28 14:39:33 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstfdsink.c:
+ * plugins/elements/gstfdsink.h:
+ fdsink: implement ::render_list() using writev()
+ Write out multiple buffers possibly containing multiple
+ memories with one writev() call, without merging the
+ buffer memories first, like ::render() does currently.
+
+2014-11-28 14:38:30 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * configure.ac:
+ * plugins/elements/gstelements_private.c:
+ * plugins/elements/gstelements_private.h:
+ plugins: add helper function for writing buffers out with writev()
+
+2014-11-28 14:15:30 -0300 Thiago Santos <thiago.sousa.santos@collabora.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: update the duration variable before emitting the bus
+ Otherwise the application might still get the old value if it asks
+ between the message and the real update.
+
+2014-11-28 16:25:02 +0100 Edward Hervey <bilboed@bilboed.com>
+
+ * gst/gstelement.c:
+ element: Fix doc and default implementation of send_event
+ The documentation states that gst_element_send_event is to "send an event
+ to an element".
+ Therefore we *send* upstream events to a source pad and downstream events
+ to a sink pad
+
+2014-11-28 11:16:00 +0100 Edward Hervey <bilboed@bilboed.com>
+
+ * gst/gstelement.c:
+ element: Figure default send_event direction handling
+ If we get a downstream event we want to send it to a random SINK pad
+ (and vice-versa).
+
+2014-11-27 18:00:57 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/base/gstbasetransform.c:
+ basetransform: Compare correct caps variable against NULL before comparing caps
+
+2014-11-27 17:10:19 +0100 Edward Hervey <bilboed@bilboed.com>
+
+ * common:
+ Automatic update of common submodule
+ From f32cfcd to ef1ffdc
+
+2014-11-10 09:58:47 +0100 Thibault Saunier <tsaunier@gnome.org>
+
+ * scripts/gst-uninstalled:
+ scripts:uninstalled: Make sur the GES TestManager is registered
+ So that whenever user work with GstValidate they can run GES tests
+ within the gst-uninstalled environment
+
+2014-11-26 21:48:05 +0530 Arun Raghavan <git@arunraghavan.net>
+
+ * common:
+ * m4/ax_pthread.m4:
+ build: Update ax_pthread.m4 and move it to common
+ Has some updates for Clang support (might not work with newer Clang
+ properly, yet), AIX support, and some misc fixes.
+
+2014-11-25 17:46:12 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/controller/gsttriggercontrolsource.c:
+ triggercontrolsource: Fix short description for the docs
+
+2014-11-25 09:39:40 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * docs/gst/running.xml:
+ docs: add GST_GL_* environment variables to 'Running GStreamer' section
+
+2014-11-23 05:45:24 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * plugins/elements/gstqueue2.c:
+ queue2: percentage is relative to high-percent
+ When comparing percentage values, compare with 0-100 scale as it
+ has already been made relative to 0-high_percent, otherwise we mark
+ the queue as not buffering and report a 50% to the user. This leads to
+ a buffering stall as the user assumes the queue is still buffering but
+ it thinks it isn't.
+ https://bugzilla.gnome.org/show_bug.cgi?id=736969
+
+2014-11-23 05:42:51 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * plugins/elements/gstmultiqueue.c:
+ multiqueue: percentage is an absolute value
+ multiqueue's queues stored percent value is the percentage from 0
+ to 100 (max-size-*) and should be compared with the requested limit
+ (high_percentage) set by the user and not with 100% to check if
+ buffering should stop. Otherwise we are only stopping buffering when the
+ queue gets completely full.
+
+2014-11-20 21:33:59 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/base/gstbasetransform.c:
+ basetransform: Fix caps equality check
+ Instead of checking if our outcaps are equivalent to the previous incaps, and
+ if that is the case not setting any caps on the pad... compare against our
+ previous outcaps because that's what we care about.
+ Fixes some cases where the outcaps became equivalent to the previous incaps,
+ but the previous outcaps were different and we were then sending buffers
+ downstream that were corresponding to the caps we forgot to set on the pad.
+ Resulting in crashes or image corruption.
+
+2014-11-20 13:33:12 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * common:
+ common: update for bison version check patch
+ Fix configure check with bison development version.
+ https://bugzilla.gnome.org/show_bug.cgi?id=728946
+
+2014-11-20 13:34:32 +0100 Wim Taymans <wtaymans@redhat.com>
+
+ * gst/gststructure.c:
+ * tests/check/gst/gststructure.c:
+ structure: don't overread input when searching for "
+ When searching for the string terminator don't read past the ending
+ 0-byte when escaping characters.
+ Add unit test for various escaping cases.
+
+2014-11-03 17:46:57 +0000 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * gst/gstpad.c:
+ pad: fail dropped queries
+ Previously, dropping a query from a pad probe would deem the
+ query succeeded, and the caller might then assume the query's
+ results are valid, and thus dereference an invalid object
+ such as a GstCaps.
+ We now assume dropped queries did not succeed. Dropped events
+ and buffers are still deemed a success.
+ Added back after previous revert, as it's been double checked.
+ https://bugzilla.gnome.org/show_bug.cgi?id=740003
+
+2014-11-12 13:55:23 +0000 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * gst/gstpad.c:
+ Revert "pad: fail dropped queries"
+ This was pushed by mistake along with an unrelated patch.
+ This reverts commit c7103ce4b8c1da7dcfbcf2ec83a42a376fb896e1.
+
+2014-05-13 11:18:08 +0100 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: allow skipping more data than we currently have
+ This can be useful for skipping large unwanted data, such as
+ large album art, when we know the size of it from a metadata
+ header.
+
+2014-11-03 17:46:57 +0000 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
+
+ * gst/gstpad.c:
+ pad: fail dropped queries
+ Previously, dropping a query from a pad probe would deem the
+ query succeeded, and the caller might then assume the query's
+ results are valid, and thus dereference an invalid object
+ such as a GstCaps.
+ We now assume dropped queries did not succeed. Dropped events
+ and buffers are still deemed a success.
+
+2014-11-12 11:30:51 +0100 Haakon Sporsheim <haakon.sporsheim@gmail.com>
+
+ * gst/gsttask.c:
+ * tests/check/gst/gsttask.c:
+ task: Fix pause/stop race condition
+ If a task thread is calling pause on it self and the
+ controlling/"main" thread stops the task, it could end in a race
+ where gst_task_func loops and then checks for paused after the
+ controlling thread just changed the task state to stopped.
+ Hence the task would actually call func again even though it was
+ both paused and stopped.
+ https://bugzilla.gnome.org/show_bug.cgi?id=740001
+
+2014-11-10 10:01:02 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * tests/check/gst/gstobject.c:
+ gstobject: Don't check booleans for equality in the unit test
+ Every value other than 0/FALSE is TRUE, == TRUE will only check for 1.
+
+2014-11-05 11:50:47 +0100 Jan Alexander Steffens (heftig) <jsteffens@make.tv>
+
+ * docs/gst/gstreamer-sections.txt:
+ * gst/gstobject.c:
+ * gst/gstobject.h:
+ * tests/check/gst/gstobject.c:
+ * win32/common/libgstreamer.def:
+ gstobject: Add gst_object_has_parent()
+ Adds gst_object_has_parent, which works like gst_object_has_ancestor
+ but does not ascend further.
+ API: gst_object_has_parent()
+
+2014-11-09 10:37:42 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/base/gstbasetransform.c:
+ basetransform: Don't bother the subclass with setting the same caps multiple times
+
+2014-11-09 10:32:18 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/base/gstbasesink.c:
+ basesink: Don't bother the subclass with setting the same caps multiple times
+
+2014-11-09 10:29:57 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: Don't bother the subclass with setting the same caps multiple times
+
+2014-11-07 08:22:02 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gststructure.c:
+ structure: remove conditional for G_VALUE_COLLECT_INIT
+ This API is in glib since 2.24 and we currently require 2.32 and already use
+ this unconditionally elsewhere.
+
+2014-11-05 19:09:39 +0100 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gstpreset.c:
+ preset: remove commented code
+ The GQuark was never used.
+
+2014-11-07 11:34:08 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/Makefile.am:
+ * pkgconfig/gstreamer.pc.in:
+ gstconfig: Put gstconfig.h into $(libdir)/gstreamer-1.0/include
+ It's architecture dependent and should not be placed into the include
+ directory as the assumption is that all those headers are architecture
+ independent.
+ https://bugzilla.gnome.org/show_bug.cgi?id=739767
+
+2014-11-07 10:56:42 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gsturi.c:
+ uri: Fix gobject-introspection warnings
+ gsturi.c:997: Error: Gst: Skipping invalid GTK-Doc comment block:
+ /** private GstUri functions **/
+ ^
+ gsturi.c:1179: Error: Gst: Skipping invalid GTK-Doc comment block:
+ /** RFC 3986 functions **/
+ ^
+
+2014-10-24 21:25:54 +1100 Jan Schmidt <jan@centricular.com>
+
+ * libs/gst/base/gstdataqueue.c:
+ dataqueue: Fix gst_data_queue_new() description.
+ Reword the function docs, which haven't made any sense since
+ gst_data_queue_new_full() was removed a few years ago.
+
+2014-11-03 18:27:21 +0100 Thibault Saunier <tsaunier@gnome.org>
+
+ * libs/gst/base/gstbasesink.c:
+ basesink: Answer the query position when receiving it from upstream
+ Currently we are just returning FALSE, but we do have the information
+ we should just answer the query the same way as when answering through
+ the GstElement.query vmethod default implementation.
+ https://bugzilla.gnome.org/show_bug.cgi?id=739580
+
+2014-10-22 14:07:09 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstcapsfilter.c:
+ * plugins/elements/gstcapsfilter.h:
+ * tests/check/elements/capsfilter.c:
+ capsfilter: Add an optional delayed caps change mode
+ In this mode we accept previously set filter caps until
+ upstream renegotiates to something that is compatible
+ to the current filter caps.
+ This allows dynamic caps changes in the pipeline even
+ if there is a queue between any conversion element
+ and the capsfilter. Without this we would get not-negotiated
+ errors if timing is bad.
+ https://bugzilla.gnome.org/show_bug.cgi?id=739002
+
+2014-11-02 20:16:53 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gsttoc.c:
+ toc: minor code clean-up
+ And get rid of g_list_prepend/g_list_reverse
+ anti-pattern while we're at it.
+
+2014-11-02 18:51:08 +0000 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * gst/gst.c:
+ gst: ensure GStreamer initialization debug message is displayed
+ The GST_INFO ("initialized GStreamer succesfully") is currently at the end of
+ gst_init_check which isn't guaranteed to be run since GStreamer can be
+ initialized by using init_pre and init_post directly from GOptionContext like
+ gst-launch does. Ensure this message is displayed by moving it to init_post.
+
+2014-11-01 19:56:41 +0000 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * gst/gstbus.c:
+ * libs/gst/base/gstadapter.c:
+ doc: Do not use deprecated gtk-doc 'Rename to' tag
+ GObject introspection GTK-Doc tag "Rename to" has been deprecated, changing to
+ rename-to annotation.
+ https://bugzilla.gnome.org/show_bug.cgi?id=739514
+
+2014-11-01 22:30:30 +0100 Aurélien Zanelli <aurelien.zanelli@darkosphere.fr>
+
+ * tools/gst-inspect.c:
+ gst-inspect: add G_PARAM_DEPRECATED to known flags
+ Display 'deprecated' instead of flag value when using G_PARAM_DEPRECATED
+ in element properties.
+ https://bugzilla.gnome.org/show_bug.cgi?id=739518
+
+2014-10-31 16:10:01 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/tools/gstinspect.c:
+ tests: refactor tools check a little
+ Use an array of constant strings so if arguments get
+ removed from it they are not considered leaked, and
+ valgrind is happy. Still some stuff leaking in GLib
+ though.
+
+2014-10-30 23:14:59 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/libs/bytereader.c:
+ tests: fix out-of-bounds memory access in bytereader unit test
+ Caught by -fsanitize=address / libasan.
+ https://bugzilla.gnome.org/show_bug.cgi?id=739431
+
+2014-10-28 19:16:52 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gst.c:
+ gst: make gst_init() thread-safe
+ Because we can, and there isn't really any
+ reason not to do so.
+
+2014-10-28 09:28:28 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/elements/fdsrc.c:
+ tests: fdsrc: don't ignore return value of write()
+ Causes compiler warnings on some systems.
+
+2014-10-28 00:04:05 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/elements/fdsrc.c:
+ tests: fix fdsrc test corner case
+ Make pipe socket non-blocking, so we don't
+ end up being blocked in a write on the pipe
+ while the src is eos and not reading data
+ any more, and thus we never unblock and never
+ notice that we're done. This would happen
+ quite reliably on the rpi.
+
+2014-10-27 17:56:15 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * common:
+ Automatic update of common submodule
+ From 84d06cd to 7bb2bce
+
+2014-10-25 17:15:42 +0530 Arun Raghavan <arun@accosted.net>
+
+ * gst/gstdebugutils.c:
+ debugutils: Trivial typo fix
+
+2014-10-24 12:51:07 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/base/gstbasesink.c:
+ basesink: don't unlock mutex that is not locked
+ Fixes 'Attempt to unlock mutex that was not locked'
+ warning with newer GLibs when sink is shut down in
+ certain situations. Triggered by the decodebin
+ test_reuse_without_decoders unit test in -base
+ sometimes, esp. on slower machines.
+
+2014-10-22 18:25:26 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * win32/common/libgstcontroller.def:
+ win32: update .def for new _get_type() function for GstControlPoint
+ https://bugzilla.gnome.org/show_bug.cgi?id=737616
+
+2014-09-29 21:10:14 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ timedvaluecontrolsource: Add some signals about values changes
+ In order for user to be able to track changes in the value set in
+ GstTimedValueControlSource the following signals have been added:
+ * value-added
+ * value-removed
+ * value-changed
+ To be able to use a GstControlPoint to be marshalled into the signals,
+ the GstControlPoint structure is now registerd as a GBoxed type.
+ New API:
+ ~~~~~~~
+ * GstTimedValueControlSource::value-added
+ * GstTimedValueControlSource::value-removed
+ * GstTimedValueControlSource::value-added
+ https://bugzilla.gnome.org/show_bug.cgi?id=737616
+
+2014-10-21 13:01:00 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * common:
+ Automatic update of common submodule
+ From a8c8939 to 84d06cd
+
+2014-10-21 12:18:33 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstmessage.c:
+ message: remove duplicate gst_message_get_type() in init
+ Spotted by: Jan Steffens
+
+2014-10-21 12:57:45 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * README:
+ * common:
+ Automatic update of common submodule
+ From 6e75498 to a8c8939
+
+2014-10-20 16:39:38 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * plugins/elements/gstidentity.c:
+ identity: include the actual delta in the message
+ Including the actual delta in the message makes it easy to see, if the new
+ buffer is behind or ahead and how much.
+
+2014-10-18 18:43:43 +1100 Jan Schmidt <jan@centricular.com>
+
+ * gst/gstvalue.c:
+ gstvalue: Tidy initialisation
+ Use some macros to make our value functions setup a bit
+ tidier, and micro-optimise a few reallocs by setting an
+ initial size for the global type arrays.
+
+2014-10-18 17:27:04 +1100 Jan Schmidt <jan@centricular.com>
+
+ * tools/gst-indent:
+ gst-indent: Run indent twice. Once is not idempotent, twice seems to be.
+
+2014-10-16 10:13:14 +0400 Andrei Sarakeev <sarakusha@gmail.com>
+
+ * plugins/elements/gstmultiqueue.c:
+ multiqueue: Wake up any waiting streams if the current one goes EOS
+ Otherwise we might have unlinked streams waiting.
+ https://bugzilla.gnome.org/show_bug.cgi?id=738198
+
+2014-10-17 12:41:04 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gsttypefind.c:
+ typefind: simplify registration code
+ Remove a useless assert (we just instantiated this type). Drop the free'ing of
+ the extension array. As we just created the instance this is always NULL.
+
+2014-10-16 10:55:36 +0200 Felix Schwarz <felix.schwarz@oss.schwarz.eu>
+
+ * docs/pwg/advanced-allocation.xml:
+ * docs/pwg/advanced-clock.xml:
+ * docs/pwg/advanced-events.xml:
+ * docs/pwg/advanced-qos.xml:
+ * docs/pwg/advanced-tagging.xml:
+ docs: pwd: fix typos
+ https://bugzilla.gnome.org/show_bug.cgi?id=738612
+
+2014-10-11 19:28:21 +0200 Linus Svensson <linusp.svensson@gmail.com>
+
+ * tests/check/gst/gstbus.c:
+ tests: Add a test for removing a bus watch
+ https://bugzilla.gnome.org/show_bug.cgi?id=735195
+
+2014-08-19 23:28:52 +0200 Linus Svensson <linusp.svensson@gmail.com>
+
+ * gst/gstbus.c:
+ * gst/gstbus.h:
+ * tests/check/gst/gstbus.c:
+ * win32/common/libgstreamer.def:
+ bus: Add a function to remove a bus watch
+ If a bus watch is added to the non default main context it's not
+ possible to remove it using g_source_remove().
+ Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=735195
+
+2014-10-08 22:51:56 +0530 Arun Raghavan <arun@accosted.net>
+
+ * gst/gstevent.h:
+ docs: Update GstQOSType documentation a bit
+ Correction for who is producing data too fast, and some other minor
+ clarifications.
+ https://bugzilla.gnome.org/show_bug.cgi?id=738166
+
+2014-10-08 16:03:20 +0200 Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+
+ * docs/pwg/advanced-allocation.xml:
+ * docs/pwg/advanced-qos.xml:
+ docs: pwg: fix two typos
+ https://bugzilla.gnome.org/show_bug.cgi?id=738153
+
+2014-10-08 15:37:37 +0200 Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+
+ * docs/pwg/advanced-negotiation.xml:
+ docs: pwg: fix typo in 'Dynamic negotiation' section
+ The point of this example is to show how to set caps
+ on the source pad once it has been set on the sink pad.
+ So, in passthrough mode, the caps is just copied to the
+ source pad.
+ https://bugzilla.gnome.org/show_bug.cgi?id=738153
+
+2014-10-08 09:37:41 -0700 Aleix Conchillo Flaqué <aleix@oblong.com>
+
+ * plugins/elements/gstmultiqueue.c:
+ multiqueue: don't lock multiqueue when pushing serialized queries
+ If we are pushing a serialized query into a queue and the queue is
+ filled, we will end in a deadlock. We need to release the lock before
+ pushing and acquire it again afterward.
+ https://bugzilla.gnome.org/show_bug.cgi?id=737794
+
+2014-10-08 01:33:51 +1100 Jan Schmidt <jan@centricular.com>
+
+ * libs/gst/base/gstcollectpads.c:
+ collectpads: Use GST_PTR_FORMAT in debug to output buffer details
+ Use %GST_PTR_FORMAT instead of %p in debug output so all the buffer
+ details are output
+
+2014-10-06 13:38:21 +0200 Nicolas Huet <nicolas.huet@parrot.com>
+
+ * gst/gstsystemclock.c:
+ systemclock: fix multi-thread entry status issue
+ Running two threads, one executing the timer and one unscheduling it, the
+ unscheduled status set by the second thread is sometimes overwritten by the
+ first one.
+ https://bugzilla.gnome.org/show_bug.cgi?id=737999
+
+2014-10-03 14:04:58 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstinputselector.c:
+ inputselector: fix compilation
+
+2014-10-03 14:44:48 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * plugins/elements/gstinputselector.c:
+ input-selector: extract some common code into helpers
+
+2014-10-03 14:01:59 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * plugins/elements/gstinputselector.c:
+ input-selector: small code cleanups
+ Rename TIMESTAMP -> PTS. Move a var down to the scope where it is used. Use
+ g_queue_free_full().
+
+2014-10-03 13:47:42 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * plugins/elements/gstinputselector.c:
+ * plugins/elements/gstinputselector.h:
+ inputselector: fix printf format
+ The padcount is uint. Also add comments to the instance vars.
+
+2014-10-02 03:30:24 +0200 Matej Knopp <matej.knopp@gmail.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: don't leak caps in gst_base_parse_process_streamheader
+ https://bugzilla.gnome.org/show_bug.cgi?id=737762
+
+2014-10-03 13:14:25 +0200 Matej Knopp <matej.knopp@gmail.com>
+
+ * tests/check/libs/baseparse.c:
+ tests: baseparse: set_sink_caps vfunc should't take ownership of the caps
+ https://bugzilla.gnome.org/show_bug.cgi?id=737762
+
+2014-10-03 09:57:37 +0100 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * plugins/elements/gstfakesrc.c:
+ fakesrc: mark the pattern property as unused
+ Revert the previous commit which removes the pattern property of fakesrc because
+ doing so will break ABI. Bringing the property back but marking it as unused
+ in the property string.
+ https://bugzilla.gnome.org/show_bug.cgi?id=737683
+
+2014-10-03 09:01:15 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ Revert "baseparse: don't leak caps in gst_base_parse_process_streamheader"
+ This reverts commit 5e8b4bf085180f7a4c7ae6ec0f525baeaedd4df8.
+ This causes refcounting criticals in the baseparse unit test.
+
+2014-10-02 13:45:34 +0100 Luis de Bethencourt <luis.bg@samsung.com>
+
+ * plugins/elements/gstfakesrc.c:
+ * plugins/elements/gstfakesrc.h:
+ fakesrc: removing unused pattern option
+ Eventhough the "pattern" property of fakesrc can be set, it is never used. The
+ only pattern supported is the default 0x00 -> 0xff, and if a pattern is set by
+ the user it is ignored. Removing the unused property and variable.
+ https://bugzilla.gnome.org/show_bug.cgi?id=737683
+
+2014-10-02 14:55:22 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstqueue.c:
+ queue: Add missing break in switch
+
+2014-10-02 11:00:32 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstqueue.c:
+ queue: update segment position on GAP events to calculate levels properly
+ https://bugzilla.gnome.org/show_bug.cgi?id=737498
+
+2014-10-02 10:57:43 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstqueue2.c:
+ queue2: update segment position on GAP events to calculate levels properly
+ https://bugzilla.gnome.org/show_bug.cgi?id=737498
+
+2014-09-27 20:10:34 +0200 Matej Knopp <matej.knopp@gmail.com>
+
+ * plugins/elements/gstmultiqueue.c:
+ multiqueue: update segment position on GAP events to calculate levels properly
+ https://bugzilla.gnome.org/show_bug.cgi?id=737498
+
+2014-10-02 03:30:24 +0200 Matej Knopp <matej.knopp@gmail.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: don't leak caps in gst_base_parse_process_streamheader
+ https://bugzilla.gnome.org/show_bug.cgi?id=737762
+
+2014-10-02 10:13:28 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstcapsfilter.c:
+ capsfilter: Push pending events before a buffer also if upstream never configured caps but we have srcpad caps already
+ Otherwise we never send pending events downstream that arrive after we
+ configured caps on the srcpad.
+ https://bugzilla.gnome.org/show_bug.cgi?id=737735
+
+2014-09-29 17:48:29 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gsturi.c:
+ uri: Don't unconditionally use g_list_copy_deep()
+ We don't depend on GLib 2.34 yet and just for this seems a bit useless.
+ https://bugzilla.gnome.org/show_bug.cgi?id=737584
+
+2014-09-29 16:22:47 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * configure.ac:
+ * gst/gsturi.c:
+ uri: Include our own BSD licensed copy of strcasestr() for Windows and others
+
+2014-09-29 15:54:37 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gsturi.c:
+ uri: Fix compiler warnings with gcc
+ These are actually not true.
+ gsturi.c: In function '_gst_uri_string_to_table.constprop':
+ gsturi.c:1316:27: error: 'pct_kv_sep' may be used uninitialized in this function [-Werror=maybe-uninitialized]
+ for (next_sep = strcasestr (value, pct_kv_sep); next_sep;
+ ^
+ gsturi.c:1283:24: error: 'pct_part_sep' may be used uninitialized in this function [-Werror=maybe-uninitialized]
+ next_sep = strcasestr (next_sep + 1, pct_part_sep)) {
+ ^
+
+2014-09-29 12:19:35 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gsturi.c:
+ uri: Fix memory leak in gst_uri_join()
+ The merged path segments are a deep-copied list and we need to free the
+ contained strings too instead of just the list nodes themselves.
+
+2014-07-31 22:18:53 +0100 David Waring <david.waring@rd.bbc.co.uk>
+
+ * docs/gst/gstreamer-docs.sgml:
+ * docs/gst/gstreamer-sections.txt:
+ * gst/gsturi.c:
+ * gst/gsturi.h:
+ * tests/check/gst/gsturi.c:
+ * win32/common/libgstreamer.def:
+ GstUri: Add GstUri miniobject to handle URIs in an RFC 3986 compliant fashion
+ https://bugzilla.gnome.org/show_bug.cgi?id=725221
+
+2014-09-27 13:57:42 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * scripts/gst-uninstalled:
+ scripts: add gst-rpicamsrc to gst-uninstalled
+
+2014-09-25 21:21:09 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gstelement.c:
+ * gst/gsterror.c:
+ * gst/gstevent.c:
+ * gst/gstregistry.c:
+ * gst/gststructure.c:
+ * gst/gsttaglist.c:
+ * gst/gstvalue.c:
+ * libs/gst/base/gstbasesink.c:
+ * libs/gst/base/gstbasesrc.c:
+ * libs/gst/check/gstcheck.c:
+ * plugins/elements/gstfilesrc.c:
+ * tests/check/tools/gstinspect.c:
+ * tools/gst-inspect.c:
+ fixme: bump leftover 0.11 fixme comments
+
+2014-09-25 21:04:23 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gstevent.c:
+ event: 'newsegment' to 'segment' in the docs
+ Brings the api-docs in sync with the 1.0 api rename.
+
+2014-09-25 20:23:31 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: move the quick return up
+ Don't assign local vars if we skip anyway. Add logging for failure conditio
+
+2014-09-25 19:01:52 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * Makefile.am:
+ * common:
+ tests: parallelise 'make valgrind'
+ Use $(MAKE) instead of 'make' inside the Makefile,
+ otherwise the make will run as if -j1 had been
+ specified and complain about the job server not
+ being available, and with $(MAKE) in inherits the
+ parent make's settings it seems.
+ Upgrade common submodule for parallel check-valgrind.
+ Let this settle a bit before upgrading the other modules.
+
+2014-09-25 18:57:32 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * win32/common/libgstbase.def:
+ win32: update .def file
+ It's sorted. If it's unsorted, make check-exports fails.
+
+2014-09-25 18:55:03 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstinfo.c:
+ info: remove confusing warning about running under valgrind
+ We're not actually doing anything differently anywhere when
+ we detect that we're running under valgrind, so let's not
+ print that confusing message that makes people wonder how
+ they can switch it off so they can valgrind the normal
+ code paths. Seeing that we're not doing that nor have done
+ so in the last 10 years we might just as well remove the
+ entire check actually.
+
+2014-09-25 16:21:51 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/check/libs/baseparse.c:
+ tests: fix caps leak in baseparse unit test
+
+2014-09-25 14:54:23 +0200 Jonas Holmberg <jonashg@axis.com>
+
+ * docs/libs/gstreamer-libs-sections.txt:
+ * libs/gst/base/gstflowcombiner.c:
+ * libs/gst/base/gstflowcombiner.h:
+ * tests/check/libs/flowcombiner.c:
+ * win32/common/libgstbase.def:
+ flowcombiner: add a gst_flow_combiner_clear() method
+ https://bugzilla.gnome.org/show_bug.cgi?id=737359
+ API: gst_flow_combiner_clear()
+
+2014-09-24 10:11:54 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ * scripts/gst-uninstalled:
+ scripts: Handle gst-python in gst-uninstalled
+ https://bugzilla.gnome.org/show_bug.cgi?id=709082
+
+2014-06-03 14:23:30 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ * plugins/elements/gstcapsfilter.c:
+ capsfilter: Remove EOS event from pending_event list on FLUSH_STOP
+ https://bugzilla.gnome.org/show_bug.cgi?id=709868
+
+2014-09-22 14:27:05 +0100 William Manley <will@williammanley.net>
+
+ * gst/gstbuffer.c:
+ docs: Fix GstBuffer typo "memory bock" -> "memory block"
+ https://bugzilla.gnome.org/show_bug.cgi?id=737117
+
+2014-09-22 17:27:31 +0100 William Manley <will@williammanley.net>
+
+ * gst/gstbuffer.c:
+ docs: Improve gst_buffer_get_meta() to clear up confusion
+ I was confused by the existence of `gst_buffer_get_meta` as it suggested
+ to me that you should only attach one of any type of GstMeta to a buffer.
+ It's perfectly fine to attach multiple from a single API so I'm
+ documenting that here.
+ https://bugzilla.gnome.org/show_bug.cgi?id=737129
+
+2014-09-22 19:05:32 +0200 Marcin Kolny <marcin.kolny@flytronic.pl>
+
+ * gst/gstdatetime.h:
+ datetime: added missing include directives
+ https://bugzilla.gnome.org/show_bug.cgi?id=737133
+
+2014-09-23 14:31:29 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ * plugins/elements/gstqueue.c:
+ queue: Do not forget to release the QUEUE_LOCK in the out_flow_error path
+ Avoiding deadlocks!
+
+2014-09-23 12:53:18 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * libs/gst/base/gstbasesrc.h:
+ docs: fix a small contradition in the docs
+ The vmethod get_size() shall return the size in 'format' as configured by
+ _set_format().
+
+2014-09-22 09:33:04 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ * plugins/elements/gstqueue.c:
+ queue: Do not hold GST_QUEUE_LOCK while posting ERROR messages
+ This might create deadlocks and we need to avoid holding element
+ specific lock while posting messages
+ For example a deadlock will happen if while posting the message,
+ someone connected on the bus (sync) tries to DOT the pipeline.
+ https://bugzilla.gnome.org/show_bug.cgi?id=737102
+
+2014-09-19 12:02:46 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * plugins/elements/gstqueue2.c:
+ * plugins/elements/gstqueue2.h:
+ queue2: do not post buffering messages holding the lock
+ It might cause deadlocks to post messages while holding the queue2
+ lock. To avoid this a new boolean flag is set whenever a new
+ buffering percent is found. The message is posted after the lock
+ is released.
+ To make sure the buffering messages are posted in the right order, messages
+ are posted holding another lock. This prevents 2 threads trying to post
+ messages at the same time.
+ https://bugzilla.gnome.org/show_bug.cgi?id=736969
+
+2014-09-19 09:42:10 +0530 Ravi Kiran K N <ravi.kiran@samsung.com>
+
+ * gst/gsturi.c:
+ gsturi: Remove unnecessary code
+ gst_uri_handler_set_uri() function has new_uri, location and colon
+ are not necessary, they can be removed.
+ https://bugzilla.gnome.org/show_bug.cgi?id=736877
+
+2014-09-19 00:33:58 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * docs/pwg/advanced-tagging.xml:
+ * docs/pwg/intro-basics.xml:
+ docs: pwg: fix some links to the API docs
+ https://bugzilla.gnome.org/show_bug.cgi?id=736762
+
+2014-09-18 18:55:47 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstfilesrc.c:
+ filesrc: remove FIXME
+ https://bugzilla.gnome.org/show_bug.cgi?id=735878
+
+2014-09-17 21:49:18 -0400 Olivier Crête <olivier.crete@collabora.com>
+
+ * gst/gst.c:
+ gst: Fix spelling error
+ Thank to Adrian Owen for reporting this error.
+ https://bugzilla.gnome.org/show_bug.cgi?id=736839
+
+2014-09-17 17:17:10 +0200 Ognyan Tonchev <ognyan@axis.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ typefindelement: do not leak sticky events in flush_stop
+ https://bugzilla.gnome.org/show_bug.cgi?id=736813
+
+2014-09-12 14:42:23 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gstinfo.c:
+ info: avoid global variable for log_file
+ Use user_data to pass the log_file handle to the logger-function.
+ If one wants to change the log target (e.g. GST_DEBUG_FILE), simply call
+ gst_debug_remove_log_function() and re-add the handler with the new log-target
+ using gst_debug_add_log_function ().
+
+2014-09-16 13:48:18 +0200 Ognyan Tonchev <ognyan@axis.com>
+
+ * gst/gstevent.c:
+ event: add annotations to gst_event_parse_toc_select()
+ https://bugzilla.gnome.org/show_bug.cgi?id=736739
+
+2014-09-11 18:01:58 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * plugins/elements/gstmultiqueue.c:
+ * plugins/elements/gstmultiqueue.h:
+ multiqueue: do not post messages holding the lock
+ It might cause deadlocks to post messages while holding the multiqueue
+ lock. To avoid this a new boolean flag is set whenever a new buffering percent
+ is found. The message is posted after the lock can be released.
+ To make sure the buffering messages are posted in the right order, messages
+ are posted holding another lock. This prevents 2 threads trying to post
+ messages at the same time.
+ https://bugzilla.gnome.org/show_bug.cgi?id=736295
+
+2014-09-16 16:07:40 +0200 Wim Taymans <wtaymans@redhat.com>
+
+ * docs/pwg/other-base.xml:
+ docs: fix typo
+
+2014-09-16 12:17:48 +0200 Ognyan Tonchev <ognyan@axis.com>
+
+ * gst/gstquery.c:
+ query: Add annotations to gst_query_add_allocation_pool()
+ https://bugzilla.gnome.org/show_bug.cgi?id=736736
+
+2014-09-15 16:38:17 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
+
+ * libs/gst/base/gstbasesrc.c:
+ basesrc: handle reference in set_allocation rather than in prepare_allocation
+ Otherwise we can forget to unref objects in error cases.
+ https://bugzilla.gnome.org/show_bug.cgi?id=736680
+
+2014-09-15 13:06:40 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * libs/gst/check/gstcheck.c:
+ check: Use the name parameter of gst_check_setup_src_pad_by_name() and the sink variant
+ This was hardcoded to "sink" / "src" by accident in previous refactoring.
+
+2014-09-13 20:12:52 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstcapsfilter.c:
+ * plugins/elements/gstdownloadbuffer.c:
+ * plugins/elements/gstfakesink.c:
+ * plugins/elements/gstinputselector.c:
+ * plugins/elements/gstmultiqueue.c:
+ * plugins/elements/gstoutputselector.c:
+ * plugins/elements/gstqueue.c:
+ * plugins/elements/gstqueue2.c:
+ * plugins/elements/gstvalve.c:
+ coreelements: mark properties with MUTABLE_PLAYING
+
+2014-09-11 15:52:32 +0200 Thibault Saunier <tsaunier@gnome.org>
+
+ * docs/libs/gstreamer-libs-sections.txt:
+ * libs/gst/check/Makefile.am:
+ * libs/gst/check/gstcheck.c:
+ * libs/gst/check/gstcheck.h:
+ check: Add a function to check destruction of objects
+ Add a method letting people to ensure that unreffing one object
+ leads to its destruction, and possibly the destruction of more object
+ (think destruction of a GstBin etc...).
+ https://bugzilla.gnome.org/show_bug.cgi?id=736477
+
+2014-09-12 14:10:40 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tools/gst-inspect.c:
+ tools: gst-inspect: don't list pad functions
+ Don't print all the different pad functions, it's just
+ confusing and no one has ever needed to know this for
+ anything ever anyway, it's just useless information.
+ Besides, we also label the default implementations as
+ 'custom' implementations (the code that tries to
+ prevent that doesn't actually work it seems).
+ https://bugzilla.gnome.org/show_bug.cgi?id=736377
+
+2014-09-12 15:22:19 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstpad.c:
+ pad: Make sure the buffer to get/pull_range() has at least the requested size
+ https://bugzilla.gnome.org/show_bug.cgi?id=735861
+
+2014-09-05 18:36:02 +0000 Tiago <tiagokatcipis@gmail.com>
+
+ * libs/gst/check/gstcheck.c:
+ check: Adding documentation to the gst_check_setup_sink_pad_by_name function
+ https://bugzilla.gnome.org/show_bug.cgi?id=734190
+
+2014-09-10 14:53:00 +0200 Ognyan Tonchev <ognyan@axis.com>
+
+ * gst/gstquery.c:
+ query: add annotations to gst_query_set_nth_allocation_pool()
+ https://bugzilla.gnome.org//show_bug.cgi?id=736424
+
+2014-09-11 09:35:17 +0200 Rémi Lefèvre <remi.lefevre@parrot.com>
+
+ * plugins/elements/gstvalve.c:
+ valve: fix typo in description
+ https://bugzilla.gnome.org/show_bug.cgi?id=736455
+
+2014-09-09 20:43:02 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/base/gstbaseparse.h:
+ baseparse: minor docs fix
+
+2014-09-03 17:38:16 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstdevicemonitor.c:
+ devicemonitor: fix typo in sample code in docs
+ https://bugzilla.gnome.org/show_bug.cgi?id=735975
+
+2014-08-25 11:34:48 +0200 Wim Taymans <wtaymans@redhat.com>
+
+ * tests/check/gst/gstpad.c:
+ tests: add flush-stop on inactive pad test
+ Check that pushing flush-stop on an inactive pad does not clear the
+ flushing flag.
+
+2014-08-21 15:49:17 +0200 Wim Taymans <wtaymans@redhat.com>
+
+ * gst/gstpad.c:
+ pad: don't accept flush-stop on inactive pads
+ Inactive pads should at all times have the flushing flag set. This means
+ that when we get a flush-stop on an inactive pad we must ignore it.
+ On sinkpads, make this more explicit. We used to not clear the flush
+ flag but remove the events and then return an error because the flushing
+ flag was set. Now just simply refuse the event without doing anything.
+ On srcpads, check that we are trying to push a flush-stop event and
+ refuse it. We would allow this and mark the srcpad as non-flushing
+ anymore.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=735357
+
+2014-08-27 17:06:57 +0530 Ravi Kiran K N <ravi.kiran@samsung.com>
+
+ * plugins/elements/gstoutputselector.c:
+ output-selector: Send all events to active src pad and EOS to all src pads
+ Fixes tests/icles/output-selector-test
+ https://bugzilla.gnome.org/show_bug.cgi?id=729811
+
+2014-08-28 17:24:56 +0200 Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+
+ * docs/manual/advanced-dataaccess.xml:
+ manual: fix typo in advanced-dataaccess.xml
+ https://bugzilla.gnome.org/show_bug.cgi?id=735609
+
+2014-08-26 20:14:40 +0200 Arnaud Vrac <avrac@freebox.fr>
+
+ * gst/gstbuffer.c:
+ buffer: do not touch memory tag flag when copying buffer flags
+ The tag memory flag will be set later if the memory is also copied. This
+ patch avoids buffers being freed needlessly in bufferpools.
+ https://bugzilla.gnome.org/show_bug.cgi?id=735574
+
+2014-07-15 16:06:49 +0200 Linus Svensson <linusp.svensson@gmail.com>
+
+ * gst/gstbus.c:
+ bus: gst_bus_add_watch() can return 0 on error
+ Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=735195
+
+2014-08-25 13:44:30 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * libs/gst/base/gstbaseparse.c:
+ baseparse: handle streamheaders by prepending them to the stream
+ Add a first_buffer boolean state flag to have baseparse do actions
+ before pushing data. This is used to check the caps for streamheader
+ buffers that are prepended to the stream, but only if the first buffer
+ isn't already marked with the _HEADER flag. In this case, it is assumed
+ that the _HEADER marked buffer is the same as the streamheader.
+ https://bugzilla.gnome.org/show_bug.cgi?id=735070
+
+2014-08-27 11:01:01 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstconcat.c:
+ concat: Allow seeking on the currently playing stream
+ This is consistent with the stream time reporting.
+
+2014-08-23 12:24:27 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstpad.h:
+ pad: add g-i 'transfer full' annotations to chain and chain_list functions
+ https://bugzilla.gnome.org/show_bug.cgi?id=735210
+
+2014-08-22 10:32:38 +0200 Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
+
+ * gst/gstpad.h:
+ pad: annotate GstPadEventFunction event with 'transfer full'
+ The callback is supposed to take ownership of the event so
+ best to be explicit about it.
+ https://bugzilla.gnome.org/show_bug.cgi?id=735210
+
+2014-08-20 12:55:51 +0200 Linus Svensson <linussn@axis.com>
+
+ * tests/check/elements/queue.c:
+ tests: add test that triggers deadlock in state change of queue
+ When receiving FLASH_STOP in a state transition to READY, a queue
+ element can end up with an active task that will never end.
+ https://bugzilla.gnome.org/show_bug.cgi?id=734688
+
+2014-08-21 14:02:16 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstqueue.c:
+ queue: fix race when flush-stop event comes in whilst shutting down
+ Don't re-start the queue push task on the source pad when a
+ flush-stop event comes in and we're in the process of shutting
+ down, otherwise that task will never be stopped again.
+ When the element is set to READY state, the pads get de-activated.
+ The source pad gets deactivated before the queue's own activate_mode
+ function on the source pads gets called (which will stop the thread),
+ so checking whether the pad is active before re-starting the task on
+ receiving flush-stop should be fine. The problem would happen when the
+ flush-stop handler was called just after the queue's activate mode
+ function had stopped the task.
+ Spotted and debugged by Linus Svensson <linux.svensson@axis.com>
+ https://bugzilla.gnome.org/show_bug.cgi?id=734688
+
+2014-08-06 14:01:09 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * docs/libs/gstreamer-libs-sections.txt:
+ * libs/gst/base/gstbytereader.c:
+ * libs/gst/base/gstbytereader.h:
+ * tests/check/libs/bytereader.c:
+ * win32/common/libgstbase.def:
+ bytereader: add gst_byte_reader_peek_sub_reader() and _get_sub_reader()
+ Adds API to get or peek a sub-reader of a certain size from
+ a given byte reader. This is useful when parsing nested chunks,
+ one can easily get a byte reader for a sub-chunk and make
+ sure one never reads beyond the sub-chunk boundary.
+ API: gst_byte_reader_peek_sub_reader()
+ API: gst_byte_reader_get_sub_reader()
+
+2014-07-25 16:39:40 +0200 Aurélien Zanelli <aurelien.zanelli@parrot.com>
+
+ * libs/gst/base/gstbasesrc.c:
+ docs: make explicit that the caps passed to gst_base_src_set_caps() are 'tranfer none'
+ https://bugzilla.gnome.org/show_bug.cgi?id=733741
+
+2014-08-14 18:53:40 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * plugins/elements/gstinputselector.c:
+ inputselector: always proxy caps query
+ Otherwise it would only be proxied for the active pad which can lead
+ upstream to use an incompatible caps for the downstream element.
+ Even if a reconfigure event is sent upstream when the pad is activated, this
+ will save the caps reconfiguration if it is already using an acceptable caps.
+
+2014-08-14 14:37:56 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/base/gstdataqueue.h:
+ base: and fix build with new g-i again
+
+2014-08-14 14:25:06 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/base/gstdataqueue.h:
+ base: remove g-i annotation that makes older g-ir-scanner crash
+ Just remove one skip annotation that causes this:
+ ** (g-ir-compiler:12458): ERROR **: Caught NULL node, parent=empty
+ with older g-i versions such as 1.32.1.
+
+2014-08-13 14:12:00 +0200 Philippe Normand <philn@igalia.com>
+
+ * gst/gstbus.c:
+ bus: destroy signal watch from the context it was mapped to
+ Don't rely on g_source_remove() because it operates on the main
+ context. If a signal watch was added to a new thread-default context
+ g_source_remove() would have no effect. So simply use
+ g_source_destroy() to avoid this problem.
+ Additionally the source_id was removed from GstBusPrivate because it
+ was redundant with the signal watch GSource also stored in that
+ structure.
+ https://bugzilla.gnome.org/show_bug.cgi?id=734716
+
+2014-08-07 12:18:04 +0200 Thibault Saunier <thibault.saunier@collabora.com>
+
+ * plugins/elements/gstmultiqueue.c:
+ multiqueue: Not post BUFFERING message if one of the singlequeue doesn't need it
+ Imagine the following 'pipeline'
+ --------------
+ p1/| 'fullqueue' |--- 'laggy' downstream
+ --------- / | |
+ -| demuxer | | multiqueue |
+ --------- \ | |
+ p2\| 'emptyqueue' |--- 'fast' downstream
+ --------------
+ In the case downstream of one single queue (fullqueue) has (a lot of) latency
+ (for example for reverse playback with video), we can end up having the other
+ SingleQueue (emptyqueue) emptied, before that fullqueue gets
+ unblocked. In the meantime, the demuxer tries to push on fullqueue, and
+ is blocking there.
+ In that case the current code will post a BUFFERING message on the bus when
+ emptyqueue gets emptied, that leads to the application setting the pipeline state to
+ PAUSED. So now we end up in a situation where 'laggy downstream' is
+ prerolled and will not unblock anymore because the pipeline is set to
+ PAUSED, the fullequeue does not have a chance to be emptied and
+ the emptyqueue can not get filled anymore so no more BUFERRING message
+ will be posted and the pipeline is stucked in PAUSED for the eternity.
+ Making sure that we do not try to "buffer" if one of the single queue
+ does not need buffering, prevents this situtation from happening though it lets the
+ oportunity for buffering in all other cases.
+ That implements a new logic where we need all singlequeue to need
+ buffering for the multiqueue to actually state buffering is needed,
+ taking the maximum buffering of the single queue as the reference point.
+ https://bugzilla.gnome.org/show_bug.cgi?id=734412
+
+2014-08-13 13:01:23 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstmultiqueue.c:
+ multiqueue: Only handle flow returns < EOS as errors, not e.g. flushing
+
+2014-08-13 12:40:37 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstbin.c:
+ bin: Use allow-none instead of nullable until we depend on a new enough GI version
+
+2014-08-13 12:39:47 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstbin.c:
+ bin: gst_bin_new() can accept NULL as name
+
+2014-08-13 12:37:08 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstelement.c:
+ element: Clarify docs about gst_element_get_request_pad() and remove deprecation part
+ This function is not really pad or slow for the common case of requesting a
+ pad with the name of the template. It is only slower if you to name your pads
+ directly instead of letting the element handle it.
+ Also there's no reason to deprecate it in favor of a more complicated function
+ for the common case.
+
+2014-08-13 12:20:51 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstqueue2.c:
+ queue2: Post errors if we receive EOS after downstream reported an error
+ There will be no further data flow that would allow us to propagate the
+ error upstream, causing nobody at all to post an error message.
+
+2014-08-13 12:15:03 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstqueue.c:
+ queue: Post errors when receiving EOS after downstream returned an error
+ There might be no further data flow that would allow us to propagate the
+ error upstream, causing nobody to post an error at all.
+
+2014-08-13 12:10:39 +0300 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/gstmultiqueue.c:
+ multiqueue: Post errors ourselves if they are received after EOS
+ After EOS there will be no further buffer which could propagate the
+ error upstream, so nothing is going to post an error message and
+ the pipeline just idles around.
+
+2014-08-12 20:03:06 +0530 Arun Raghavan <arun@accosted.net>
+
+ * gst/gstpad.c:
+ docs: Trivial pad documentation fix
+ Presumably a copy-pasto.
+
+2014-08-08 09:54:02 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * tests/check/Makefile.am:
+ * tests/check/elements/.gitignore:
+ * tests/check/elements/concat.c:
+ concat: Add unit tests for concat element
+
+2014-08-08 09:13:50 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * docs/plugins/gstreamer-plugins-sections.txt:
+ * docs/plugins/gstreamer-plugins.hierarchy:
+ * docs/plugins/inspect/plugin-coreelements.xml:
+ * plugins/elements/gstconcat.c:
+ concat: Add documentation and integrate into documentation build
+
+2014-08-07 14:42:44 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * plugins/elements/Makefile.am:
+ * plugins/elements/gstconcat.c:
+ * plugins/elements/gstconcat.h:
+ * plugins/elements/gstelements.c:
+ concat: Add new element that concatenates multiple streams
+ https://bugzilla.gnome.org/show_bug.cgi?id=734470
+
+2014-08-09 10:57:56 -0300 Thiago Santos <thiagoss@osg.samsung.com>
+
+ * tests/check/gst/gstcaps.c:
+ tests: caps: add check for caps with features intersection
+ Checks that a caps without features doesn't intersect with
+ one that has features
+
+2014-08-07 14:54:37 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * tests/examples/controller/audio-example.c:
+ * tests/examples/controller/text-color-example.c:
+ examples: controller: fix typo in comments
+
+2014-08-06 13:58:22 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * libs/gst/base/gstbytereader.h:
+ bytereader: use unchecked inline variant for get_remaining in more places
+ We've already done the g_return_*_if_fail (reader != NULL)
+ dance in those places, so no need to do it again.
+
+2014-08-06 14:43:08 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstutils.c:
+ utils: Ghostpads can be request pads too but check if the pad has a template
+ Otherwise we dereference NULL in some cases and crash.
+
+2014-08-06 12:34:42 +0200 Sebastian Rasmussen <sebras@hotmail.com>
+
+ * docs/manual/appendix-programs.xml:
+ * tests/check/gst/gstbin.c:
+ * tests/check/pipelines/parse-launch.c:
+ * tests/examples/launch/mp3parselaunch.c:
+ tests: Add missing unrefs of objects after use
+ Unreffing the objects returned by gst_bin_get_by_name() and
+ gst_pipeline_get_use() were missing in several tests, so add these.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=734345
+
+2014-08-06 12:55:57 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * tests/check/gst/gstutils.c:
+ utils: Fix unititialized variable compiler warning
+
+2014-07-13 15:31:08 +0200 Sebastian Rasmussen <sebras@hotmail.com>
+
+ * tests/check/gst/gstutils.c:
+ tests: Add test verifying gst_element_link_pads_full()
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=733119
+
+2014-07-13 15:28:32 +0200 Sebastian Rasmussen <sebras@hotmail.com>
+
+ * gst/gstutils.c:
+ utils: Unref/release pads in error cases when linking pads
+ Previously gst_element_link_pads_full() forgot to unreference or release
+ request pads in several error cases. Also comments were added mentioning
+ why releasing is not necessary in some places.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=733119
+
+2014-08-01 17:27:39 -0300 Tiago Cesar Katcipis <tiago.katcipis@digitro.com.br>
+
+ * libs/gst/check/gstcheck.c:
+ gstcheck: add docs for gst_check_setup_src_pad_by_name()
+ https://bugzilla.gnome.org/show_bug.cgi?id=734142
+
+2014-07-31 18:32:03 +0200 Edward Hervey <edward@collabora.com>
+
+ * Makefile.am:
+ * common:
+ Makefile: Add usage of build-checks step
+ Allows building checks without running them
+
+2014-07-30 15:46:22 +0300 Mohammed Sameer <msameer@foolab.org>
+
+ * gst/gstbufferpool.c:
+ bufferpool: Add missing error checking to default_alloc_buffer()
+ default_alloc_buffer() calls gst_buffer_new_allocate() but does not check for
+ failed allocation.
+ This patch makes default_alloc_buffer() return an error (GST_FLOW_ERROR) if
+ buffer allocation fails.
+ https://bugzilla.gnome.org/show_bug.cgi?id=733974
+
+2014-07-29 14:21:33 -0300 Thiago Santos <ts.santos@osg.sisa.samsung.com>
+
+ * plugins/elements/gstmultiqueue.c:
+ multiqueue: avoid using infinite buffers limit if finite is requested
+ If the current max-buffers limit it infinite and a finite value is
+ requested, switch to the MAX (requested, current-value) to set some
+ limit but not below what we know that we've needed so far.
+ https://bugzilla.gnome.org/show_bug.cgi?id=733637
+ https://bugzilla.gnome.org/show_bug.cgi?id=733837
+
+2014-07-24 22:02:58 +0200 Sebastian Rasmussen <sebras@hotmail.com>
+
+ * gst/parse/grammar.y:
+ parse: Unref reference to enclosing bins
+ Previously all reference to enclosing bins of an element were leaked
+ when doing delaying setting a property.
+ Fixes https://bugzilla.gnome.org/show_bug.cgi?id=733697
+
+2014-07-27 02:37:08 +0000 Руслан Ижбулатов <lrn1986@gmail.com>
+
+ * tools/gst-launch.c:
+ gst-launch: Support SIGINT (Ctrl+C) on W32
+ W32 has no SIGINT, but it does have SetConsoleCtrlHandler(), which sets up
+ a handler for Ctrl+C.
+ https://bugzilla.gnome.org/show_bug.cgi?id=733814
+
+2014-07-27 03:06:16 +0000 Руслан Ижбулатов <lrn1986@gmail.com>
+
+ * gst/gstpoll.c:
+ poll: Prevent false-negative from WAKE_EVENT() on W32
+ SetEvent() seems to not call SetLastError(0) internally, so checking last
+ error after calling SetEvent() may return the error from an earlier W32 API
+ call. Fix this by calling SetlastError(0) explicitly.
+ Currently WAKE_EVENT() code is cramped into a macro and doesn't look to be
+ entirely correct. Particularly, it does not check the return value of
+ SetEvent(), only the thread-local W32 error value. It is likely that SetEvent()
+ actually just returns non-zero value, but the code mistakenly thinks that the
+ call has failed, because GetLastError() seems to indicate so.
+ https://bugzilla.gnome.org/show_bug.cgi?id=733805
+
+2014-07-26 14:42:54 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gst.h:
+ gst: include atomicqueue.h again in gst.h
+ It's a public header of gstreamer core, so #include <gst/gst.h>
+ should make the API available.
+
+2014-07-25 11:45:56 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gsttypefindelement.c:
+ typefindelement: remove prototype for function that no longer exists
+
+2014-07-24 14:39:11 -0300 Thiago Santos <ts.santos@osg.sisa.samsung.com>
+
+ * libs/gst/base/gstbytereader.c:
+ * libs/gst/base/gstbytereader.h:
+ * tests/check/libs/bytereader.c:
+ * win32/common/libgstbase.def:
+ bytereader: add gst_byte_reader_masked_scan_uint32_peek
+ Adds gst_byte_reader_masked_scan_uint32_peek just like
+ GstAdapter has a _peek and non _peek version
+ Upgraded tests to check that the returned value is correct in the
+ _peek version
+ API: gst_byte_reader_masked_scan_uint32_peek
+ https://bugzilla.gnome.org/show_bug.cgi?id=728356
+
+2014-06-26 14:09:25 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/gstbufferlist.c:
+ bufferlist: pre-allocate buffer array in one go with the buffer list
+ We can now create and free a buffer list with one slice alloc/free
+ call in most cases, instead of one slice alloc/free for the list,
+ one slice alloc/free for the GArray, and one malloc/free for the
+ GArray array. In practice we know the max size of our buffer list
+ from the start, so can avoid reallocs.
+ https://bugzilla.gnome.org/show_bug.cgi?id=732284
+
+2014-07-23 21:27:48 +0200 Stefan Sauer <ensonic@users.sf.net>
+
+ * gst/gst_private.h:
+ * gst/gstdebugutils.c:
+ private: allow internal access to the debug base-time
+ Moving the extern to the head lets us access this from other parts as well. This
+ is neeed in the tracer branch.
+
+2014-07-23 00:15:17 +0530 Arun Raghavan <arun@accosted.net>
+
+ * scripts/git-update.sh:
+ scripts: Use git pull --rebase
+ No point introducing redundant merge commits.
+
+2014-07-21 12:41:08 -0300 Thiago Santos <ts.santos@sisa.samsung.com>
+
+ * tests/check/Makefile.am:
+ * tests/check/gst/gsttaglist.c:
+ Revert "tests: taglist: add basic test for taglists serialization"
+ This reverts commit 85d23d19b7de40541d63b0bc76d8b646c321af26.
+ There was already a gsttag.c tests file, this test has been merged
+ in it in the previous commit
+
+2014-07-21 12:40:47 -0300 Thiago Santos <ts.santos@sisa.samsung.com>
+
+ * tests/check/gst/gsttag.c:
+ tests: tag: add the empty taglist serialization test
+ Adds the test to the appropriate and already existing file.
+
+2014-07-14 18:46:54 -0300 Thiago Santos <ts.santos@sisa.samsung.com>
+
+ * tests/check/Makefile.am:
+ * tests/check/gst/gsttaglist.c:
+ tests: taglist: add basic test for taglists serialization
+ Make sure it works with empty taglists
+
+2014-07-14 18:25:50 -0300 Thiago Santos <ts.santos@sisa.samsung.com>
+
+ * tests/check/gst/gststructure.c:
+ tests: gststructure: serialization of tag event structure
+ Adds a test that checks that the serialization of a tag event structure
+ works without problems
+ https://bugzilla.gnome.org/show_bug.cgi?id=733131
+
+2014-07-14 18:23:43 -0300 Thiago Santos <ts.santos@sisa.samsung.com>
+
+ * gst/gstvalue.c:
+ gstvalue: add GstTagList compare function
+ When serializing GstStructures from events in GDP it will add a taglist
+ as a GstStructure field, having the compare function allows comparison of
+ GstStructures to check if the serialized/deserialized version matches the
+ original one, among other cases.
+ https://bugzilla.gnome.org/show_bug.cgi?id=733131
+
+2014-07-09 15:48:10 +0200 Srimanta Panda <srimanta@axis.com>
+
+ * plugins/elements/gstfunnel.c:
+ funnel: Fix for racy EOS event handling
+ When eos events are forwarded simultaneouly from two sinkpads on
+ funnel, it doesnot forward the eos to sourcepad. The reason is
+ sticky events are stored after the event callbacks are returned.
+ Therefore while one is about to store the sticky events on the its
+ sinkpad, other sinkpad starts checking for the eos events on all other
+ sinkpads and assumes eos is not present yet.
+ https://bugzilla.gnome.org/show_bug.cgi?id=732851
+
+2014-07-17 16:05:00 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * tests/check/gst/gstpipeline.c:
+ pipeline: Add unit test for resetting of the start time
+ Also check if this properly affects basesink elements to not
+ report the old start time but the real current position when
+ setting to PAUSED again.
+
+2014-07-15 18:19:24 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstpipeline.c:
+ pipeline: Reset the start time when going from PAUSED to READY too
+
+2014-07-15 17:19:10 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/gstpipeline.c:
+ pipeline: Reset start time in READY->PAUSED before chaining up
+ Otherwise bin will change the state of the child elements without
+ distributing the new start time.
+
+2014-06-28 17:58:26 +0100 Tim-Philipp Müller <tim@centricular.com>
+
+ * plugins/elements/gstelements_private.c:
+ elements: improve buffer flags to string utility function
+ Avoid relocations and refactor so that we don't calculate
+ the fixed and known at compile time maximum string size
+ every time. Also skip the mini object flags which we are
+ not going to print anyway.
+
+2014-07-19 18:04:31 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * configure.ac:
+ Back to development
+
+=== release 1.4.0 ===
+
+2014-07-19 16:46:41 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * ChangeLog:
+ * NEWS:
+ * RELEASE:
+ * configure.ac:
+ * docs/plugins/inspect/plugin-coreelements.xml:
+ * gstreamer.doap:
+ * win32/common/config.h:
+ * win32/common/gstversion.h:
+ Release 1.4.0
+
+2014-07-19 16:21:20 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * po/af.po:
+ * po/az.po:
+ * po/be.po:
+ * po/bg.po:
+ * po/ca.po:
+ * po/cs.po:
+ * po/da.po:
+ * po/de.po:
+ * po/el.po:
+ * po/en_GB.po:
+ * po/eo.po:
+ * po/es.po:
+ * po/eu.po:
+ * po/fi.po:
+ * po/fr.po:
+ * po/gl.po:
+ * po/hr.po:
+ * po/hu.po:
+ * po/id.po:
+ * po/it.po:
+ * po/ja.po:
+ * po/lt.po:
+ * po/nb.po:
+ * po/nl.po:
+ * po/pl.po:
+ * po/pt_BR.po:
+ * po/ro.po:
+ * po/ru.po:
+ * po/rw.po:
+ * po/sk.po:
+ * po/sl.po:
+ * po/sq.po:
+ * po/sr.po:
+ * po/sv.po:
+ * po/tr.po:
+ * po/uk.po:
+ * po/vi.po:
+ * po/zh_CN.po:
+ * po/zh_TW.po:
+ Update .po files
2014-07-19 12:16:58 +0200 Sebastian Dröge <sebastian@centricular.com>
diff --git a/Makefile.in b/Makefile.in
index edea6e6..e00fc1b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -291,6 +291,7 @@
BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
BASH_HELPERS_DIR = @BASH_HELPERS_DIR@
BISON_PATH = @BISON_PATH@
+CAP_LIBS = @CAP_LIBS@
CAT_ENTRY_END = @CAT_ENTRY_END@
CAT_ENTRY_START = @CAT_ENTRY_START@
CC = @CC@
@@ -381,6 +382,7 @@
GST_PLUGIN_LDFLAGS = @GST_PLUGIN_LDFLAGS@
GST_PLUGIN_LIBTOOLFLAGS = @GST_PLUGIN_LIBTOOLFLAGS@
GST_PLUGIN_SCANNER_INSTALLED = @GST_PLUGIN_SCANNER_INSTALLED@
+GST_PTP_HELPER_INSTALLED = @GST_PTP_HELPER_INSTALLED@
GST_REGISTRY_DOC_TYPES = @GST_REGISTRY_DOC_TYPES@
GST_REVISION = @GST_REVISION@
GST_VERSION_MAJOR = @GST_VERSION_MAJOR@
@@ -392,6 +394,7 @@
GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
GTKDOC_MKPDF = @GTKDOC_MKPDF@
GTKDOC_REBASE = @GTKDOC_REBASE@
+HAVE_CAP = @HAVE_CAP@
HAVE_DOCBOOK2PS = @HAVE_DOCBOOK2PS@
HAVE_DVIPS = @HAVE_DVIPS@
HAVE_EPSTOPDF = @HAVE_EPSTOPDF@
@@ -478,6 +481,7 @@
PYTHON_VERSION = @PYTHON_VERSION@
RANLIB = @RANLIB@
SED = @SED@
+SETCAP = @SETCAP@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
diff --git a/NEWS b/NEWS
index a4e47ed..3e58358 100644
--- a/NEWS
+++ b/NEWS
@@ -1,145 +1,2 @@
-This is GStreamer 1.4.0
+This is GStreamer 1.5.1
-Changes since 1.2:
-
-New API:
- • GstMessageType has GST_MESSAGE_EXTENDED added. All types before
- that can be used together as a flags type as before, but from
- that message onwards the types are just counted incrementally.
- This was necessary to be able to add more message types.
- In 2.0 GstMessageType will just become an enum and not a flags
- type anymore.
- • GstDeviceMonitor for device probing, e.g. to list all available
- audio or video capture devices. This is the replacement for
- GstPropertyProbe from 0.10.
- • Events accumulate the running-time offset now when travelling
- through pads, as set by the gst_pad_set_offset() function. This
- allows to compensate for this in the QOS event for example.
- • GstBuffer has a new flag "tag-memory" that is set automatically
- when memory is added or removed to a buffer. This allows buffer
- pools to detect if they can recycle a buffer or need to reset
- it first.
- • GstToc has new API to mark GstTocEntries as loops.
- • A not-authorized resource error has been defined to notify
- applications that accessing the resource has failed because
- of missing authorization and to distinguish this case from others.
- This change is actually already in 1.2.4.
- • GstPad has a new flag "accept-intersect", that will let the default
- ACCEPT_CAPS query handler do an intersection instead of subset check.
- This is interesting for parser elements that can handle incomplete
- caps.
- • GstCollectPads has support for flushing and a default handler for
- SEEK events now.
- • New GstFlowAggregator helper object that simplifies handling of
- flow returns in elements with multiple source pads. Additionally
- GstPad now always stores the last flow return and provides an
- API to retrieve it.
- • GstSegment has new API to offset the running time by a specific
- value and this is used in GstPad to allow positive and negative
- offsets in gst_pad_set_offset() in all situations.
- • Support for h265/HEVC and VP8 has been added to the codec utils and codec
- parsers library, and was integrated into various elements.
- • API for adjusting the TLS validation of RTSP connection has been added.
- • The RTSP and SDP library has MIKEY (RFC 3830) support now, and
- there is API to distinguish between the different RTSP profiles.
- • API to access RTP time information and statistics.
- • Support for auxiliary streams was added to rtpbin.
- • Support for tiled, raw video formats has been added.
- • GstVideoDecoder and GstAudioDecoder have API to help aggregating tag
- events and merge custom tags into them consistently.
- • GstBufferPool has support for flushing now.
- • playbin/playsink has support for application provided audio and video
- filters.
- • GstDiscoverer has new and simplified API to get details about missing
- plugins and information to pass to the plugin installer.
- • The GL library was merged from gst-plugins-gl to gst-plugins-bad,
- providing a generic infrastructure for handling GL inside GStreamer
- pipelines and a plugin with some elements using these, especially
- a video sink. Supported platforms currently are Android, Cocoa (OS X),
- DispManX (Raspberry Pi), EAGL (iOS), WGL (Windows) and generic X11,
- Wayland and EGL platforms.
- This replaces eglglessink and also is supposed to replace osxvideosink.
- • New GstAggregator base class in gst-plugins-bad. This is supposed to
- replace GstCollectPads in the future and fix long-known shortcomings
- in its API. Together with the base class some elements are provided
- already, like a videomixer (compositor).
-
-
-Major changes:
- • New plugins and elements:
- ∘ v4l2videodec element for accessing hardware codecs on
- platforms that make them accessible via V4L2, e.g.
- Samsung Exynos. This comes together with major refactoring
- of the existing V4L2 elements and the corresponding
- infrastructure.
- The v4l2videodec element replaces the mfcdec element.
- ∘ New downloadbuffer element that replaces the download
- buffering feature of queue2. Compared to queue2's code
- it is much simpler and only for this single use case.
- A noteworthy new feature is that it's downloading gaps
- in the already downloaded stream parts when nothing else
- is to be downloaded.
- This is now used by playbin when download buffering is
- enabled.
- ∘ rtpstreampay and rtpstreamdepay elements for transmitting
- RTP packets over a stream API (e.g. TCP) according to
- RFC 4571.
- ∘ rtprtx elements for standard compliant implementation of
- retransmissions, integrated into the rtpmanager plugin.
- ∘ audiomixer element that mixes multiple audio streams together
- into a single one while keeping synchronization. This is
- planned to become the replacement of the adder element.
- ∘ OpenNI2 plugin for 3D cameras like the Kinect camera.
- ∘ OpenEXR plugin for decoding high-dynamic-range EXR images.
- ∘ curlsshsink and curlsftpsink to write files via SSH/SFTP.
- ∘ videosignal, ivfparse and sndfile plugins ported from 0.10.
- ∘ avfvideosrc, vtdec and other elements were ported from 0.10 and
- are available on OS X and iOS now.
-
- • Other changes:
- ∘ gst-libav now uses libav 10.2, and gained support for H265/HEVC.
- ∘ Support for hardware codecs and special memory types has been
- improved with bugfixes and feature additions in various plugins
- and base classes.
- ∘ Various bugfixes and improvements to buffering in queue2 and
- multiqueue elements.
- ∘ dvbsrc supports more delivery mechanisms and other features
- now, including DVB S2 and T2 support.
- ∘ The MPEGTS library has support for many more descriptors.
- ∘ Major improvements to tsdemux and tsparse, especially time and
- seeking related.
- ∘ souphttpsrc now has support for keep-alive connections,
- compression, configurable number of retries and configuration
- for SSL certificate validation.
- ∘ hlsdemux has undergone major refactoring and works more
- reliable now and supports more HLS features like trick modes.
- Also fragments are pushed downstream while they're downloaded
- now instead of waiting for each fragment to finish.
- ∘ dashdemux and mssdemux are now also pushing fragments downstream
- while they're downloaded instead of waiting for each fragment to
- finish.
- ∘ videoflip can automatically flip based on the orientation tag.
- ∘ openjpeg supports the OpenJPEG2 API.
- ∘ waylandsink was refactored and should be more useful now. It also
- includes a small library which most likely is going to be removed
- in the future and will result in extensions to the GstVideoOverlay
- interface.
- ∘ gst-rtsp-server supports SRTP and MIKEY now.
- ∘ gst-libav encoders are now negotiating any profile/level settings
- with downstream via caps.
- ∘ Lots of fixes for coverity warnings all over the place.
- ∘ Negotiation related performance improvements.
- ∘ 800+ fixed bug reports, and many other bug fixes and other
- improvements everywhere that had no bug report.
-
-Things to look out for:
- • The eglglessink element was removed and replaced by the glimagesink
- element.
- • The mfcdec element was removed and replaced by v4l2videodec.
- • osxvideosink is only available in OS X 10.6 or newer.
- • On Android the namespace of the automatically generated Java class
- for initialization of GStreamer has changed from com.gstreamer to
- org.freedesktop.gstreamer to prevent namespace pollution.
- • On iOS you have to update your gst_ios_init.h and gst_ios_init.m in
- your projects from the one included in the binaries if you used the
- GnuTLS GIO module before. The loading mechanism has slightly changed.
diff --git a/RELEASE b/RELEASE
index 4d4929d..ee53678 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,34 +1,17 @@
-Release notes for GStreamer 1.4.0
+Release notes for GStreamer 1.5.1
-The GStreamer team is pleased to announce the first release of
-the stable 1.4 release series. The 1.4 release series is adding new
-features on top of the 1.0 and 1.2 series and is part of the API and
-ABI-stable 1.x release series of the GStreamer multimedia framework.
+The GStreamer team is pleased to announce the first release of the unstable
+1.5 release series. The 1.5 release series is adding new features on top of
+the 1.0, 1.2 and 1.4 series and is part of the API and ABI-stable 1.x release
+series of the GStreamer multimedia framework. The unstable 1.5 release series
+will lead to the stable 1.6 release series in the next weeks, and newly added
+API can still change until that point.
-
-Binaries for Android, iOS, Mac OS X and Windows are provided together
-with this release.
-
-
-
-The stable 1.4 release series is API and ABI compatible with 1.0.x,
-1.2.x and any other 1.x release series in the future. Compared to 1.2.x
-it contains some new features and more intrusive changes that were
-considered too risky as a bugfix.
-
-
-
-The versioning scheme that is used in general is that 1.x.y is API and
-ABI backwards compatible with previous 1.x.y releases. If x is an even
-number it is a stable release series and all releases in this series
-will only contain important bugfixes, e.g. the 1.0 series with 1.0.7. If
-x is odd it is a development release series that will lead to the next
-stable release series 1.x+1 and contains new features and bigger
-changes. During the development release series, new API can still
-change.
+Binaries for Android, iOS, Mac OS X and Windows will be provided separately
+during the unstable 1.5 release series.
@@ -55,8 +38,118 @@
Bugs fixed in this release
- * 733121 : debugutils: Unref pad template after use
- * 733291 : typefindelement: Propagate input buffer PTS and DTS
+ * 736655 : basesink: preroll issue for some clips which audio is shorter than video
+ * 601853 : identity: sync=true ignores pipeline latency and does not present itself as live element
+ * 688625 : gst-launch: incorrect parsing behaviour with spaces and quotes
+ * 707605 : streamiddemux: New " reverse-funnel " element
+ * 725221 : Add GstUri object for URI handling
+ * 727826 : check: update internal libcheck copy from 0.9.8 to 0.9.12
+ * 730053 : baseparse: allow skipping more data than currently available
+ * 731176 : filesrc: fails when using fifos
+ * 732284 : bufferlist: optimisation: pre-allocate buffer array in one go with the buffer list
+ * 733119 : utils: Unref/release pads in error cases when linking pads
+ * 733131 : gstvalue: failure to deserialize gsttaglist
+ * 733171 : baseparse: handling of EOS when no output produced
+ * 733351 : queue2: Process SEEKING query
+ * 733741 : docs: document caps parameter of gst_base_src_set_caps
+ * 733814 : gst-launch: On W32 gst-launch does not finish correctly after getting SIGINT
+ * 734342 : pad: allow probes to remove the data item whilst returning PROBE_OK
+ * 734345 : tests: Add missing unrefs of objects after use
+ * 734360 : [API] bytereader: add _get_sub_reader() and _peek_sub_reader()
+ * 734470 : concat: New element for concatenating streams
+ * 734716 : bus: signal watched added in a new thread-default context can't be removed
+ * 735195 : bus: Missing API to remove a bus watch
+ * 735357 : pad: should not allow flush-stop on inactive pads
+ * 735896 : typefind: Run the default have-type handler after all application handlers
+ * 736012 : dashdemux hlsdemux mssdemux: playback failing due to pad EOS state
+ * 736377 : inspect: Says there custom functions where there arent
+ * 736455 : valve: typo in drop property description
+ * 736477 : check: Add a function to check destruction of objects
+ * 736877 : gsturi: Remove unnecessary code
+ * 736891 : input-selector: Can't unblock after emitting a " block " signal
+ * 737584 : configure.ac: require GLib 2.34
+ * 737616 : timedvaluecontrolsource: Add some signals about values changes
+ * 737762 : baseparse: leaks caps in gst_base_parse_process_streamheader
+ * 738202 : funnel: Does not forward sticky events if no data was received
+ * 738612 : several typos in Plugin Writer's Guide
+ * 739002 : capsfilter: Add an optional delayed caps change mode
+ * 739165 : debugutils: Truncate parameter values that are too long
+ * 739514 : doc: Do not use deprecated gtk-doc 'Rename to' tag
+ * 739518 : gst-inspect: add G_PARAM_DEPRECATED to known flags
+ * 739580 : basesink: Answer the query position when receiving it from upstream
+ * 739620 : input-selector: _activate_sinkpad conflates two different functions
+ * 739662 : gstobject: Add gst_object_has_parent()
+ * 739765 : caps: Add gst_caps_foreach() and gst_caps_map_in_place()
+ * 739767 : gstconfig: Put gstconfig.h into $(libdir)/gstreamer-1.0/include
+ * 740003 : pad: fail drop queries
+ * 740949 : inputselector: sticky events haven't send out when active track reach EOS.
+ * 741359 : check.h distributed unnecessarily
+ * 741425 : debugutils: Add a gst_debug_bin_to_dot_data() method
+ * 741550 : Incorrect check version advertised
+ * 741893 : inputselector: Get the active sinkpad again after taking the lock when handling events
+ * 742057 : Add missing interface documentation
+ * 742877 : Incorrect version comparison in preset_get_keyfile ()
+ * 743195 : uri: Add parsing unit test based on GNet
+ * 743335 : Fix documentation of GST_CHECKS and GST_CHECKS_IGNORE
+ * 743795 : gtask: add thread name support on OS X and iOS
+ * 744034 : fdsrc: MinGW Compilation error: unknown conversion type character 'l' in format
+ * 744253 : multiqueue: Memory leak with DASH stream
+ * 744281 : printf: Add support for %I32
+ * 744442 : Clash between gst_element_get_clock() and gst_pipeline_get_clock()
+ * 744520 : gstutils: check uri before using it in gst_pad_create_stream_id_internal
+ * 744572 : flowcombiner regressions
+ * 744777 : check: cast element in ASSERT_SET_STATE.
+ * 744877 : tools: bash completion for gst-inspect and gst-launch
+ * 745042 : utils: Add gst_bin_sync_children_states()
+ * 745122 : gst-uninstalled: add adaptivedemux paths from -bad
+ * 745143 : baseparse: Don't emit errors on EOS if we saw GAP events
+ * 745144 : gstvalue: Make sure GST_FOURCC_ARGS produces printable characters
+ * 745197 : pad: Don't fail latency query on unlinked pads
+ * 745210 : win32: Unnecessary LibXml include directive
+ * 745213 : Shorten __FILE__ in gst_debug_log output on all platforms.
+ * 745287 : basesink: drain query doesn't fully work to release v4l2 buffers
+ * 745319 : queue: can lock up the pipeline on serialized queries when downstream returns errors
+ * 745377 : v4l2src: Camera restarts when used with decodebin
+ * 745858 : check: tempnam deprecated warning
+ * 745927 : baseparse: does not preserve discont flag
+ * 746096 : printf: handle unsigned modifier for long long
+ * 746373 : New fundamental type for caps - GstFlagSet
+ * 746430 : tests: clock: Wrong testclock's name for test clock example.
+ * 746436 : tee: Add property that allows having all source pads unlinked
+ * 746518 : input-selector: eos is always forwarded, even from unselected pads
+ * 746585 : pluginloader: Fix typos
+ * 746809 : debugutils: Plot GstCapsFeatures in dot files.
+ * 746871 : bus: Segmentation fault in function gst_bus_set_flushing() when called with bus==NULL
+ * 747095 : Disable g-ir-scanner cache on build
+ * 747100 : tests: filesink: add test for GstFileSink render_list implemention
+ * 747119 : gstpad: Fix a typo in a doc string
+ * 747223 : test: filesink: add test to verify rendering buffers with multiple memory blocks
+ * 747392 : memory: add check for memory writability in resize()
+ * 747438 : doc: bufferlist: Update document for return value of gst_buffer_list_get
+ * 747439 : bufferlist: add check for writable object in insert or remove
+ * 747610 : Inconsistent bin children state when a child fails to switch from NULL to READY
+ * 747611 : inputselector: fix leak in gst_selector_pad_chain()
+ * 747690 : gstvalue: failure to deserialize bitmask
+ * 747731 : basesrc: Always setting segment.start as DTS on first buffer
+ * 747775 : typefind: leak in gst_type_find_element_src_event
+ * 747852 : pad: idle probe doesn't block pad from pushing data
+ * 748101 : tests: input selector unit test often fails under valgrind
+ * 748119 : GstMetaTransformFunction returns gboolean but its retval is discarded
+ * 748277 : test: memory: add test for allocation params
+ * 748345 : basesrc: Remove unused assignment
+ * 748414 : Invalid read when printing debug output containing '%%'
+ * 748739 : gstevent: remove duplicated header
+ * 749233 : fdsrc: docs: fix and update documentation
+ * 749258 : basesink: fix QoS/lateness checking if subclass implements prepare/prepare_list vfuncs
+ * 749391 : PTP network clock support
+ * 749904 : Remove docs/code-reviews
+ * 750172 : miniobject double WRITE | EXCLUSIVE lock succeeds despite part-miniobject.txt forbidding it
+ * 750319 : memory: subclasses don't know map flags in unmap
+ * 750351 : gst-indent: Added support for gindent as executable name
+ * 750439 : playbin using fdsrc source hangs for with empty input
+ * 738237 : baseparse: parser is never marked as FLAG_LOST_SYNC on discont
+ * 747321 : basesrc: do not leak buffer pool in error case
+ * 737683 : fakesrc: the " pattern " property can be gotten but it is never set or used
==== Download ====
@@ -93,9 +186,75 @@
Contributors to this release
+ * Aleix Conchillo Flaqué
+ * Alex Ashley
+ * Andrei Sarakeev
+ * Arnaud Vrac
+ * Arun Raghavan
+ * Aurélien Zanelli
+ * Changbok Chea
+ * David Waring
+ * Duncan Palmer
* Edward Hervey
+ * Felix Schwarz
+ * Frédéric Wang
+ * Guillaume Desmottes
+ * Haakon Sporsheim
+ * Heinrich Fink
+ * HoonHee Lee
+ * Hyunjun Ko
+ * Ilya Konstantinov
+ * Jan Alexander Steffens (heftig)
+ * Jan Schmidt
+ * Jan Steffens
+ * Jason Litzinger
+ * Jian
+ * Jimmy Ohn
+ * Jonas Holmberg
+ * Jose Antonio Santos Cadenas
+ * Linus Svensson
+ * Lubosz Sarnecki
+ * Luis de Bethencourt
+ * Marcin Kolny
+ * Mark Nauwelaerts
+ * Matej Knopp
+ * Mathieu Duponchelle
+ * Matthew Waters
+ * Matthieu Bouron
+ * Michael Catanzaro
+ * Michał Dębski
+ * Mohammed Sameer
+ * Nicolas Dufresne
+ * Nicolas Huet
+ * Nirbheek Chauhan
+ * Ognyan Tonchev
+ * Olivier Crête
+ * Peter Urbanec
+ * Philippe Normand
+ * Phillip Wood
+ * Prashant Gotarne
+ * Ramiro Polla
+ * Ravi Kiran K N
+ * Reynaldo H. Verdejo Pinochet
+ * Rémi Lefèvre
* Sebastian Dröge
* Sebastian Rasmussen
+ * Song Bing
+ * Srimanta Panda
+ * Stefan Sauer
+ * Suhwang Kim
* Thiago Santos
* Thibault Saunier
+ * Tiago
+ * Tiago Cesar Katcipis
+ * Tim-Philipp Müller
+ * Vincent Penquerc'h
+ * Vivia Nikolaidou
+ * Víctor Manuel Jáquez Leal
+ * William Manley
+ * Wim Taymans
+ * Wonchul Lee
+ * eunhae choi
+ * hoonhee.lee
+ * Руслан Ижбулатов
\ No newline at end of file
diff --git a/common/Makefile.in b/common/Makefile.in
index 54dbfa4..91f7d72 100644
--- a/common/Makefile.in
+++ b/common/Makefile.in
@@ -220,6 +220,7 @@
BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
BASH_HELPERS_DIR = @BASH_HELPERS_DIR@
BISON_PATH = @BISON_PATH@
+CAP_LIBS = @CAP_LIBS@
CAT_ENTRY_END = @CAT_ENTRY_END@
CAT_ENTRY_START = @CAT_ENTRY_START@
CC = @CC@
@@ -310,6 +311,7 @@
GST_PLUGIN_LDFLAGS = @GST_PLUGIN_LDFLAGS@
GST_PLUGIN_LIBTOOLFLAGS = @GST_PLUGIN_LIBTOOLFLAGS@
GST_PLUGIN_SCANNER_INSTALLED = @GST_PLUGIN_SCANNER_INSTALLED@
+GST_PTP_HELPER_INSTALLED = @GST_PTP_HELPER_INSTALLED@
GST_REGISTRY_DOC_TYPES = @GST_REGISTRY_DOC_TYPES@
GST_REVISION = @GST_REVISION@
GST_VERSION_MAJOR = @GST_VERSION_MAJOR@
@@ -321,6 +323,7 @@
GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
GTKDOC_MKPDF = @GTKDOC_MKPDF@
GTKDOC_REBASE = @GTKDOC_REBASE@
+HAVE_CAP = @HAVE_CAP@
HAVE_DOCBOOK2PS = @HAVE_DOCBOOK2PS@
HAVE_DVIPS = @HAVE_DVIPS@
HAVE_EPSTOPDF = @HAVE_EPSTOPDF@
@@ -407,6 +410,7 @@
PYTHON_VERSION = @PYTHON_VERSION@
RANLIB = @RANLIB@
SED = @SED@
+SETCAP = @SETCAP@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
diff --git a/common/m4/Makefile.in b/common/m4/Makefile.in
index 7c98e62..e95f71f 100644
--- a/common/m4/Makefile.in
+++ b/common/m4/Makefile.in
@@ -159,6 +159,7 @@
BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
BASH_HELPERS_DIR = @BASH_HELPERS_DIR@
BISON_PATH = @BISON_PATH@
+CAP_LIBS = @CAP_LIBS@
CAT_ENTRY_END = @CAT_ENTRY_END@
CAT_ENTRY_START = @CAT_ENTRY_START@
CC = @CC@
@@ -249,6 +250,7 @@
GST_PLUGIN_LDFLAGS = @GST_PLUGIN_LDFLAGS@
GST_PLUGIN_LIBTOOLFLAGS = @GST_PLUGIN_LIBTOOLFLAGS@
GST_PLUGIN_SCANNER_INSTALLED = @GST_PLUGIN_SCANNER_INSTALLED@
+GST_PTP_HELPER_INSTALLED = @GST_PTP_HELPER_INSTALLED@
GST_REGISTRY_DOC_TYPES = @GST_REGISTRY_DOC_TYPES@
GST_REVISION = @GST_REVISION@
GST_VERSION_MAJOR = @GST_VERSION_MAJOR@
@@ -260,6 +262,7 @@
GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
GTKDOC_MKPDF = @GTKDOC_MKPDF@
GTKDOC_REBASE = @GTKDOC_REBASE@
+HAVE_CAP = @HAVE_CAP@
HAVE_DOCBOOK2PS = @HAVE_DOCBOOK2PS@
HAVE_DVIPS = @HAVE_DVIPS@
HAVE_EPSTOPDF = @HAVE_EPSTOPDF@
@@ -346,6 +349,7 @@
PYTHON_VERSION = @PYTHON_VERSION@
RANLIB = @RANLIB@
SED = @SED@
+SETCAP = @SETCAP@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
diff --git a/config.h.in b/config.h.in
index 93a7bce..72c89df 100644
--- a/config.h.in
+++ b/config.h.in
@@ -67,6 +67,9 @@
/* location of the installed gst-plugin-scanner */
#undef GST_PLUGIN_SCANNER_INSTALLED
+/* location of the installed gst-ptp-helper */
+#undef GST_PTP_HELPER_INSTALLED
+
/* Define to 1 if you have the `alarm' function. */
#undef HAVE_ALARM
@@ -267,6 +270,21 @@
/* Have function pthread_setname_np(const char*) */
#undef HAVE_PTHREAD_SETNAME_NP_WITHOUT_TID
+/* PTP support available */
+#undef HAVE_PTP
+
+/* Use capabilities for permissions in PTP helper */
+#undef HAVE_PTP_HELPER_CAPABILITIES
+
+/* Use setuid-root for permissions in PTP helper */
+#undef HAVE_PTP_HELPER_SETUID
+
+/* PTP helper setuid group */
+#undef HAVE_PTP_HELPER_SETUID_GROUP
+
+/* PTP helper setuid user */
+#undef HAVE_PTP_HELPER_SETUID_USER
+
/* Define to 1 if the system has the type `ptrdiff_t'. */
#undef HAVE_PTRDIFF_T
diff --git a/configure b/configure
index 6168eaf..dcc9346 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for GStreamer 1.5.0.1.
+# Generated by GNU Autoconf 2.69 for GStreamer 1.5.1.
#
# Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer>.
#
@@ -591,8 +591,8 @@
# Identity of this package.
PACKAGE_NAME='GStreamer'
PACKAGE_TARNAME='gstreamer'
-PACKAGE_VERSION='1.5.0.1'
-PACKAGE_STRING='GStreamer 1.5.0.1'
+PACKAGE_VERSION='1.5.1'
+PACKAGE_STRING='GStreamer 1.5.1'
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer'
PACKAGE_URL=''
@@ -657,6 +657,7 @@
CHECK_MICRO_VERSION
CHECK_MINOR_VERSION
CHECK_MAJOR_VERSION
+GST_PTP_HELPER_INSTALLED
GST_PLUGIN_SCANNER_INSTALLED
GST_PLUGIN_LDFLAGS
GST_OBJ_LIBS
@@ -826,6 +827,15 @@
HAVE_CPU_PPC_TRUE
HAVE_CPU_I386_FALSE
HAVE_CPU_I386_TRUE
+HAVE_PTP_HELPER_CAPABILITIES_FALSE
+HAVE_PTP_HELPER_CAPABILITIES_TRUE
+HAVE_PTP_HELPER_SETUID_FALSE
+HAVE_PTP_HELPER_SETUID_TRUE
+HAVE_PTP_FALSE
+HAVE_PTP_TRUE
+SETCAP
+HAVE_CAP
+CAP_LIBS
BUILD_TOOLS_FALSE
BUILD_TOOLS_TRUE
BUILD_BENCHMARKS_FALSE
@@ -1080,6 +1090,9 @@
enable_benchmarks
enable_tools
enable_poisoning
+with_ptp_helper_setuid_user
+with_ptp_helper_setuid_group
+with_ptp_helper_permissions
enable_largefile
enable_introspection
enable_docbook
@@ -1660,7 +1673,7 @@
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures GStreamer 1.5.0.1 to adapt to many kinds of systems.
+\`configure' configures GStreamer 1.5.1 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1731,7 +1744,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of GStreamer 1.5.0.1:";;
+ short | recursive ) echo "Configuration of GStreamer 1.5.1:";;
esac
cat <<\_ACEOF
@@ -1818,6 +1831,15 @@
--with-bash-completion-dir=PATH
Install the bash auto-completion script in this
directory. [default=yes]
+ --with-ptp-helper-setuid-user
+ User to switch to when installing gst-ptp-helper
+ setuid root
+ --with-ptp-helper-setuid-group
+ Group to switch to when installing gst-ptp-helper
+ setuid root
+ --with-ptp-helper-permissions
+ how to gain PTP permissions (none, setuid-root,
+ capabilities, auto)
--with-html-dir=PATH path to installed docs
--with-memory-alignment 8,N,malloc,pagesize (default is 32)
@@ -1920,7 +1942,7 @@
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-GStreamer configure 1.5.0.1
+GStreamer configure 1.5.1
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2195,6 +2217,126 @@
} # ac_fn_c_check_func
+# ac_fn_c_check_header_preproc LINENO HEADER VAR
+# ----------------------------------------------
+# Tests whether HEADER is present, setting the cache variable VAR accordingly.
+ac_fn_c_check_header_preproc ()
+{
+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+$as_echo_n "checking for $2... " >&6; }
+if eval \${$3+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <$2>
+_ACEOF
+if ac_fn_c_try_cpp "$LINENO"; then :
+ eval "$3=yes"
+else
+ eval "$3=no"
+fi
+rm -f conftest.err conftest.i conftest.$ac_ext
+fi
+eval ac_res=\$$3
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+
+} # ac_fn_c_check_header_preproc
+
+# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
+# -------------------------------------------------------
+# Tests whether HEADER exists, giving a warning if it cannot be compiled using
+# the include files in INCLUDES and setting the cache variable VAR
+# accordingly.
+ac_fn_c_check_header_mongrel ()
+{
+ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ if eval \${$3+:} false; then :
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+$as_echo_n "checking for $2... " >&6; }
+if eval \${$3+:} false; then :
+ $as_echo_n "(cached) " >&6
+fi
+eval ac_res=\$$3
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+else
+ # Is the header compilable?
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
+$as_echo_n "checking $2 usability... " >&6; }
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+$4
+#include <$2>
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+ ac_header_compiler=yes
+else
+ ac_header_compiler=no
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
+$as_echo "$ac_header_compiler" >&6; }
+
+# Is the header present?
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
+$as_echo_n "checking $2 presence... " >&6; }
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <$2>
+_ACEOF
+if ac_fn_c_try_cpp "$LINENO"; then :
+ ac_header_preproc=yes
+else
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.i conftest.$ac_ext
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
+$as_echo "$ac_header_preproc" >&6; }
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
+ yes:no: )
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
+$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
+$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
+ ;;
+ no:yes:* )
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
+$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
+$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
+$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5
+$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
+$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
+( $as_echo "## ------------------------------------------------------------------------ ##
+## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer ##
+## ------------------------------------------------------------------------ ##"
+ ) | sed "s/^/$as_me: WARNING: /" >&2
+ ;;
+esac
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+$as_echo_n "checking for $2... " >&6; }
+if eval \${$3+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ eval "$3=\$ac_header_compiler"
+fi
+eval ac_res=\$$3
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+fi
+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+
+} # ac_fn_c_check_header_mongrel
+
# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES
# ---------------------------------------------
# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR
@@ -2362,97 +2504,6 @@
} # ac_fn_cxx_try_link
-# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
-# -------------------------------------------------------
-# Tests whether HEADER exists, giving a warning if it cannot be compiled using
-# the include files in INCLUDES and setting the cache variable VAR
-# accordingly.
-ac_fn_c_check_header_mongrel ()
-{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if eval \${$3+:} false; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; }
-if eval \${$3+:} false; then :
- $as_echo_n "(cached) " >&6
-fi
-eval ac_res=\$$3
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
-else
- # Is the header compilable?
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
-$as_echo_n "checking $2 usability... " >&6; }
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-$4
-#include <$2>
-_ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
- ac_header_compiler=yes
-else
- ac_header_compiler=no
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
-$as_echo "$ac_header_compiler" >&6; }
-
-# Is the header present?
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
-$as_echo_n "checking $2 presence... " >&6; }
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-#include <$2>
-_ACEOF
-if ac_fn_c_try_cpp "$LINENO"; then :
- ac_header_preproc=yes
-else
- ac_header_preproc=no
-fi
-rm -f conftest.err conftest.i conftest.$ac_ext
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
-$as_echo "$ac_header_preproc" >&6; }
-
-# So? What about this header?
-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
- yes:no: )
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
-$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
- ;;
- no:yes:* )
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
-$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
-$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
-$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5
-$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
-( $as_echo "## ------------------------------------------------------------------------ ##
-## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer ##
-## ------------------------------------------------------------------------ ##"
- ) | sed "s/^/$as_me: WARNING: /" >&2
- ;;
-esac
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; }
-if eval \${$3+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- eval "$3=\$ac_header_compiler"
-fi
-eval ac_res=\$$3
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
-fi
- eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
-
-} # ac_fn_c_check_header_mongrel
-
# ac_fn_c_check_type LINENO TYPE VAR INCLUDES
# -------------------------------------------
# Tests whether TYPE exists after having included INCLUDES, setting cache
@@ -2750,7 +2801,7 @@
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by GStreamer $as_me 1.5.0.1, which was
+It was created by GStreamer $as_me 1.5.1, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -3731,7 +3782,7 @@
# Define the identity of the package.
PACKAGE='gstreamer'
- VERSION='1.5.0.1'
+ VERSION='1.5.1'
cat >>confdefs.h <<_ACEOF
@@ -3942,9 +3993,9 @@
- PACKAGE_VERSION_MAJOR=$(echo 1.5.0.1 | cut -d'.' -f1)
- PACKAGE_VERSION_MINOR=$(echo 1.5.0.1 | cut -d'.' -f2)
- PACKAGE_VERSION_MICRO=$(echo 1.5.0.1 | cut -d'.' -f3)
+ PACKAGE_VERSION_MAJOR=$(echo 1.5.1 | cut -d'.' -f1)
+ PACKAGE_VERSION_MINOR=$(echo 1.5.1 | cut -d'.' -f2)
+ PACKAGE_VERSION_MICRO=$(echo 1.5.1 | cut -d'.' -f3)
@@ -3955,7 +4006,7 @@
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking nano version" >&5
$as_echo_n "checking nano version... " >&6; }
- NANO=$(echo 1.5.0.1 | cut -d'.' -f4)
+ NANO=$(echo 1.5.1 | cut -d'.' -f4)
if test x"$NANO" = x || test "x$NANO" = "x0" ; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: 0 (release)" >&5
@@ -16125,6 +16176,248 @@
fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether PTP support can be enabled" >&5
+$as_echo_n "checking whether PTP support can be enabled... " >&6; }
+case "$host_os" in
+ *android*)
+ HAVE_PTP=no
+ ;;
+ mingw*|pw32*|cygwin*)
+ HAVE_PTP=no
+ ;;
+ darwin*)
+ ac_fn_c_check_header_preproc "$LINENO" "MobileCoreServices/MobileCoreServices.h" "ac_cv_header_MobileCoreServices_MobileCoreServices_h"
+if test "x$ac_cv_header_MobileCoreServices_MobileCoreServices_h" = xyes; then :
+ HAVE_PTP="no"
+else
+ HAVE_PTP="yes"
+fi
+
+
+ ;;
+ linux*|darwin*|solaris*|netbsd*|freebsd*|openbsd*|kfreebsd*|dragonfly*|gnu*)
+ HAVE_PTP=yes
+ ;;
+ *)
+ HAVE_PTP=no
+ ;;
+esac
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $HAVE_PTP" >&5
+$as_echo "$HAVE_PTP" >&6; }
+
+
+# Check whether --with-ptp-helper-setuid-user was given.
+if test "${with_ptp_helper_setuid_user+set}" = set; then :
+ withval=$with_ptp_helper_setuid_user;
+ if test "x$withval" != "x"
+ then
+
+cat >>confdefs.h <<_ACEOF
+#define HAVE_PTP_HELPER_SETUID_USER "$withval"
+_ACEOF
+
+ fi
+
+fi
+
+
+
+# Check whether --with-ptp-helper-setuid-group was given.
+if test "${with_ptp_helper_setuid_group+set}" = set; then :
+ withval=$with_ptp_helper_setuid_group;
+ if test "x$withval" != "x"
+ then
+
+cat >>confdefs.h <<_ACEOF
+#define HAVE_PTP_HELPER_SETUID_GROUP "$withval"
+_ACEOF
+
+ fi
+
+fi
+
+
+
+# Check whether --with-ptp-helper-permissions was given.
+if test "${with_ptp_helper_permissions+set}" = set; then :
+ withval=$with_ptp_helper_permissions;
+else
+ with_ptp_helper_permissions=auto
+fi
+
+
+gst_ptp_have_cap=no
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for cap_init in -lcap" >&5
+$as_echo_n "checking for cap_init in -lcap... " >&6; }
+if ${ac_cv_lib_cap_cap_init+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lcap $LIBS"
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char cap_init ();
+int
+main ()
+{
+return cap_init ();
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_lib_cap_cap_init=yes
+else
+ ac_cv_lib_cap_cap_init=no
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_cap_cap_init" >&5
+$as_echo "$ac_cv_lib_cap_cap_init" >&6; }
+if test "x$ac_cv_lib_cap_cap_init" = xyes; then :
+ HAVE_CAP=yes
+else
+ HAVE_CAP=no
+fi
+
+ if test "x$HAVE_CAP" = "xyes"; then
+ ac_fn_c_check_header_mongrel "$LINENO" "sys/capability.h" "ac_cv_header_sys_capability_h" "$ac_includes_default"
+if test "x$ac_cv_header_sys_capability_h" = xyes; then :
+ :
+else
+ HAVE_CAP=no
+fi
+
+
+ if test "x$HAVE_CAP" = "xyes"; then
+ CAP_LIBS="-lcap"
+
+ gst_ptp_have_cap=yes
+ else
+ :
+ fi
+ else
+ :
+ fi
+
+
+
+
+# Extract the first word of "setcap", so it can be a program name with args.
+set dummy setcap; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_SETCAP+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $SETCAP in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_SETCAP="$SETCAP" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+as_dummy="$PATH:/usr/bin:/bin:/usr/sbin:/sbin"
+for as_dir in $as_dummy
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_SETCAP="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ test -z "$ac_cv_path_SETCAP" && ac_cv_path_SETCAP="no"
+ ;;
+esac
+fi
+SETCAP=$ac_cv_path_SETCAP
+if test -n "$SETCAP"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SETCAP" >&5
+$as_echo "$SETCAP" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+
+if test "x$HAVE_PTP" = "xyes"; then
+
+$as_echo "#define HAVE_PTP 1" >>confdefs.h
+
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to install gst-ptp-helper" >&5
+$as_echo_n "checking how to install gst-ptp-helper... " >&6; }
+if test "x$with_ptp_helper_permissions" = "xauto"; then
+ if test "x$gst_ptp_have_cap" = "xyes" -a "x$SETCAP" != "xno"; then
+ with_ptp_helper_permissions="capabilities"
+ else
+ with_ptp_helper_permissions="setuid-root"
+ fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_ptp_helper_permissions" >&5
+$as_echo "$with_ptp_helper_permissions" >&6; }
+
+case "$with_ptp_helper_permissions" in
+ none)
+ ;;
+ setuid-root)
+
+$as_echo "#define HAVE_PTP_HELPER_SETUID 1" >>confdefs.h
+
+ ;;
+ capabilities)
+
+$as_echo "#define HAVE_PTP_HELPER_CAPABILITIES 1" >>confdefs.h
+
+ ;;
+ *)
+ as_fn_error $? "Invalid parameter $with_ptp_helper_permissions" "$LINENO" 5
+ ;;
+esac
+
+fi
+
+ if test "x$HAVE_PTP" = "xyes"; then
+ HAVE_PTP_TRUE=
+ HAVE_PTP_FALSE='#'
+else
+ HAVE_PTP_TRUE='#'
+ HAVE_PTP_FALSE=
+fi
+
+ if test "x$with_ptp_helper_permissions" = "xsetuid-root"; then
+ HAVE_PTP_HELPER_SETUID_TRUE=
+ HAVE_PTP_HELPER_SETUID_FALSE='#'
+else
+ HAVE_PTP_HELPER_SETUID_TRUE='#'
+ HAVE_PTP_HELPER_SETUID_FALSE=
+fi
+
+ if test "x$with_ptp_helper_permissions" = "xcapabilities"; then
+ HAVE_PTP_HELPER_CAPABILITIES_TRUE=
+ HAVE_PTP_HELPER_CAPABILITIES_FALSE='#'
+else
+ HAVE_PTP_HELPER_CAPABILITIES_TRUE='#'
+ HAVE_PTP_HELPER_CAPABILITIES_FALSE=
+fi
+
+
@@ -26588,6 +26881,41 @@
+ EXP_VAR=GST_PTP_HELPER_INSTALLED
+ FROM_VAR=${libexecdir}/gstreamer-$GST_API_VERSION/gst-ptp-helper
+
+ prefix_save=$prefix
+ exec_prefix_save=$exec_prefix
+
+ if test "x$prefix" = "xNONE"; then
+ prefix="$ac_default_prefix"
+ fi
+ if test "x$exec_prefix" = "xNONE"; then
+ exec_prefix=$prefix
+ fi
+
+ full_var="$FROM_VAR"
+ while true; do
+ new_full_var="`eval echo $full_var`"
+ if test "x$new_full_var" = "x$full_var"; then break; fi
+ full_var=$new_full_var
+ done
+
+ full_var=$new_full_var
+ GST_PTP_HELPER_INSTALLED="$full_var"
+
+
+ prefix=$prefix_save
+ exec_prefix=$exec_prefix_save
+
+
+cat >>confdefs.h <<_ACEOF
+#define GST_PTP_HELPER_INSTALLED "$GST_PTP_HELPER_INSTALLED"
+_ACEOF
+
+
+
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: Running check unit test framework checks now..." >&5
$as_echo "$as_me: Running check unit test framework checks now..." >&6;}
@@ -27462,7 +27790,7 @@
-ac_config_files="$ac_config_files Makefile data/Makefile gst/Makefile gst/gstconfig.h gst/gstversion.h gst/parse/Makefile gst/printf/Makefile libs/Makefile libs/gst/Makefile libs/gst/base/Makefile libs/gst/check/Makefile libs/gst/check/libcheck/Makefile libs/gst/check/internal-check.h:libs/gst/check/libcheck/check.h.in libs/gst/controller/Makefile libs/gst/helpers/Makefile libs/gst/net/Makefile plugins/Makefile plugins/elements/Makefile po/Makefile.in tests/Makefile tests/benchmarks/Makefile tests/check/Makefile tests/misc/Makefile tests/examples/Makefile tests/examples/adapter/Makefile tests/examples/controller/Makefile tests/examples/stepping/Makefile tests/examples/helloworld/Makefile tests/examples/manual/Makefile tests/examples/memory/Makefile tests/examples/netclock/Makefile tests/examples/streamiddemux/Makefile tests/examples/streams/Makefile tools/Makefile common/Makefile common/m4/Makefile docs/Makefile docs/design/Makefile docs/faq/Makefile docs/gst/Makefile docs/gst/gstreamer.types docs/libs/Makefile docs/plugins/Makefile docs/manual/Makefile docs/pwg/Makefile docs/slides/Makefile docs/xsl/Makefile docs/version.entities m4/Makefile pkgconfig/Makefile stamp.h pkgconfig/gstreamer.pc pkgconfig/gstreamer-uninstalled.pc pkgconfig/gstreamer-base.pc pkgconfig/gstreamer-base-uninstalled.pc pkgconfig/gstreamer-check.pc pkgconfig/gstreamer-check-uninstalled.pc pkgconfig/gstreamer-controller.pc pkgconfig/gstreamer-controller-uninstalled.pc pkgconfig/gstreamer-net.pc pkgconfig/gstreamer-net-uninstalled.pc gstreamer.spec"
+ac_config_files="$ac_config_files Makefile data/Makefile gst/Makefile gst/gstconfig.h gst/gstversion.h gst/parse/Makefile gst/printf/Makefile libs/Makefile libs/gst/Makefile libs/gst/base/Makefile libs/gst/check/Makefile libs/gst/check/libcheck/Makefile libs/gst/check/internal-check.h:libs/gst/check/libcheck/check.h.in libs/gst/controller/Makefile libs/gst/helpers/Makefile libs/gst/net/Makefile plugins/Makefile plugins/elements/Makefile po/Makefile.in tests/Makefile tests/benchmarks/Makefile tests/check/Makefile tests/misc/Makefile tests/examples/Makefile tests/examples/adapter/Makefile tests/examples/controller/Makefile tests/examples/stepping/Makefile tests/examples/helloworld/Makefile tests/examples/manual/Makefile tests/examples/memory/Makefile tests/examples/netclock/Makefile tests/examples/ptp/Makefile tests/examples/streamiddemux/Makefile tests/examples/streams/Makefile tools/Makefile common/Makefile common/m4/Makefile docs/Makefile docs/design/Makefile docs/faq/Makefile docs/gst/Makefile docs/gst/gstreamer.types docs/libs/Makefile docs/plugins/Makefile docs/manual/Makefile docs/pwg/Makefile docs/slides/Makefile docs/xsl/Makefile docs/version.entities m4/Makefile pkgconfig/Makefile stamp.h pkgconfig/gstreamer.pc pkgconfig/gstreamer-uninstalled.pc pkgconfig/gstreamer-base.pc pkgconfig/gstreamer-base-uninstalled.pc pkgconfig/gstreamer-check.pc pkgconfig/gstreamer-check-uninstalled.pc pkgconfig/gstreamer-controller.pc pkgconfig/gstreamer-controller-uninstalled.pc pkgconfig/gstreamer-net.pc pkgconfig/gstreamer-net-uninstalled.pc gstreamer.spec"
sed \
@@ -27697,6 +28025,18 @@
as_fn_error $? "conditional \"BUILD_TOOLS\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
+if test -z "${HAVE_PTP_TRUE}" && test -z "${HAVE_PTP_FALSE}"; then
+ as_fn_error $? "conditional \"HAVE_PTP\" was never defined.
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
+fi
+if test -z "${HAVE_PTP_HELPER_SETUID_TRUE}" && test -z "${HAVE_PTP_HELPER_SETUID_FALSE}"; then
+ as_fn_error $? "conditional \"HAVE_PTP_HELPER_SETUID\" was never defined.
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
+fi
+if test -z "${HAVE_PTP_HELPER_CAPABILITIES_TRUE}" && test -z "${HAVE_PTP_HELPER_CAPABILITIES_FALSE}"; then
+ as_fn_error $? "conditional \"HAVE_PTP_HELPER_CAPABILITIES\" was never defined.
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
+fi
if test -z "${HAVE_CPU_I386_TRUE}" && test -z "${HAVE_CPU_I386_FALSE}"; then
as_fn_error $? "conditional \"HAVE_CPU_I386\" was never defined.
@@ -28271,7 +28611,7 @@
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by GStreamer $as_me 1.5.0.1, which was
+This file was extended by GStreamer $as_me 1.5.1, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -28337,7 +28677,7 @@
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-GStreamer config.status 1.5.0.1
+GStreamer config.status 1.5.1
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
@@ -28904,6 +29244,7 @@
"tests/examples/manual/Makefile") CONFIG_FILES="$CONFIG_FILES tests/examples/manual/Makefile" ;;
"tests/examples/memory/Makefile") CONFIG_FILES="$CONFIG_FILES tests/examples/memory/Makefile" ;;
"tests/examples/netclock/Makefile") CONFIG_FILES="$CONFIG_FILES tests/examples/netclock/Makefile" ;;
+ "tests/examples/ptp/Makefile") CONFIG_FILES="$CONFIG_FILES tests/examples/ptp/Makefile" ;;
"tests/examples/streamiddemux/Makefile") CONFIG_FILES="$CONFIG_FILES tests/examples/streamiddemux/Makefile" ;;
"tests/examples/streams/Makefile") CONFIG_FILES="$CONFIG_FILES tests/examples/streams/Makefile" ;;
"tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;;
@@ -31069,6 +31410,7 @@
Plugin support : ${enable_plugin}
Static plugins : ${enable_static_plugins}
Unit testing support : ${BUILD_CHECK}
+ PTP clock support : ${HAVE_PTP}
Debug : ${USE_DEBUG}
Profiling : ${USE_PROFILING}
diff --git a/configure.ac b/configure.ac
index 42fe32a..6b6a26c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@
dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, git and prerelease does Werror too
dnl
-AC_INIT([GStreamer],[1.5.0.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer])
+AC_INIT([GStreamer],[1.5.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer])
AG_GST_INIT
dnl initialize automake (we require GNU make)
@@ -258,6 +258,105 @@
[Define if we should poison deallocated memory])
fi
+dnl PTP support parts
+AC_MSG_CHECKING([whether PTP support can be enabled])
+case "$host_os" in
+ *android*)
+ dnl Can't run on Android because of permissions
+ HAVE_PTP=no
+ ;;
+ mingw*|pw32*|cygwin*)
+ dnl Not ported to Windows yet
+ HAVE_PTP=no
+ ;;
+ darwin*)
+ dnl Can't run on iOS because of permissions
+ AC_CHECK_HEADER(MobileCoreServices/MobileCoreServices.h, HAVE_PTP="no", HAVE_PTP="yes", [-])
+ ;;
+ linux*|darwin*|solaris*|netbsd*|freebsd*|openbsd*|kfreebsd*|dragonfly*|gnu*)
+ HAVE_PTP=yes
+ ;;
+ *)
+ HAVE_PTP=no
+ ;;
+esac
+AC_MSG_RESULT([$HAVE_PTP])
+
+dnl user/group to change to in gst-ptp-helper
+AC_ARG_WITH([ptp-helper-setuid-user],
+ AS_HELP_STRING([--with-ptp-helper-setuid-user],[User to switch to when installing gst-ptp-helper setuid root]),
+ [
+ if test "x$withval" != "x"
+ then
+ AC_DEFINE_UNQUOTED(HAVE_PTP_HELPER_SETUID_USER, "$withval", [PTP helper setuid user])
+ fi
+ ], []
+)
+
+dnl group/group to change to in gst-ptp-helper
+AC_ARG_WITH([ptp-helper-setuid-group],
+ AS_HELP_STRING([--with-ptp-helper-setuid-group],[Group to switch to when installing gst-ptp-helper setuid root]),
+ [
+ if test "x$withval" != "x"
+ then
+ AC_DEFINE_UNQUOTED(HAVE_PTP_HELPER_SETUID_GROUP, "$withval", [PTP helper setuid group])
+ fi
+ ], []
+)
+
+AC_ARG_WITH(
+ ptp-helper-permissions,
+ AC_HELP_STRING(
+ [--with-ptp-helper-permissions],
+ [how to gain PTP permissions (none, setuid-root, capabilities, auto)]),
+ [],
+ [with_ptp_helper_permissions=auto])
+
+gst_ptp_have_cap=no
+AG_GST_CHECK_LIBHEADER(CAP, cap,
+ cap_init, ,
+ sys/capability.h,
+ CAP_LIBS="-lcap"
+ AC_SUBST(CAP_LIBS)
+ gst_ptp_have_cap=yes)
+
+AC_PATH_PROG([SETCAP], [setcap], [no], [$PATH:/usr/bin:/bin:/usr/sbin:/sbin])
+
+if test "x$HAVE_PTP" = "xyes"; then
+AC_DEFINE(HAVE_PTP, 1, [PTP support available])
+
+AC_MSG_CHECKING([how to install gst-ptp-helper])
+if test "x$with_ptp_helper_permissions" = "xauto"; then
+ if test "x$gst_ptp_have_cap" = "xyes" -a "x$SETCAP" != "xno"; then
+ with_ptp_helper_permissions="capabilities"
+ else
+ with_ptp_helper_permissions="setuid-root"
+ fi
+fi
+AC_MSG_RESULT([$with_ptp_helper_permissions])
+
+case "$with_ptp_helper_permissions" in
+ none)
+ ;;
+ setuid-root)
+ AC_DEFINE(HAVE_PTP_HELPER_SETUID, 1,
+ [Use setuid-root for permissions in PTP helper])
+ ;;
+ capabilities)
+ AC_DEFINE(HAVE_PTP_HELPER_CAPABILITIES, 1,
+ [Use capabilities for permissions in PTP helper])
+ ;;
+ *)
+ AC_MSG_ERROR(Invalid parameter [$with_ptp_helper_permissions])
+ ;;
+esac
+
+fi
+
+AM_CONDITIONAL(HAVE_PTP, test "x$HAVE_PTP" = "xyes")
+AM_CONDITIONAL(HAVE_PTP_HELPER_SETUID, test "x$with_ptp_helper_permissions" = "xsetuid-root")
+AM_CONDITIONAL(HAVE_PTP_HELPER_CAPABILITIES, test "x$with_ptp_helper_permissions" = "xcapabilities")
+
dnl *** checks for platform ***
dnl * hardware/architecture *
@@ -806,6 +905,12 @@
"$GST_PLUGIN_SCANNER_INSTALLED", [location of the installed gst-plugin-scanner])
AC_SUBST(GST_PLUGIN_SCANNER_INSTALLED)
+dnl ptp helper locations
+AS_AC_EXPAND(GST_PTP_HELPER_INSTALLED,${libexecdir}/gstreamer-$GST_API_VERSION/gst-ptp-helper)
+AC_DEFINE_UNQUOTED(GST_PTP_HELPER_INSTALLED,
+ "$GST_PTP_HELPER_INSTALLED", [location of the installed gst-ptp-helper])
+AC_SUBST(GST_PTP_HELPER_INSTALLED)
+
dnl things for our internal libcheck (must be called even if building
dnl libcheck is disabled because it defines conditionals)
AG_GST_CHECK_CHECKS()
@@ -842,6 +947,7 @@
tests/examples/manual/Makefile
tests/examples/memory/Makefile
tests/examples/netclock/Makefile
+tests/examples/ptp/Makefile
tests/examples/streamiddemux/Makefile
tests/examples/streams/Makefile
tools/Makefile
@@ -945,6 +1051,7 @@
Plugin support : ${enable_plugin}
Static plugins : ${enable_static_plugins}
Unit testing support : ${BUILD_CHECK}
+ PTP clock support : ${HAVE_PTP}
Debug : ${USE_DEBUG}
Profiling : ${USE_PROFILING}
diff --git a/data/Makefile.in b/data/Makefile.in
index d5204ef..3a02f0a 100644
--- a/data/Makefile.in
+++ b/data/Makefile.in
@@ -192,6 +192,7 @@
BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
BASH_HELPERS_DIR = @BASH_HELPERS_DIR@
BISON_PATH = @BISON_PATH@
+CAP_LIBS = @CAP_LIBS@
CAT_ENTRY_END = @CAT_ENTRY_END@
CAT_ENTRY_START = @CAT_ENTRY_START@
CC = @CC@
@@ -282,6 +283,7 @@
GST_PLUGIN_LDFLAGS = @GST_PLUGIN_LDFLAGS@
GST_PLUGIN_LIBTOOLFLAGS = @GST_PLUGIN_LIBTOOLFLAGS@
GST_PLUGIN_SCANNER_INSTALLED = @GST_PLUGIN_SCANNER_INSTALLED@
+GST_PTP_HELPER_INSTALLED = @GST_PTP_HELPER_INSTALLED@
GST_REGISTRY_DOC_TYPES = @GST_REGISTRY_DOC_TYPES@
GST_REVISION = @GST_REVISION@
GST_VERSION_MAJOR = @GST_VERSION_MAJOR@
@@ -293,6 +295,7 @@
GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
GTKDOC_MKPDF = @GTKDOC_MKPDF@
GTKDOC_REBASE = @GTKDOC_REBASE@
+HAVE_CAP = @HAVE_CAP@
HAVE_DOCBOOK2PS = @HAVE_DOCBOOK2PS@
HAVE_DVIPS = @HAVE_DVIPS@
HAVE_EPSTOPDF = @HAVE_EPSTOPDF@
@@ -379,6 +382,7 @@
PYTHON_VERSION = @PYTHON_VERSION@
RANLIB = @RANLIB@
SED = @SED@
+SETCAP = @SETCAP@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
diff --git a/docs/Makefile.in b/docs/Makefile.in
index 67eadc4..0e59628 100644
--- a/docs/Makefile.in
+++ b/docs/Makefile.in
@@ -225,6 +225,7 @@
BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
BASH_HELPERS_DIR = @BASH_HELPERS_DIR@
BISON_PATH = @BISON_PATH@
+CAP_LIBS = @CAP_LIBS@
CAT_ENTRY_END = @CAT_ENTRY_END@
CAT_ENTRY_START = @CAT_ENTRY_START@
CC = @CC@
@@ -315,6 +316,7 @@
GST_PLUGIN_LDFLAGS = @GST_PLUGIN_LDFLAGS@
GST_PLUGIN_LIBTOOLFLAGS = @GST_PLUGIN_LIBTOOLFLAGS@
GST_PLUGIN_SCANNER_INSTALLED = @GST_PLUGIN_SCANNER_INSTALLED@
+GST_PTP_HELPER_INSTALLED = @GST_PTP_HELPER_INSTALLED@
GST_REGISTRY_DOC_TYPES = @GST_REGISTRY_DOC_TYPES@
GST_REVISION = @GST_REVISION@
GST_VERSION_MAJOR = @GST_VERSION_MAJOR@
@@ -326,6 +328,7 @@
GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
GTKDOC_MKPDF = @GTKDOC_MKPDF@
GTKDOC_REBASE = @GTKDOC_REBASE@
+HAVE_CAP = @HAVE_CAP@
HAVE_DOCBOOK2PS = @HAVE_DOCBOOK2PS@
HAVE_DVIPS = @HAVE_DVIPS@
HAVE_EPSTOPDF = @HAVE_EPSTOPDF@
@@ -412,6 +415,7 @@
PYTHON_VERSION = @PYTHON_VERSION@
RANLIB = @RANLIB@
SED = @SED@
+SETCAP = @SETCAP@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
diff --git a/docs/design/Makefile.in b/docs/design/Makefile.in
index 743cfea..e89e4b7 100644
--- a/docs/design/Makefile.in
+++ b/docs/design/Makefile.in
@@ -159,6 +159,7 @@
BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
BASH_HELPERS_DIR = @BASH_HELPERS_DIR@
BISON_PATH = @BISON_PATH@
+CAP_LIBS = @CAP_LIBS@
CAT_ENTRY_END = @CAT_ENTRY_END@
CAT_ENTRY_START = @CAT_ENTRY_START@
CC = @CC@
@@ -249,6 +250,7 @@
GST_PLUGIN_LDFLAGS = @GST_PLUGIN_LDFLAGS@
GST_PLUGIN_LIBTOOLFLAGS = @GST_PLUGIN_LIBTOOLFLAGS@
GST_PLUGIN_SCANNER_INSTALLED = @GST_PLUGIN_SCANNER_INSTALLED@
+GST_PTP_HELPER_INSTALLED = @GST_PTP_HELPER_INSTALLED@
GST_REGISTRY_DOC_TYPES = @GST_REGISTRY_DOC_TYPES@
GST_REVISION = @GST_REVISION@
GST_VERSION_MAJOR = @GST_VERSION_MAJOR@
@@ -260,6 +262,7 @@
GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
GTKDOC_MKPDF = @GTKDOC_MKPDF@
GTKDOC_REBASE = @GTKDOC_REBASE@
+HAVE_CAP = @HAVE_CAP@
HAVE_DOCBOOK2PS = @HAVE_DOCBOOK2PS@
HAVE_DVIPS = @HAVE_DVIPS@
HAVE_EPSTOPDF = @HAVE_EPSTOPDF@
@@ -346,6 +349,7 @@
PYTHON_VERSION = @PYTHON_VERSION@
RANLIB = @RANLIB@
SED = @SED@
+SETCAP = @SETCAP@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
diff --git a/docs/design/draft-klass.txt b/docs/design/draft-klass.txt
index 9443a40..e8c4b25 100644
--- a/docs/design/draft-klass.txt
+++ b/docs/design/draft-klass.txt
@@ -151,7 +151,7 @@
5) open issues:
- - how to differencial physical devices from logical ones?
+ - how to differentiate physical devices from logical ones?
autoaudiosink : Sink/Audio/Device
alsasink : Sink/Audio/Device
diff --git a/docs/design/part-negotiation.txt b/docs/design/part-negotiation.txt
index d7305cd..d3e67ad 100644
--- a/docs/design/part-negotiation.txt
+++ b/docs/design/part-negotiation.txt
@@ -12,7 +12,7 @@
Basic rules
~~~~~~~~~~~
-The simple rules must be followed:
+These simple rules must be followed:
1) downstream suggests formats
2) upstream decides on format
@@ -249,7 +249,7 @@
* Playback from a lossy source, such as RTP, in which more knowledge
about the latency of the pipeline can increase quality; or
- * Audio synthesis, in which audio APIs are tuned to producing only the
+ * Audio synthesis, in which audio APIs are tuned to produce only the
necessary number of samples, typically driven by a hardware interrupt
to fill a DMA buffer or a Jack[0] port buffer.
@@ -268,7 +268,7 @@
on a format.
Recalling the principles of capsnego, whereby information must flow from
-those that have it to those that do not, we see that the two named use
+those that have it to those that do not, we see that the three named use
cases have different negotiation requirements:
* RTP and low-latency playback are both like the normal playback case,
@@ -319,7 +319,7 @@
When negotiation succeeded, the sinkpad and all upstream internally linked pads
are activated in pull mode. Typically, this operation will trigger negotiation
-on the downstream elements, which will now be forced to negotiation to the
+on the downstream elements, which will now be forced to negotiate to the
final fixed desired caps of the sinkpad.
After these steps, the sink element returns ASYNC from the state change
diff --git a/docs/faq/Makefile.in b/docs/faq/Makefile.in
index e9c6ae4..fcfdf63 100644
--- a/docs/faq/Makefile.in
+++ b/docs/faq/Makefile.in
@@ -214,6 +214,7 @@
BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
BASH_HELPERS_DIR = @BASH_HELPERS_DIR@
BISON_PATH = @BISON_PATH@
+CAP_LIBS = @CAP_LIBS@
CAT_ENTRY_END = @CAT_ENTRY_END@
CAT_ENTRY_START = @CAT_ENTRY_START@
CC = @CC@
@@ -304,6 +305,7 @@
GST_PLUGIN_LDFLAGS = @GST_PLUGIN_LDFLAGS@
GST_PLUGIN_LIBTOOLFLAGS = @GST_PLUGIN_LIBTOOLFLAGS@
GST_PLUGIN_SCANNER_INSTALLED = @GST_PLUGIN_SCANNER_INSTALLED@
+GST_PTP_HELPER_INSTALLED = @GST_PTP_HELPER_INSTALLED@
GST_REGISTRY_DOC_TYPES = @GST_REGISTRY_DOC_TYPES@
GST_REVISION = @GST_REVISION@
GST_VERSION_MAJOR = @GST_VERSION_MAJOR@
@@ -315,6 +317,7 @@
GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
GTKDOC_MKPDF = @GTKDOC_MKPDF@
GTKDOC_REBASE = @GTKDOC_REBASE@
+HAVE_CAP = @HAVE_CAP@
HAVE_DOCBOOK2PS = @HAVE_DOCBOOK2PS@
HAVE_DVIPS = @HAVE_DVIPS@
HAVE_EPSTOPDF = @HAVE_EPSTOPDF@
@@ -401,6 +404,7 @@
PYTHON_VERSION = @PYTHON_VERSION@
RANLIB = @RANLIB@
SED = @SED@
+SETCAP = @SETCAP@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
diff --git a/docs/gst/Makefile.in b/docs/gst/Makefile.in
index 71433c1..8ad43d9 100644
--- a/docs/gst/Makefile.in
+++ b/docs/gst/Makefile.in
@@ -180,6 +180,7 @@
BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
BASH_HELPERS_DIR = @BASH_HELPERS_DIR@
BISON_PATH = @BISON_PATH@
+CAP_LIBS = @CAP_LIBS@
CAT_ENTRY_END = @CAT_ENTRY_END@
CAT_ENTRY_START = @CAT_ENTRY_START@
CC = @CC@
@@ -272,6 +273,7 @@
GST_PLUGIN_LDFLAGS = @GST_PLUGIN_LDFLAGS@
GST_PLUGIN_LIBTOOLFLAGS = @GST_PLUGIN_LIBTOOLFLAGS@
GST_PLUGIN_SCANNER_INSTALLED = @GST_PLUGIN_SCANNER_INSTALLED@
+GST_PTP_HELPER_INSTALLED = @GST_PTP_HELPER_INSTALLED@
GST_REGISTRY_DOC_TYPES = @GST_REGISTRY_DOC_TYPES@
GST_REVISION = @GST_REVISION@
GST_VERSION_MAJOR = @GST_VERSION_MAJOR@
@@ -283,6 +285,7 @@
GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
GTKDOC_MKPDF = @GTKDOC_MKPDF@
GTKDOC_REBASE = @GTKDOC_REBASE@
+HAVE_CAP = @HAVE_CAP@
HAVE_DOCBOOK2PS = @HAVE_DOCBOOK2PS@
HAVE_DVIPS = @HAVE_DVIPS@
HAVE_EPSTOPDF = @HAVE_EPSTOPDF@
@@ -369,6 +372,7 @@
PYTHON_VERSION = @PYTHON_VERSION@
RANLIB = @RANLIB@
SED = @SED@
+SETCAP = @SETCAP@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
diff --git a/docs/gst/gst-universe.svg b/docs/gst/gst-universe.svg
index e69de29..61067f9 100644
--- a/docs/gst/gst-universe.svg
+++ b/docs/gst/gst-universe.svg
@@ -0,0 +1,310 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<!-- Generated by graphviz version 2.38.0 (20140413.2041)
+ -->
+<!-- Title: pipeline Pages: 1 -->
+<svg width="712pt" height="632pt"
+ viewBox="0.00 0.00 712.00 632.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 628)">
+<title>pipeline</title>
+<polygon fill="white" stroke="none" points="-4,4 -4,-628 708,-628 708,4 -4,4"/>
+<!-- application -->
+<g id="node1" class="node"><title>application</title>
+<polygon fill="#ffdddd" stroke="black" points="581,-624 513,-624 513,-588 581,-588 581,-624"/>
+<text text-anchor="middle" x="547" y="-603.8" font-family="Bitstream Vera Sans" font-size="9.00">application</text>
+</g>
+<!-- bus -->
+<g id="node3" class="node"><title>bus</title>
+<g id="a_node3"><a xlink:href="GstBus.html" xlink:title="bus" target="_top">
+<polygon fill="#eeeeee" stroke="black" points="123,-464 69,-464 69,-428 123,-428 123,-464"/>
+<text text-anchor="middle" x="96" y="-443.8" font-family="Bitstream Vera Sans" font-size="9.00">bus</text>
+</a>
+</g>
+</g>
+<!-- application->bus -->
+<g id="edge24" class="edge"><title>application->bus</title>
+<path fill="none" stroke="black" d="M512.839,-602.11C431.071,-594.787 226.336,-573.934 165,-544 133.348,-528.553 124.98,-520.285 107,-490 104.171,-485.236 102.064,-479.755 100.496,-474.337"/>
+<polygon fill="black" stroke="black" points="103.805,-473.124 98.0966,-464.198 96.9935,-474.736 103.805,-473.124"/>
+<text text-anchor="middle" x="181" y="-524.4" font-family="Bitstream Vera Sans" font-size="7.00">listen on</text>
+</g>
+<!-- event -->
+<g id="node9" class="node"><title>event</title>
+<g id="a_node9"><a xlink:href="gstreamer-GstEvent.html" xlink:title="event" target="_top">
+<polygon fill="#ddffdd" stroke="black" points="595,-304 541,-304 541,-268 595,-268 595,-304"/>
+<text text-anchor="middle" x="568" y="-283.8" font-family="Bitstream Vera Sans" font-size="9.00">event</text>
+</a>
+</g>
+</g>
+<!-- application->event -->
+<g id="edge26" class="edge"><title>application->event</title>
+<path fill="none" stroke="black" d="M581.083,-590.104C604.731,-577.208 632,-556.041 632,-527 632,-527 632,-527 632,-365 632,-344.901 629.961,-338.152 618,-322 613.933,-316.508 608.741,-311.561 603.25,-307.234"/>
+<polygon fill="black" stroke="black" points="605.244,-304.357 595.086,-301.346 601.149,-310.034 605.244,-304.357"/>
+<text text-anchor="middle" x="641" y="-444.4" font-family="Bitstream Vera Sans" font-size="7.00">send</text>
+</g>
+<!-- pipeline -->
+<g id="node13" class="node"><title>pipeline</title>
+<g id="a_node13"><a xlink:href="GstPipeline.html" xlink:title="pipeline" target="_top">
+<polygon fill="#ccccff" stroke="black" points="260,-544 206,-544 206,-508 260,-508 260,-544"/>
+<text text-anchor="middle" x="233" y="-523.8" font-family="Bitstream Vera Sans" font-size="9.00">pipeline</text>
+</a>
+</g>
+</g>
+<!-- application->pipeline -->
+<g id="edge23" class="edge"><title>application->pipeline</title>
+<path fill="none" stroke="black" d="M512.799,-596.504C453.447,-581.761 331.849,-551.555 270.363,-536.281"/>
+<polygon fill="black" stroke="black" points="270.868,-532.8 260.319,-533.786 269.181,-539.594 270.868,-532.8"/>
+<text text-anchor="middle" x="406.5" y="-564.4" font-family="Bitstream Vera Sans" font-size="7.00">has</text>
+</g>
+<!-- query -->
+<g id="node16" class="node"><title>query</title>
+<g id="a_node16"><a xlink:href="gstreamer-GstQuery.html" xlink:title="query" target="_top">
+<polygon fill="#ddffdd" stroke="black" points="690,-304 636,-304 636,-268 690,-268 690,-304"/>
+<text text-anchor="middle" x="663" y="-283.8" font-family="Bitstream Vera Sans" font-size="9.00">query</text>
+</a>
+</g>
+</g>
+<!-- application->query -->
+<g id="edge25" class="edge"><title>application->query</title>
+<path fill="none" stroke="black" d="M581.003,-600.877C622.154,-593.772 686,-575.011 686,-527 686,-527 686,-527 686,-365 686,-347.449 680.577,-328.551 674.997,-313.753"/>
+<polygon fill="black" stroke="black" points="678.147,-312.205 671.174,-304.229 671.651,-314.813 678.147,-312.205"/>
+<text text-anchor="middle" x="695" y="-444.4" font-family="Bitstream Vera Sans" font-size="7.00">send</text>
+</g>
+<!-- bin -->
+<g id="node2" class="node"><title>bin</title>
+<g id="a_node2"><a xlink:href="GstBin.html" xlink:title="bin" target="_top">
+<polygon fill="#ccccff" stroke="black" points="346,-464 292,-464 292,-428 346,-428 346,-464"/>
+<text text-anchor="middle" x="319" y="-443.8" font-family="Bitstream Vera Sans" font-size="9.00">bin</text>
+</a>
+</g>
+</g>
+<!-- element -->
+<g id="node7" class="node"><title>element</title>
+<g id="a_node7"><a xlink:href="GstElement.html" xlink:title="element" target="_top">
+<polygon fill="#ccccff" stroke="black" points="382.5,-384 327.5,-384 327.5,-348 382.5,-348 382.5,-384"/>
+<text text-anchor="middle" x="355" y="-363.8" font-family="Bitstream Vera Sans" font-size="9.00">element</text>
+</a>
+</g>
+</g>
+<!-- bin->element -->
+<g id="edge1" class="edge"><title>bin->element</title>
+<path fill="none" stroke="black" d="M316.513,-427.631C316.068,-419.539 316.592,-409.964 320,-402 321.509,-398.474 323.555,-395.114 325.905,-391.97"/>
+<polygon fill="black" stroke="black" points="328.757,-394.024 332.678,-384.181 323.475,-389.431 328.757,-394.024"/>
+<text text-anchor="middle" x="326.5" y="-404.4" font-family="Bitstream Vera Sans" font-size="7.00">is-a</text>
+</g>
+<!-- bin->element -->
+<g id="edge12" class="edge"><title>bin->element</title>
+<path fill="none" stroke="black" d="M326.99,-427.689C331.604,-417.692 337.505,-404.906 342.7,-393.651"/>
+<polygon fill="black" stroke="black" points="346.02,-394.809 347.033,-384.262 339.664,-391.875 346.02,-394.809"/>
+<text text-anchor="middle" x="349" y="-404.4" font-family="Bitstream Vera Sans" font-size="7.00">has n</text>
+</g>
+<!-- message -->
+<g id="node10" class="node"><title>message</title>
+<g id="a_node10"><a xlink:href="gstreamer-GstMessage.html" xlink:title="message" target="_top">
+<polygon fill="#ddffdd" stroke="black" points="131.5,-304 72.5,-304 72.5,-268 131.5,-268 131.5,-304"/>
+<text text-anchor="middle" x="102" y="-283.8" font-family="Bitstream Vera Sans" font-size="9.00">message</text>
+</a>
+</g>
+</g>
+<!-- bus->message -->
+<g id="edge19" class="edge"><title>bus->message</title>
+<path fill="none" stroke="black" d="M96.6535,-427.79C97.6905,-400.485 99.7217,-346.994 100.96,-314.38"/>
+<polygon fill="black" stroke="black" points="104.465,-314.314 101.347,-304.188 97.4702,-314.048 104.465,-314.314"/>
+<text text-anchor="middle" x="114" y="-364.4" font-family="Bitstream Vera Sans" font-size="7.00">receive</text>
+</g>
+<!-- buffer -->
+<g id="node4" class="node"><title>buffer</title>
+<g id="a_node4"><a xlink:href="gstreamer-GstBuffer.html" xlink:title="buffer" target="_top">
+<polygon fill="#ddffdd" stroke="black" points="528,-250 474,-250 474,-214 528,-214 528,-250"/>
+<text text-anchor="middle" x="501" y="-229.8" font-family="Bitstream Vera Sans" font-size="9.00">buffer</text>
+</a>
+</g>
+</g>
+<!-- caps -->
+<g id="node5" class="node"><title>caps</title>
+<g id="a_node5"><a xlink:href="gstreamer-GstCaps.html" xlink:title="caps" target="_top">
+<polygon fill="#eeeeee" stroke="black" points="479,-116 425,-116 425,-80 479,-80 479,-116"/>
+<text text-anchor="middle" x="452" y="-95.8" font-family="Bitstream Vera Sans" font-size="9.00">caps</text>
+</a>
+</g>
+</g>
+<!-- buffer->caps -->
+<g id="edge10" class="edge"><title>buffer->caps</title>
+<path fill="none" stroke="black" d="M495.075,-213.734C490.094,-199.326 482.729,-178.272 476,-160 471.721,-148.382 470.521,-145.526 466,-134 464.925,-131.258 463.795,-128.399 462.662,-125.548"/>
+<polygon fill="black" stroke="black" points="465.838,-124.063 458.882,-116.072 459.336,-126.657 465.838,-124.063"/>
+<text text-anchor="middle" x="499" y="-176.4" font-family="Bitstream Vera Sans" font-size="7.00">has n</text>
+</g>
+<!-- structure -->
+<g id="node18" class="node"><title>structure</title>
+<g id="a_node18"><a xlink:href="gstreamer-GstStructure.html" xlink:title="structure" target="_top">
+<polygon fill="#eeeeee" stroke="black" points="482,-36 422,-36 422,-0 482,-0 482,-36"/>
+<text text-anchor="middle" x="452" y="-15.8" font-family="Bitstream Vera Sans" font-size="9.00">structure</text>
+</a>
+</g>
+</g>
+<!-- caps->structure -->
+<g id="edge11" class="edge"><title>caps->structure</title>
+<path fill="none" stroke="black" d="M452,-79.6893C452,-69.8938 452,-57.4218 452,-46.335"/>
+<polygon fill="black" stroke="black" points="455.5,-46.2623 452,-36.2623 448.5,-46.2624 455.5,-46.2623"/>
+<text text-anchor="middle" x="462" y="-56.4" font-family="Bitstream Vera Sans" font-size="7.00">has n</text>
+</g>
+<!-- clock -->
+<g id="node6" class="node"><title>clock</title>
+<g id="a_node6"><a xlink:href="GstClock.html" xlink:title="clock" target="_top">
+<polygon fill="#eeeeee" stroke="black" points="204,-304 150,-304 150,-268 204,-268 204,-304"/>
+<text text-anchor="middle" x="177" y="-283.8" font-family="Bitstream Vera Sans" font-size="9.00">clock</text>
+</a>
+</g>
+</g>
+<!-- element->buffer -->
+<g id="edge17" class="edge"><title>element->buffer</title>
+<path fill="none" stroke="black" d="M381.372,-347.917C390.161,-342.221 400.004,-335.839 409,-330 426.785,-318.456 433.595,-318.569 449,-304 463.157,-290.611 476.114,-272.942 485.553,-258.58"/>
+<polygon fill="black" stroke="black" points="488.516,-260.443 490.955,-250.132 482.618,-256.672 488.516,-260.443"/>
+<text text-anchor="middle" x="450.5" y="-324.4" font-family="Bitstream Vera Sans" font-size="7.00">send & receive</text>
+</g>
+<!-- element->clock -->
+<g id="edge7" class="edge"><title>element->clock</title>
+<path fill="none" stroke="black" d="M327.234,-360.439C301.305,-355.435 262.052,-345.921 231,-330 220.979,-324.862 211.039,-317.702 202.471,-310.697"/>
+<polygon fill="black" stroke="black" points="204.602,-307.915 194.718,-304.1 200.065,-313.246 204.602,-307.915"/>
+<text text-anchor="middle" x="253.5" y="-324.4" font-family="Bitstream Vera Sans" font-size="7.00">may provide</text>
+</g>
+<!-- element_factory -->
+<g id="node8" class="node"><title>element_factory</title>
+<g id="a_node8"><a xlink:href="GstElementFactory.html" xlink:title="element factory" target="_top">
+<polygon fill="#eeeeee" stroke="black" points="312,-304 222,-304 222,-268 312,-268 312,-304"/>
+<text text-anchor="middle" x="267" y="-283.8" font-family="Bitstream Vera Sans" font-size="9.00">element factory</text>
+</a>
+</g>
+</g>
+<!-- element->element_factory -->
+<g id="edge14" class="edge"><title>element->element_factory</title>
+<path fill="none" stroke="black" d="M327.192,-356.36C313.019,-350.764 296.414,-342.208 285,-330 280.68,-325.38 277.32,-319.573 274.737,-313.734"/>
+<polygon fill="black" stroke="black" points="277.899,-312.2 271.09,-304.082 271.351,-314.674 277.899,-312.2"/>
+<text text-anchor="middle" x="313" y="-324.4" font-family="Bitstream Vera Sans" font-size="7.00">is created from</text>
+</g>
+<!-- element->event -->
+<g id="edge16" class="edge"><title>element->event</title>
+<path fill="none" stroke="black" d="M382.632,-359.605C409.75,-353.864 452.014,-343.715 487,-330 502.175,-324.051 518.167,-315.984 531.895,-308.443"/>
+<polygon fill="black" stroke="black" points="533.988,-311.282 541,-303.34 530.565,-305.176 533.988,-311.282"/>
+<text text-anchor="middle" x="533.5" y="-324.4" font-family="Bitstream Vera Sans" font-size="7.00">send & receive</text>
+</g>
+<!-- element->message -->
+<g id="edge18" class="edge"><title>element->message</title>
+<path fill="none" stroke="black" d="M327.415,-360.675C295.511,-355.266 241.648,-344.871 197,-330 178.015,-323.677 157.714,-314.798 140.773,-306.749"/>
+<polygon fill="black" stroke="black" points="142.263,-303.582 131.737,-302.384 139.219,-309.885 142.263,-303.582"/>
+<text text-anchor="middle" x="206" y="-324.4" font-family="Bitstream Vera Sans" font-size="7.00">send</text>
+</g>
+<!-- pad -->
+<g id="node11" class="node"><title>pad</title>
+<g id="a_node11"><a xlink:href="GstPad.html" xlink:title="pad" target="_top">
+<polygon fill="#ccccff" stroke="black" points="440,-304 386,-304 386,-268 440,-268 440,-304"/>
+<text text-anchor="middle" x="413" y="-283.8" font-family="Bitstream Vera Sans" font-size="9.00">pad</text>
+</a>
+</g>
+</g>
+<!-- element->pad -->
+<g id="edge6" class="edge"><title>element->pad</title>
+<path fill="none" stroke="black" d="M367.872,-347.689C375.606,-337.288 385.585,-323.869 394.191,-312.294"/>
+<polygon fill="black" stroke="black" points="397.005,-314.375 400.164,-304.262 391.388,-310.199 397.005,-314.375"/>
+<text text-anchor="middle" x="396" y="-324.4" font-family="Bitstream Vera Sans" font-size="7.00">has n</text>
+</g>
+<!-- pad_template -->
+<g id="node12" class="node"><title>pad_template</title>
+<g id="a_node12"><a xlink:href="GstPadTemplate.html" xlink:title="pad template" target="_top">
+<polygon fill="#eeeeee" stroke="black" points="416,-196 336,-196 336,-160 416,-160 416,-196"/>
+<text text-anchor="middle" x="376" y="-175.8" font-family="Bitstream Vera Sans" font-size="9.00">pad template</text>
+</a>
+</g>
+</g>
+<!-- element->pad_template -->
+<g id="edge5" class="edge"><title>element->pad_template</title>
+<path fill="none" stroke="black" d="M354.373,-347.762C353.894,-328.315 353.779,-295.775 357,-268 359.427,-247.075 364.48,-223.805 368.765,-206.309"/>
+<polygon fill="black" stroke="black" points="372.254,-206.785 371.303,-196.233 365.466,-205.075 372.254,-206.785"/>
+<text text-anchor="middle" x="367" y="-284.4" font-family="Bitstream Vera Sans" font-size="7.00">has n</text>
+</g>
+<!-- element->query -->
+<g id="edge15" class="edge"><title>element->query</title>
+<path fill="none" stroke="black" d="M382.676,-362.596C423.319,-358.573 501.235,-348.981 565,-330 586.078,-323.726 608.616,-314.061 626.757,-305.482"/>
+<polygon fill="black" stroke="black" points="628.322,-308.613 635.811,-301.118 625.283,-302.307 628.322,-308.613"/>
+<text text-anchor="middle" x="603" y="-324.4" font-family="Bitstream Vera Sans" font-size="7.00">answers</text>
+</g>
+<!-- plugin_feature -->
+<g id="node15" class="node"><title>plugin_feature</title>
+<g id="a_node15"><a xlink:href="GstPluginFeature.html" xlink:title="plugin feature" target="_top">
+<polygon fill="#eeeeee" stroke="black" points="164.5,-196 81.5,-196 81.5,-160 164.5,-160 164.5,-196"/>
+<text text-anchor="middle" x="123" y="-175.8" font-family="Bitstream Vera Sans" font-size="9.00">plugin feature</text>
+</a>
+</g>
+</g>
+<!-- element_factory->plugin_feature -->
+<g id="edge22" class="edge"><title>element_factory->plugin_feature</title>
+<path fill="none" stroke="black" d="M243.864,-267.969C219.76,-250.226 181.821,-222.299 154.885,-202.471"/>
+<polygon fill="black" stroke="black" points="156.685,-199.45 146.557,-196.341 152.536,-205.088 156.685,-199.45"/>
+<text text-anchor="middle" x="223.5" y="-230.4" font-family="Bitstream Vera Sans" font-size="7.00">is-a</text>
+</g>
+<!-- pad->caps -->
+<g id="edge8" class="edge"><title>pad->caps</title>
+<path fill="none" stroke="black" d="M427.945,-267.881C431.87,-262.494 435.655,-256.298 438,-250 446.192,-227.992 449.765,-163.333 451.179,-126.151"/>
+<polygon fill="black" stroke="black" points="454.682,-126.128 451.537,-116.011 447.686,-125.881 454.682,-126.128"/>
+<text text-anchor="middle" x="460" y="-176.4" font-family="Bitstream Vera Sans" font-size="7.00">has n</text>
+</g>
+<!-- pad->pad_template -->
+<g id="edge13" class="edge"><title>pad->pad_template</title>
+<path fill="none" stroke="black" d="M393.78,-267.685C389.148,-262.473 384.748,-256.417 382,-250 376.16,-236.361 374.475,-219.918 374.334,-206.291"/>
+<polygon fill="black" stroke="black" points="377.837,-206.131 374.502,-196.075 370.838,-206.016 377.837,-206.131"/>
+<text text-anchor="middle" x="410" y="-230.4" font-family="Bitstream Vera Sans" font-size="7.00">is created from</text>
+</g>
+<!-- pad_template->caps -->
+<g id="edge9" class="edge"><title>pad_template->caps</title>
+<path fill="none" stroke="black" d="M392.867,-159.689C403.198,-149.086 416.586,-135.346 428.009,-123.622"/>
+<polygon fill="black" stroke="black" points="430.708,-125.867 435.18,-116.262 425.695,-120.982 430.708,-125.867"/>
+<text text-anchor="middle" x="427" y="-136.4" font-family="Bitstream Vera Sans" font-size="7.00">has n</text>
+</g>
+<!-- pipeline->bin -->
+<g id="edge2" class="edge"><title>pipeline->bin</title>
+<path fill="none" stroke="black" d="M252.086,-507.689C263.888,-496.985 279.215,-483.084 292.221,-471.288"/>
+<polygon fill="black" stroke="black" points="294.911,-473.573 299.967,-464.262 290.209,-468.388 294.911,-473.573"/>
+<text text-anchor="middle" x="285.5" y="-484.4" font-family="Bitstream Vera Sans" font-size="7.00">is-a</text>
+</g>
+<!-- pipeline->bus -->
+<g id="edge3" class="edge"><title>pipeline->bus</title>
+<path fill="none" stroke="black" d="M205.982,-522.778C180.69,-519.425 143.13,-511.024 118,-490 112.766,-485.621 108.637,-479.682 105.439,-473.616"/>
+<polygon fill="black" stroke="black" points="108.477,-471.842 101.154,-464.186 102.104,-474.738 108.477,-471.842"/>
+<text text-anchor="middle" x="128" y="-484.4" font-family="Bitstream Vera Sans" font-size="7.00">has 1</text>
+</g>
+<!-- pipeline->clock -->
+<g id="edge4" class="edge"><title>pipeline->clock</title>
+<path fill="none" stroke="black" d="M225.721,-507.939C211.912,-474.538 182.365,-397.851 172,-330 171.232,-324.971 171.219,-319.596 171.617,-314.408"/>
+<polygon fill="black" stroke="black" points="175.126,-314.553 172.897,-304.196 168.18,-313.682 175.126,-314.553"/>
+<text text-anchor="middle" x="201" y="-404.4" font-family="Bitstream Vera Sans" font-size="7.00">has 1</text>
+</g>
+<!-- plugin -->
+<g id="node14" class="node"><title>plugin</title>
+<g id="a_node14"><a xlink:href="GstPlugin.html" xlink:title="plugin" target="_top">
+<polygon fill="#eeeeee" stroke="black" points="54,-304 0,-304 0,-268 54,-268 54,-304"/>
+<text text-anchor="middle" x="27" y="-283.8" font-family="Bitstream Vera Sans" font-size="9.00">plugin</text>
+</a>
+</g>
+</g>
+<!-- plugin->plugin_feature -->
+<g id="edge21" class="edge"><title>plugin->plugin_feature</title>
+<path fill="none" stroke="black" d="M42.4241,-267.969C58.1458,-250.61 82.6955,-223.503 100.567,-203.769"/>
+<polygon fill="black" stroke="black" points="103.177,-206.102 107.295,-196.341 97.9882,-201.403 103.177,-206.102"/>
+<text text-anchor="middle" x="100" y="-230.4" font-family="Bitstream Vera Sans" font-size="7.00">has n</text>
+</g>
+<!-- registry -->
+<g id="node17" class="node"><title>registry</title>
+<g id="a_node17"><a xlink:href="GstRegistry.html" xlink:title="registry" target="_top">
+<polygon fill="#eeeeee" stroke="black" points="54,-384 0,-384 0,-348 54,-348 54,-384"/>
+<text text-anchor="middle" x="27" y="-363.8" font-family="Bitstream Vera Sans" font-size="9.00">registry</text>
+</a>
+</g>
+</g>
+<!-- registry->plugin -->
+<g id="edge20" class="edge"><title>registry->plugin</title>
+<path fill="none" stroke="black" d="M27,-347.689C27,-337.894 27,-325.422 27,-314.335"/>
+<polygon fill="black" stroke="black" points="30.5001,-314.262 27,-304.262 23.5001,-314.262 30.5001,-314.262"/>
+<text text-anchor="middle" x="37" y="-324.4" font-family="Bitstream Vera Sans" font-size="7.00">has n</text>
+</g>
+</g>
+</svg>
diff --git a/docs/gst/gstreamer-sections.txt b/docs/gst/gstreamer-sections.txt
index be4f437..3273fc6 100644
--- a/docs/gst/gstreamer-sections.txt
+++ b/docs/gst/gstreamer-sections.txt
@@ -617,6 +617,9 @@
gst_clock_set_calibration
gst_clock_get_timeout
gst_clock_set_timeout
+gst_clock_wait_for_sync
+gst_clock_is_synced
+gst_clock_set_synced
gst_clock_id_get_time
gst_clock_id_wait
gst_clock_id_wait_async
@@ -1707,11 +1710,12 @@
gst_object_get_name
gst_object_set_parent
gst_object_get_parent
-gst_object_has_parent
+gst_object_has_as_parent
gst_object_unparent
gst_object_default_deep_notify
gst_object_default_error
gst_object_check_uniqueness
+gst_object_has_as_ancestor
gst_object_has_ancestor
gst_object_ref
gst_object_unref
@@ -3284,6 +3288,15 @@
gst_value_set_bitmask
gst_value_get_bitmask
+<SUBSECTION flagset>
+GST_VALUE_HOLDS_FLAG_SET
+GST_TYPE_FLAG_SET
+gst_structure_get_flagset
+gst_value_get_flagset_flags
+gst_value_get_flagset_mask
+gst_value_set_flagset
+GST_FLAG_SET_MASK_EXACT
+
<SUBSECTION int64range>
GST_VALUE_HOLDS_INT64_RANGE
GST_TYPE_INT64_RANGE
@@ -3407,6 +3420,7 @@
gst_value_array_get_type
gst_value_list_get_type
gst_bitmask_get_type
+gst_flagset_get_type
</SECTION>
<SECTION>
diff --git a/docs/gst/html/GstAllocator.html b/docs/gst/html/GstAllocator.html
index 2a0d8e0..0f67797 100644
--- a/docs/gst/html/GstAllocator.html
+++ b/docs/gst/html/GstAllocator.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstAllocator</title>
+<title>GstAllocator: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="gstreamer-Gst.html" title="Gst">
<link rel="next" href="gstreamer-GstAtomicQueue.html" title="GstAtomicQueue">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -519,12 +519,14 @@
<div class="refsect2">
<a name="GstAllocator-struct"></a><h3>GstAllocator</h3>
<pre class="programlisting">typedef struct {
- GstMemoryMapFunction mem_map;
- GstMemoryUnmapFunction mem_unmap;
+ GstMemoryMapFunction mem_map;
+ GstMemoryUnmapFunction mem_unmap;
- GstMemoryCopyFunction mem_copy;
- GstMemoryShareFunction mem_share;
- GstMemoryIsSpanFunction mem_is_span;
+ GstMemoryCopyFunction mem_copy;
+ GstMemoryShareFunction mem_share;
+ GstMemoryIsSpanFunction mem_is_span;
+
+ GstMemoryUnmapFullFunction mem_unmap_full;
} GstAllocator;
</pre>
<p>The <a class="link" href="GstAllocator.html" title="GstAllocator"><span class="type">GstAllocator</span></a> is used to create new memory.</p>
@@ -562,6 +564,13 @@
<td class="struct_member_description"><p>the implementation of the GstMemoryIsSpanFunction</p></td>
<td class="struct_member_annotations"> </td>
</tr>
+<tr>
+<td class="struct_member_name"><p><span class="type">GstMemoryUnmapFullFunction</span> <em class="structfield"><code><a name="GstAllocator-struct.mem-unmap-full"></a>mem_unmap_full</code></em>;</p></td>
+<td class="struct_member_description"><p>the implementation of the GstMemoryUnmapFullFunction.
+Will be used instead of <em class="parameter"><code>mem_unmap</code></em>
+if present. Since 1.6</p></td>
+<td class="struct_member_annotations"> </td>
+</tr>
</tbody>
</table></div>
</div>
@@ -695,7 +704,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstBin.html b/docs/gst/html/GstBin.html
index e3f05ea..6999d53 100644
--- a/docs/gst/html/GstBin.html
+++ b/docs/gst/html/GstBin.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstBin</title>
+<title>GstBin: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="gstreamer-GstAtomicQueue.html" title="GstAtomicQueue">
<link rel="next" href="GstBuffer.html" title="GstBuffer">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -510,7 +510,6 @@
<a name="id-1.3.6.11.3.9"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the element could be added, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if
the bin does not want to accept the element.</p>
-<p></p>
</div>
</div>
<hr>
@@ -554,7 +553,6 @@
<a name="id-1.3.6.11.4.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the element could be removed, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if
the bin does not want to remove the element.</p>
-<p></p>
</div>
</div>
<hr>
@@ -899,7 +897,6 @@
<div class="refsect3">
<a name="id-1.3.6.11.14.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the latency could be queried and reconfigured.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1045,9 +1042,8 @@
<a name="id-1.3.6.11.18.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if syncing the state was successful for all children,
otherwise <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
-<p></p>
</div>
-<p class="since">Since 1.6</p>
+<p class="since">Since: 1.6</p>
</div>
<hr>
<div class="refsect2">
@@ -1072,7 +1068,7 @@
</tr></tbody>
</table></div>
</div>
-<p class="since">Since 1.0.5</p>
+<p class="since">Since: 1.0.5</p>
</div>
<hr>
<div class="refsect2">
@@ -1464,7 +1460,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstBuffer.html b/docs/gst/html/GstBuffer.html
index 7b4a8e5..a90ab0e 100644
--- a/docs/gst/html/GstBuffer.html
+++ b/docs/gst/html/GstBuffer.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstBuffer</title>
+<title>GstBuffer: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstBin.html" title="GstBin">
<link rel="next" href="GstBufferList.html" title="GstBufferList">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -1333,7 +1333,6 @@
<a name="id-1.3.7.8.24.7"></a><h4>Returns</h4>
<p> total size of the memory blocks in <em class="parameter"><code>buffer</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1362,7 +1361,6 @@
<a name="id-1.3.7.8.25.6"></a><h4>Returns</h4>
<p> total size of the memory blocks in <em class="parameter"><code>buffer</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1436,7 +1434,6 @@
memory blocks starting at <em class="parameter"><code>idx</code></em>
in <em class="parameter"><code>buffer</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1493,7 +1490,6 @@
<div class="refsect3">
<a name="id-1.3.7.8.27.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if resizing succeeded, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1576,9 +1572,8 @@
<div class="refsect3">
<a name="id-1.3.7.8.30.6"></a><h4>Returns</h4>
<p> the maximum amount of memory blocks that a buffer can hold.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -1921,7 +1916,6 @@
, <em class="parameter"><code>length</code></em>
and <em class="parameter"><code>skip</code></em>
will be filled.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2220,9 +2214,8 @@
<a name="id-1.3.7.8.46.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if all memory blocks in <em class="parameter"><code>buffer</code></em>
are writable</p>
-<p></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -2271,9 +2264,8 @@
<div class="refsect3">
<a name="id-1.3.7.8.47.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the memory range is writable</p>
-<p></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -2330,7 +2322,6 @@
<a name="id-1.3.7.8.48.9"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the map succeeded and <em class="parameter"><code>info</code></em>
contains valid data.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2405,7 +2396,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the map succeeded and <em class="parameter"><code>info</code></em>
contains valid
data.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2487,7 +2477,6 @@
<div class="refsect3">
<a name="id-1.3.7.8.51.6"></a><h4>Returns</h4>
<p> 0 if the memory is equal.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2540,7 +2529,6 @@
<p> The amount of bytes extracted. This value can be lower than <em class="parameter"><code>size</code></em>
when <em class="parameter"><code>buffer</code></em>
did not contain enough data.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2596,7 +2584,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.0.10</p>
+<p class="since">Since: 1.0.10</p>
</div>
<hr>
<div class="refsect2">
@@ -2648,7 +2636,6 @@
<p> The amount of bytes copied. This value can be lower than <em class="parameter"><code>size</code></em>
when <em class="parameter"><code>buffer</code></em>
did not contain enough data.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2702,7 +2689,6 @@
<p> The amount of bytes filled. This value can be lower than <em class="parameter"><code>size</code></em>
when <em class="parameter"><code>buffer</code></em>
did not contain enough data.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2812,7 +2798,6 @@
<div class="refsect3">
<a name="id-1.3.7.8.59.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the copying succeeded, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2977,7 +2962,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when <em class="parameter"><code>obuf</code></em>
was different from <em class="parameter"><code>nbuf</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3206,7 +3190,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the metadata existed and was removed, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if no such
metadata was on <em class="parameter"><code>buffer</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3296,7 +3279,6 @@
<div class="refsect3">
<a name="id-1.3.7.8.70.9"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> when <a class="link" href="GstBuffer.html#gst-buffer-foreach-meta" title="gst_buffer_foreach_meta ()"><code class="function">gst_buffer_foreach_meta()</code></a> should stop</p>
-<p></p>
</div>
</div>
<hr>
@@ -3347,7 +3329,6 @@
<a name="id-1.3.7.8.71.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> when <em class="parameter"><code>func</code></em>
returned <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> for one of the metadata.</p>
-<p></p>
</div>
</div>
</div>
@@ -3630,7 +3611,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstBufferList.html b/docs/gst/html/GstBufferList.html
index db2d022..f674a6a 100644
--- a/docs/gst/html/GstBufferList.html
+++ b/docs/gst/html/GstBufferList.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstBufferList</title>
+<title>GstBufferList: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstBuffer.html" title="GstBuffer">
<link rel="next" href="GstBufferPool.html" title="GstBufferPool">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -255,7 +255,6 @@
<div class="refsect3">
<a name="id-1.3.8.8.4.6"></a><h4>Returns</h4>
<p> the number of buffers in the buffer list</p>
-<p></p>
</div>
</div>
<hr>
@@ -561,7 +560,6 @@
<div class="refsect3">
<a name="id-1.3.8.8.13.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> when <a class="link" href="GstBufferList.html#gst-buffer-list-foreach" title="gst_buffer_list_foreach ()"><code class="function">gst_buffer_list_foreach()</code></a> should stop</p>
-<p></p>
</div>
</div>
<hr>
@@ -615,7 +613,6 @@
or when
<em class="parameter"><code>list</code></em>
is empty.</p>
-<p></p>
</div>
</div>
<hr>
@@ -673,7 +670,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstBufferPool.html b/docs/gst/html/GstBufferPool.html
index 373d188..825fbb9 100644
--- a/docs/gst/html/GstBufferPool.html
+++ b/docs/gst/html/GstBufferPool.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstBufferPool</title>
+<title>GstBufferPool: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstBufferList.html" title="GstBufferList">
<link rel="next" href="GstBus.html" title="GstBus">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -357,7 +357,6 @@
<div class="refsect3">
<a name="id-1.3.9.8.4.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if all parameters could be fetched.</p>
-<p></p>
</div>
</div>
<hr>
@@ -470,9 +469,8 @@
<div class="refsect3">
<a name="id-1.3.9.8.6.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the parameters are valid in this context.</p>
-<p></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -515,7 +513,6 @@
<div class="refsect3">
<a name="id-1.3.9.8.7.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the values are set. </p>
-<p></p>
</div>
</div>
<hr>
@@ -599,7 +596,6 @@
<div class="refsect3">
<a name="id-1.3.9.8.9.6"></a><h4>Returns</h4>
<p> the options array size as a <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -673,7 +669,6 @@
<a name="id-1.3.9.8.11.6"></a><h4>Returns</h4>
<p> a <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> of the option at <em class="parameter"><code>index</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -711,7 +706,6 @@
<a name="id-1.3.9.8.12.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the options array contains <em class="parameter"><code>option</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -779,7 +773,6 @@
<a name="id-1.3.9.8.14.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the buffer pool contains <em class="parameter"><code>option</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -860,7 +853,6 @@
<div class="refsect3">
<a name="id-1.3.9.8.16.9"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the configuration could be set.</p>
-<p></p>
</div>
</div>
<hr>
@@ -903,7 +895,6 @@
<a name="id-1.3.9.8.17.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> when the pool was not configured or when preallocation of the
buffers failed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -932,7 +923,6 @@
<div class="refsect3">
<a name="id-1.3.9.8.18.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the pool is active.</p>
-<p></p>
</div>
</div>
<hr>
@@ -966,7 +956,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -1013,7 +1003,6 @@
<a name="id-1.3.9.8.20.7"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstFlowReturn" title="enum GstFlowReturn"><span class="type">GstFlowReturn</span></a> such as <a class="link" href="GstPad.html#GST-FLOW-FLUSHING:CAPS"><code class="literal">GST_FLOW_FLUSHING</code></a> when the pool is
inactive.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1296,7 +1285,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstBus.html b/docs/gst/html/GstBus.html
index 376bb03..e23b7b8 100644
--- a/docs/gst/html/GstBus.html
+++ b/docs/gst/html/GstBus.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstBus</title>
+<title>GstBus: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstBufferPool.html" title="GstBufferPool">
<link rel="next" href="GstCaps.html" title="GstCaps">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -389,7 +389,6 @@
<div class="refsect3">
<a name="id-1.3.10.10.2.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the event source should be removed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -434,7 +433,6 @@
<div class="refsect3">
<a name="id-1.3.10.10.3.7"></a><h4>Returns</h4>
<p> <a class="link" href="GstBus.html#GstBusSyncReply" title="enum GstBusSyncReply"><span class="type">GstBusSyncReply</span></a> stating what to do with the message</p>
-<p></p>
</div>
</div>
<hr>
@@ -483,7 +481,6 @@
<a name="id-1.3.10.10.5.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the message could be posted, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the bus is flushing.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -513,7 +510,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if there are messages on the bus to be handled, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
otherwise.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -851,7 +847,6 @@
<div class="refsect3">
<a name="id-1.3.10.10.14.6"></a><h4>Returns</h4>
<p> GST_BUS_PASS</p>
-<p></p>
</div>
</div>
<hr>
@@ -910,8 +905,9 @@
. If the watch was added to the default main context it is also
possible to remove the watch using <a href="https://developer.gnome.org/glib/unstable/glib-The-Main-Event-Loop.html#g-source-remove"><code class="function">g_source_remove()</code></a>.</p>
<p>MT safe.</p>
+<p><span class="annotation">[<acronym title="Rename the original symbol's name to SYMBOL."><span class="acronym">rename-to</span></acronym> gst_bus_add_watch]</span></p>
<div class="refsect3">
-<a name="id-1.3.10.10.16.9"></a><h4>Parameters</h4>
+<a name="id-1.3.10.10.16.10"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -949,10 +945,9 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.10.10.16.10"></a><h4>Returns</h4>
+<a name="id-1.3.10.10.16.11"></a><h4>Returns</h4>
<p> The event source id or 0 if <em class="parameter"><code>bus</code></em>
already got an event source.</p>
-<p></p>
</div>
</div>
<hr>
@@ -974,8 +969,9 @@
from <em class="parameter"><code>func</code></em>
. If the watch was added to the default main context it is also
possible to remove the watch using <a href="https://developer.gnome.org/glib/unstable/glib-The-Main-Event-Loop.html#g-source-remove"><code class="function">g_source_remove()</code></a>.</p>
+<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
<div class="refsect3">
-<a name="id-1.3.10.10.17.7"></a><h4>Parameters</h4>
+<a name="id-1.3.10.10.17.8"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1003,11 +999,10 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.10.10.17.8"></a><h4>Returns</h4>
+<a name="id-1.3.10.10.17.9"></a><h4>Returns</h4>
<p> The event source id or 0 if <em class="parameter"><code>bus</code></em>
already got an event source.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1036,9 +1031,8 @@
<a name="id-1.3.10.10.18.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if <em class="parameter"><code>bus</code></em>
has no event source.</p>
-<p></p>
</div>
-<p class="since">Since 1.6</p>
+<p class="since">Since: 1.6</p>
</div>
<hr>
<div class="refsect2">
@@ -1145,7 +1139,6 @@
<div class="refsect3">
<a name="id-1.3.10.10.21.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -1498,7 +1491,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstCaps.html b/docs/gst/html/GstCaps.html
index 6abc193..b10e7eb 100644
--- a/docs/gst/html/GstCaps.html
+++ b/docs/gst/html/GstCaps.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstCaps</title>
+<title>GstCaps: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstBus.html" title="GstBus">
<link rel="next" href="GstCapsFeatures.html" title="GstCapsFeatures">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -884,9 +884,8 @@
<a name="id-1.3.11.8.10.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the foreach operation should continue, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if
the foreach operation should stop with <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
-<p></p>
</div>
-<p class="since">Since 1.6</p>
+<p class="since">Since: 1.6</p>
</div>
<hr>
<div class="refsect2">
@@ -930,7 +929,6 @@
<a name="id-1.3.11.8.11.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the map operation should continue, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if
the map operation should stop with <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -976,7 +974,6 @@
<a name="id-1.3.11.8.12.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the features and structure should be preserved,
<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if it should be removed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1209,7 +1206,6 @@
<div class="refsect3">
<a name="id-1.3.11.8.20.8"></a><h4>Returns</h4>
<p> the new <a class="link" href="GstCaps.html" title="GstCaps"><span class="type">GstCaps</span></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -1458,7 +1454,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -1613,7 +1609,7 @@
<p> the merged caps. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -1641,7 +1637,6 @@
<a name="id-1.3.11.8.32.6"></a><h4>Returns</h4>
<p> the number of structures that <em class="parameter"><code>caps</code></em>
contains</p>
-<p></p>
</div>
</div>
<hr>
@@ -1743,7 +1738,7 @@
. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -1782,7 +1777,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -1941,9 +1936,8 @@
<a name="id-1.3.11.8.39.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the supplied function returns <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for each call,
<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
-<p class="since">Since 1.6</p>
+<p class="since">Since: 1.6</p>
</div>
<hr>
<div class="refsect2">
@@ -1986,9 +1980,8 @@
<a name="id-1.3.11.8.40.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the supplied function returns <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for each call,
<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
-<p class="since">Since 1.6</p>
+<p class="since">Since: 1.6</p>
</div>
<hr>
<div class="refsect2">
@@ -2030,7 +2023,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.6</p>
+<p class="since">Since: 1.6</p>
</div>
<hr>
<div class="refsect2">
@@ -2058,7 +2051,6 @@
<a name="id-1.3.11.8.42.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>caps</code></em>
represents any format.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2087,7 +2079,6 @@
<a name="id-1.3.11.8.43.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>caps</code></em>
represents no formats.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2117,7 +2108,6 @@
<a name="id-1.3.11.8.44.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>caps</code></em>
is fixed</p>
-<p></p>
</div>
</div>
<hr>
@@ -2152,7 +2142,6 @@
<div class="refsect3">
<a name="id-1.3.11.8.45.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if both caps are equal.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2188,7 +2177,6 @@
<div class="refsect3">
<a name="id-1.3.11.8.46.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the arguments represent the same format</p>
-<p></p>
</div>
</div>
<hr>
@@ -2223,7 +2211,6 @@
<div class="refsect3">
<a name="id-1.3.11.8.47.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if both caps are strictly equal.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2264,7 +2251,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>caps1</code></em>
is a subset of <em class="parameter"><code>caps2</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2303,7 +2289,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>subset</code></em>
is a subset of <em class="parameter"><code>superset</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -2344,7 +2329,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>structure</code></em>
is a subset of <em class="parameter"><code>caps</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -2392,9 +2376,8 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>structure</code></em>
is a subset of <em class="parameter"><code>caps</code></em>
</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -2431,7 +2414,6 @@
<div class="refsect3">
<a name="id-1.3.11.8.52.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if intersection would be not empty</p>
-<p></p>
</div>
</div>
<hr>
@@ -2469,7 +2451,6 @@
<div class="refsect3">
<a name="id-1.3.11.8.53.6"></a><h4>Returns</h4>
<p> the new <a class="link" href="GstCaps.html" title="GstCaps"><span class="type">GstCaps</span></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -2514,7 +2495,6 @@
<div class="refsect3">
<a name="id-1.3.11.8.54.6"></a><h4>Returns</h4>
<p> the new <a class="link" href="GstCaps.html" title="GstCaps"><span class="type">GstCaps</span></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -2580,7 +2560,6 @@
<div class="refsect3">
<a name="id-1.3.11.8.56.7"></a><h4>Returns</h4>
<p> The simplified caps.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2626,7 +2605,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>new_caps</code></em>
was different from <em class="parameter"><code>old_caps</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -2669,7 +2647,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>new_caps</code></em>
was different from <em class="parameter"><code>old_caps</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -2784,7 +2761,6 @@
<div class="refsect3">
<a name="id-1.3.11.8.61.7"></a><h4>Returns</h4>
<p> the resulting caps</p>
-<p></p>
</div>
</div>
<hr>
@@ -2916,7 +2892,6 @@
<div class="refsect3">
<a name="id-1.3.11.8.65.7"></a><h4>Returns</h4>
<p> the same <a class="link" href="GstCaps.html" title="GstCaps"><span class="type">GstCaps</span></a> object.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3128,7 +3103,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstCapsFeatures.html b/docs/gst/html/GstCapsFeatures.html
index 28e2602..0f23987 100644
--- a/docs/gst/html/GstCapsFeatures.html
+++ b/docs/gst/html/GstCapsFeatures.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstCapsFeatures</title>
+<title>GstCapsFeatures: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstCaps.html" title="GstCaps">
<link rel="next" href="GstSample.html" title="GstSample">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -324,7 +324,7 @@
<p> a new, empty <a class="link" href="GstCapsFeatures.html" title="GstCapsFeatures"><span class="type">GstCapsFeatures</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -338,7 +338,7 @@
<p> a new, empty <a class="link" href="GstCapsFeatures.html" title="GstCapsFeatures"><span class="type">GstCapsFeatures</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -354,7 +354,7 @@
<p> a new, ANY <a class="link" href="GstCapsFeatures.html" title="GstCapsFeatures"><span class="type">GstCapsFeatures</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -392,7 +392,7 @@
<p> a new, empty <a class="link" href="GstCapsFeatures.html" title="GstCapsFeatures"><span class="type">GstCapsFeatures</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -429,7 +429,7 @@
<p> a new, empty <a class="link" href="GstCapsFeatures.html" title="GstCapsFeatures"><span class="type">GstCapsFeatures</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -466,7 +466,7 @@
<p> a new, empty <a class="link" href="GstCapsFeatures.html" title="GstCapsFeatures"><span class="type">GstCapsFeatures</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -495,7 +495,7 @@
<p> a new <a class="link" href="GstCapsFeatures.html" title="GstCapsFeatures"><span class="type">GstCapsFeatures</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -519,7 +519,7 @@
</tr></tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -550,7 +550,7 @@
<a class="link" href="GstCapsFeatures.html#gst-caps-features-free" title="gst_caps_features_free ()"><code class="function">gst_caps_features_free()</code></a> after use. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -595,7 +595,7 @@
<a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> after usage. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -632,9 +632,8 @@
<div class="refsect3">
<a name="id-1.3.12.8.14.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the parent refcount could be set.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -672,9 +671,8 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>features1</code></em>
and <em class="parameter"><code>features2</code></em>
are equal.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -702,9 +700,8 @@
<a name="id-1.3.12.8.16.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>features</code></em>
is <a class="link" href="GstCapsFeatures.html#GST-CAPS-FEATURES-ANY:CAPS" title="GST_CAPS_FEATURES_ANY"><code class="literal">GST_CAPS_FEATURES_ANY</code></a>.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -742,9 +739,8 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>features</code></em>
contains <em class="parameter"><code>feature</code></em>
.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -782,9 +778,8 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>features</code></em>
contains <em class="parameter"><code>feature</code></em>
.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -812,9 +807,8 @@
<a name="id-1.3.12.8.19.6"></a><h4>Returns</h4>
<p> The number of features in <em class="parameter"><code>features</code></em>
.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -852,9 +846,8 @@
<p> The <em class="parameter"><code>i</code></em>
-th feature of <em class="parameter"><code>features</code></em>
.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -892,9 +885,8 @@
<p> The <em class="parameter"><code>i</code></em>
-th feature of <em class="parameter"><code>features</code></em>
.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -927,7 +919,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -960,7 +952,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -993,7 +985,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -1026,7 +1018,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
</div>
<div class="refsect1">
@@ -1048,7 +1040,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstChildProxy.html b/docs/gst/html/GstChildProxy.html
index 39f37ad..6a3af2c 100644
--- a/docs/gst/html/GstChildProxy.html
+++ b/docs/gst/html/GstChildProxy.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstChildProxy</title>
+<title>GstChildProxy: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstSample.html" title="GstSample">
<link rel="next" href="GstClock.html" title="GstClock">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -246,7 +246,6 @@
<a name="id-1.3.14.11.2.6"></a><h4>Returns</h4>
<p> the number of child objects</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -383,7 +382,6 @@
usage. For plain GObjects <em class="parameter"><code>target</code></em>
is the same as <em class="parameter"><code>object</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -828,7 +826,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstClock.html b/docs/gst/html/GstClock.html
index b538af1..8c846ee 100644
--- a/docs/gst/html/GstClock.html
+++ b/docs/gst/html/GstClock.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstClock</title>
+<title>GstClock: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstChildProxy.html" title="GstChildProxy">
<link rel="next" href="gstreamer-gstconfig.html" title="gstconfig">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -17,7 +17,8 @@
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
<a href="#GstClock.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
<a href="#GstClock.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span>
- <a href="#GstClock.properties" class="shortcut">Properties</a></span>
+ <a href="#GstClock.properties" class="shortcut">Properties</a></span><span id="nav_signals"> <span class="dim">|</span>
+ <a href="#GstClock.signals" class="shortcut">Signals</a></span>
</td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><a accesskey="u" href="libgstreamer.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
@@ -309,6 +310,30 @@
</tr>
<tr>
<td class="function_type">
+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
+</td>
+<td class="function_name">
+<a class="link" href="GstClock.html#gst-clock-wait-for-sync" title="gst_clock_wait_for_sync ()">gst_clock_wait_for_sync</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
+</td>
+<td class="function_name">
+<a class="link" href="GstClock.html#gst-clock-is-synced" title="gst_clock_is_synced ()">gst_clock_is_synced</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="GstClock.html#gst-clock-set-synced" title="gst_clock_set_synced ()">gst_clock_set_synced</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
<a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="returnvalue">GstClockTime</span></a>
</td>
<td class="function_name">
@@ -394,6 +419,21 @@
</table></div>
</div>
<div class="refsect1">
+<a name="GstClock.signals"></a><h2>Signals</h2>
+<div class="informaltable"><table border="0">
+<colgroup>
+<col width="150px" class="signals_return">
+<col width="300px" class="signals_name">
+<col width="200px" class="signals_flags">
+</colgroup>
+<tbody><tr>
+<td class="signal_type"><span class="returnvalue">void</span></td>
+<td class="signal_name"><a class="link" href="GstClock.html#GstClock-synced" title="The “synced” signal">synced</a></td>
+<td class="signal_flags">Run Last</td>
+</tr></tbody>
+</table></div>
+</div>
+<div class="refsect1">
<a name="GstClock.other"></a><h2>Types and Values</h2>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
@@ -533,7 +573,7 @@
</pre>
<p>Tests if a given <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> represents a valid defined time.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.3.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.3.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -591,7 +631,7 @@
</pre>
<p>Convert a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> to seconds.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.8.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.8.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -613,7 +653,7 @@
</pre>
<p>Convert a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> to milliseconds (1/1000 of a second).</p>
<div class="refsect3">
-<a name="id-1.3.15.9.9.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.9.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -635,7 +675,7 @@
</pre>
<p>Convert a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> to microseconds (1/1000000 of a second).</p>
<div class="refsect3">
-<a name="id-1.3.15.9.10.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.10.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -657,7 +697,7 @@
</pre>
<p>Convert a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> to nanoseconds (1/1000000000 of a second).</p>
<div class="refsect3">
-<a name="id-1.3.15.9.11.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.11.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -682,7 +722,7 @@
- <em class="parameter"><code>s</code></em>
.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.12.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.12.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -711,7 +751,7 @@
</pre>
<p>Convert a <a href="https://developer.gnome.org/glib/unstable/glib-Date-and-Time-Functions.html#GTimeVal"><span class="type">GTimeVal</span></a> to a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a>.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.13.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.13.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -735,7 +775,7 @@
which is about 68 years. Expect trouble if you want to schedule stuff
in your pipeline for 2038.</div>
<div class="refsect3">
-<a name="id-1.3.15.9.14.6"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.14.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -764,7 +804,7 @@
</pre>
<p>Convert a struct timespec (see man pselect) to a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a>.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.15.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.15.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -785,7 +825,7 @@
<pre class="programlisting">#define GST_TIME_TO_TIMESPEC(t,ts)</pre>
<p>Convert a <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> to a struct timespec (see man pselect)</p>
<div class="refsect3">
-<a name="id-1.3.15.9.16.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.16.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -817,7 +857,7 @@
<em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
<p>The function prototype of the callback.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.17.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.17.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -849,9 +889,8 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.17.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.17.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> (currently unused)</p>
-<p></p>
</div>
</div>
<hr>
@@ -861,7 +900,7 @@
</pre>
<p>Cast to a clock entry</p>
<div class="refsect3">
-<a name="id-1.3.15.9.18.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.18.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -883,7 +922,7 @@
</pre>
<p>Get the owner clock of the entry</p>
<div class="refsect3">
-<a name="id-1.3.15.9.19.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.19.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -905,7 +944,7 @@
</pre>
<p>Get the type of the clock entry</p>
<div class="refsect3">
-<a name="id-1.3.15.9.20.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.20.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -927,7 +966,7 @@
</pre>
<p>Get the requested time of this entry</p>
<div class="refsect3">
-<a name="id-1.3.15.9.21.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.21.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -949,7 +988,7 @@
</pre>
<p>Get the interval of this periodic entry</p>
<div class="refsect3">
-<a name="id-1.3.15.9.22.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.22.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -971,7 +1010,7 @@
</pre>
<p>The status of the entry</p>
<div class="refsect3">
-<a name="id-1.3.15.9.23.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.23.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -993,7 +1032,7 @@
</pre>
<p>Gets the <a class="link" href="GstClock.html#GstClockFlags" title="enum GstClockFlags"><span class="type">GstClockFlags</span></a> clock flags.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.24.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.24.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1030,7 +1069,7 @@
be used to control the sampling frequency of the master and slave
clocks.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.25.6"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.25.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1062,11 +1101,10 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.25.7"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.25.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if enough observations were added to run the
regression algorithm.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1089,7 +1127,7 @@
however keep reporting its time adjusted with the last configured rate
and time offsets.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.26.7"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.26.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1111,12 +1149,11 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.26.8"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.26.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the clock is capable of being slaved to a master clock.
Trying to set a master on a clock without the
<a class="link" href="GstClock.html#GST-CLOCK-FLAG-CAN-SET-MASTER:CAPS"><span class="type">GST_CLOCK_FLAG_CAN_SET_MASTER</span></a> flag will make this function return <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1128,7 +1165,7 @@
is slaved to or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> when the clock is
not slaved to any master clock.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.27.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.27.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1143,7 +1180,7 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.27.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.27.6"></a><h4>Returns</h4>
<p> a master <a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
when this clock is not slaved to a master clock. Unref after
usage.</p>
@@ -1163,7 +1200,7 @@
of a clock can only be changed if the clock has the
<a class="link" href="GstClock.html#GST-CLOCK-FLAG-CAN-SET-RESOLUTION:CAPS"><span class="type">GST_CLOCK_FLAG_CAN_SET_RESOLUTION</span></a> flag set.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.28.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.28.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1185,9 +1222,8 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.28.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.28.6"></a><h4>Returns</h4>
<p> the new resolution of the clock.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1198,7 +1234,7 @@
<p>Get the accuracy of the clock. The accuracy of the clock is the granularity
of the values returned by <a class="link" href="GstClock.html#gst-clock-get-time" title="gst_clock_get_time ()"><code class="function">gst_clock_get_time()</code></a>.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.29.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.29.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1213,10 +1249,9 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.29.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.29.6"></a><h4>Returns</h4>
<p> the resolution of the clock in units of <a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a>.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1228,7 +1263,7 @@
monotonically increasing and adjusted according to the current
offset and rate.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.30.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.30.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1243,11 +1278,10 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.30.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.30.6"></a><h4>Returns</h4>
<p> the time of the clock. Or GST_CLOCK_TIME_NONE when
given invalid input.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1262,7 +1296,7 @@
unreffed after usage.</p>
<p>Free-function: gst_clock_id_unref</p>
<div class="refsect3">
-<a name="id-1.3.15.9.31.6"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.31.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1284,7 +1318,7 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.31.7"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.31.7"></a><h4>Returns</h4>
<p> a <a class="link" href="GstClock.html#GstClockID" title="GstClockID"><span class="type">GstClockID</span></a> that can be used to request the
time notification.</p>
<p>MT safe. </p>
@@ -1308,7 +1342,7 @@
after usage.</p>
<p>Free-function: gst_clock_id_unref</p>
<div class="refsect3">
-<a name="id-1.3.15.9.32.6"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.32.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1335,7 +1369,7 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.32.7"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.32.7"></a><h4>Returns</h4>
<p> a <a class="link" href="GstClock.html#GstClockID" title="GstClockID"><span class="type">GstClockID</span></a> that can be used to request the
time notification.</p>
<p>MT safe. </p>
@@ -1353,7 +1387,7 @@
to the provided time. Does not
modify the reference count.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.33.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.33.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1380,11 +1414,10 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.33.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.33.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the GstClockID could be reinitialized to the provided
<em class="parameter"><code>time</code></em>
, else <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1399,7 +1432,7 @@
to the provided start time and
interval. Does not modify the reference count.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.34.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.34.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1431,11 +1464,10 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.34.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.34.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the GstClockID could be reinitialized to the provided
<em class="parameter"><code>time</code></em>
, else <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1446,7 +1478,7 @@
<p>Gets the current internal time of the given clock. The time is returned
unadjusted for the offset and the rate.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.35.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.35.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1461,11 +1493,10 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.35.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.35.6"></a><h4>Returns</h4>
<p> the internal time of the clock. Or GST_CLOCK_TIME_NONE when
given invalid input.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1481,7 +1512,7 @@
clock's OBJECT_LOCK held and is mainly used by clock subclasses.</p>
<p>This function is the reverse of <a class="link" href="GstClock.html#gst-clock-unadjust-unlocked" title="gst_clock_unadjust_unlocked ()"><code class="function">gst_clock_unadjust_unlocked()</code></a>.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.36.6"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.36.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1503,9 +1534,8 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.36.7"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.36.7"></a><h4>Returns</h4>
<p> the converted time of the clock.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1522,7 +1552,7 @@
is mainly used by clock subclasses.</p>
<p>This function is the reverse of <a class="link" href="GstClock.html#gst-clock-adjust-unlocked" title="gst_clock_adjust_unlocked ()"><code class="function">gst_clock_adjust_unlocked()</code></a>.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.37.6"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.37.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1544,10 +1574,9 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.37.7"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.37.7"></a><h4>Returns</h4>
<p> the internal time of the clock corresponding to <em class="parameter"><code>external</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1570,7 +1599,7 @@
caller is not interested in the values.</p>
<p>MT safe.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.38.7"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.38.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1639,7 +1668,7 @@
until the clock catches up.</p>
<p>MT safe.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.39.11"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.39.11"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1684,7 +1713,7 @@
gst_clock_get_timeout (<em class="parameter"><code><a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> *clock</code></em>);</pre>
<p>Get the amount of time that master and slave clocks are sampled.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.40.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.40.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1699,9 +1728,8 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.40.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.40.6"></a><h4>Returns</h4>
<p> the interval between samples.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1713,7 +1741,7 @@
<p>Set the amount of time, in nanoseconds, to sample master and slave
clocks</p>
<div class="refsect3">
-<a name="id-1.3.15.9.41.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.41.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1737,12 +1765,118 @@
</div>
<hr>
<div class="refsect2">
+<a name="gst-clock-wait-for-sync"></a><h3>gst_clock_wait_for_sync ()</h3>
+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
+gst_clock_wait_for_sync (<em class="parameter"><code><a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> *clock</code></em>,
+ <em class="parameter"><code><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> timeout</code></em>);</pre>
+<p>Waits until <em class="parameter"><code>clock</code></em>
+ is synced for reporting the current time. If <em class="parameter"><code>timeout</code></em>
+
+is <a class="link" href="GstClock.html#GST-CLOCK-TIME-NONE:CAPS" title="GST_CLOCK_TIME_NONE"><code class="literal">GST_CLOCK_TIME_NONE</code></a> it will wait forever, otherwise it will time out
+after <em class="parameter"><code>timeout</code></em>
+ nanoseconds.</p>
+<p>For asynchronous waiting, the GstClock::synced signal can be used.</p>
+<p>This returns immediately with TRUE if GST_CLOCK_FLAG_NEEDS_STARTUP_SYNC
+is not set on the clock, or if the clock is already synced.</p>
+<div class="refsect3">
+<a name="id-1.3.15.10.42.7"></a><h4>Parameters</h4>
+<div class="informaltable"><table width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>clock</p></td>
+<td class="parameter_description"><p>a GstClock</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>timeout</p></td>
+<td class="parameter_description"><p>timeout for waiting or <a class="link" href="GstClock.html#GST-CLOCK-TIME-NONE:CAPS" title="GST_CLOCK_TIME_NONE"><code class="literal">GST_CLOCK_TIME_NONE</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="id-1.3.15.10.42.8"></a><h4>Returns</h4>
+<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if waiting was successful, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> on timeout</p>
+</div>
+<p class="since">Since: 1.6</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gst-clock-is-synced"></a><h3>gst_clock_is_synced ()</h3>
+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
+gst_clock_is_synced (<em class="parameter"><code><a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> *clock</code></em>);</pre>
+<p>Checks if the clock is currently synced.</p>
+<p>This returns if GST_CLOCK_FLAG_NEEDS_STARTUP_SYNC is not set on the clock.</p>
+<div class="refsect3">
+<a name="id-1.3.15.10.43.6"></a><h4>Parameters</h4>
+<div class="informaltable"><table width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>clock</p></td>
+<td class="parameter_description"><p>a GstClock</p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="id-1.3.15.10.43.7"></a><h4>Returns</h4>
+<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the clock is currently synced</p>
+</div>
+<p class="since">Since: 1.6</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gst-clock-set-synced"></a><h3>gst_clock_set_synced ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gst_clock_set_synced (<em class="parameter"><code><a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> *clock</code></em>,
+ <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> synced</code></em>);</pre>
+<p>Sets <em class="parameter"><code>clock</code></em>
+ to synced and emits the GstClock::synced signal, and wakes up any
+thread waiting in <code class="function">gst_clock_wait_synced()</code>.</p>
+<p>This function must only be called if GST_CLOCK_FLAG_NEEDS_STARTUP_SYNC
+is set on the clock, and is intended to be called by subclasses only.</p>
+<div class="refsect3">
+<a name="id-1.3.15.10.44.6"></a><h4>Parameters</h4>
+<div class="informaltable"><table width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>clock</p></td>
+<td class="parameter_description"><p>a GstClock</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>synced</p></td>
+<td class="parameter_description"><p>if the clock is synced</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: 1.6</p>
+</div>
+<hr>
+<div class="refsect2">
<a name="gst-clock-id-get-time"></a><h3>gst_clock_id_get_time ()</h3>
<pre class="programlisting"><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="returnvalue">GstClockTime</span></a>
gst_clock_id_get_time (<em class="parameter"><code><a class="link" href="GstClock.html#GstClockID" title="GstClockID"><span class="type">GstClockID</span></a> id</code></em>);</pre>
<p>Get the time of the clock ID</p>
<div class="refsect3">
-<a name="id-1.3.15.9.42.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.45.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1757,10 +1891,9 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.42.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.45.6"></a><h4>Returns</h4>
<p> the time of the given clock id.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1787,7 +1920,7 @@
Negative values indicate how much time was spent waiting on the clock
before this function returned.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.43.6"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.46.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1810,7 +1943,7 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.43.7"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.46.7"></a><h4>Returns</h4>
<p> the result of the blocking wait. <a class="link" href="GstClock.html#GST-CLOCK-EARLY:CAPS"><span class="type">GST_CLOCK_EARLY</span></a> will be returned
if the current clock time is past the time of <em class="parameter"><code>id</code></em>
, <a class="link" href="GstClock.html#GST-CLOCK-OK:CAPS"><span class="type">GST_CLOCK_OK</span></a> if
@@ -1819,7 +1952,6 @@
was
unscheduled with <a class="link" href="GstClock.html#gst-clock-id-unschedule" title="gst_clock_id_unschedule ()"><code class="function">gst_clock_id_unschedule()</code></a>.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1841,7 +1973,7 @@
can be invoked from any thread, either provided by the
core or from a streaming thread. The application should be prepared for this.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.44.6"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.47.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1873,10 +2005,9 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.44.7"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.47.7"></a><h4>Returns</h4>
<p> the result of the non blocking wait.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1892,7 +2023,7 @@
async notifications, you need to create a new <a class="link" href="GstClock.html#GstClockID" title="GstClockID"><span class="type">GstClockID</span></a>.</p>
<p>MT safe.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.45.6"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.48.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1916,7 +2047,7 @@
<p>Compares the two <a class="link" href="GstClock.html#GstClockID" title="GstClockID"><span class="type">GstClockID</span></a> instances. This function can be used
as a GCompareFunc when sorting ids.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.46.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.49.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1938,10 +2069,9 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.46.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.49.6"></a><h4>Returns</h4>
<p> negative value if a < b; zero if a = b; positive value if a > b</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1952,7 +2082,7 @@
<p>Increase the refcount of given <em class="parameter"><code>id</code></em>
.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.47.5"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.50.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1967,7 +2097,7 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.15.9.47.6"></a><h4>Returns</h4>
+<a name="id-1.3.15.10.50.6"></a><h4>Returns</h4>
<p> The same <a class="link" href="GstClock.html#GstClockID" title="GstClockID"><span class="type">GstClockID</span></a> with increased refcount.</p>
<p>MT safe. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
@@ -1983,7 +2113,7 @@
<a class="link" href="GstClock.html#GstClockID" title="GstClockID"><span class="type">GstClockID</span></a> will be freed.</p>
<p>MT safe.</p>
<div class="refsect3">
-<a name="id-1.3.15.9.48.6"></a><h4>Parameters</h4>
+<a name="id-1.3.15.10.51.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -2031,7 +2161,7 @@
<p>GStreamer clock class. Override the vmethods to implement the clock
functionality.</p>
<div class="refsect3">
-<a name="id-1.3.15.10.3.5"></a><h4>Members</h4>
+<a name="id-1.3.15.11.3.5"></a><h4>Members</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="300px" class="struct_members_name">
@@ -2115,7 +2245,7 @@
Note that GstClockEntry should be treated as an opaque structure. It must
not be extended or allocated using a custom allocator.</p>
<div class="refsect3">
-<a name="id-1.3.15.10.7.5"></a><h4>Members</h4>
+<a name="id-1.3.15.11.7.5"></a><h4>Members</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="300px" class="struct_members_name">
@@ -2135,7 +2265,7 @@
<a name="GstClockEntryType"></a><h3>enum GstClockEntryType</h3>
<p>The type of the clock entry</p>
<div class="refsect3">
-<a name="id-1.3.15.10.8.4"></a><h4>Members</h4>
+<a name="id-1.3.15.11.8.4"></a><h4>Members</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="300px" class="enum_members_name">
@@ -2166,7 +2296,7 @@
<a name="GstClockReturn"></a><h3>enum GstClockReturn</h3>
<p>The return value of a clock operation.</p>
<div class="refsect3">
-<a name="id-1.3.15.10.9.4"></a><h4>Members</h4>
+<a name="id-1.3.15.11.9.4"></a><h4>Members</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="300px" class="enum_members_name">
@@ -2239,7 +2369,7 @@
<a name="GstClockFlags"></a><h3>enum GstClockFlags</h3>
<p>The capabilities of this clock</p>
<div class="refsect3">
-<a name="id-1.3.15.10.10.4"></a><h4>Members</h4>
+<a name="id-1.3.15.11.10.4"></a><h4>Members</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="300px" class="enum_members_name">
@@ -2290,6 +2420,14 @@
<td class="enum_member_annotations"> </td>
</tr>
<tr>
+<td class="enum_member_name"><p><a name="GST-CLOCK-FLAG-NEEDS-STARTUP-SYNC:CAPS"></a>GST_CLOCK_FLAG_NEEDS_STARTUP_SYNC</p></td>
+<td class="enum_member_description">
+<p>clock needs to be synced before it can be used
+ Since: 1.6</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
<td class="enum_member_name"><p><a name="GST-CLOCK-FLAG-LAST:CAPS"></a>GST_CLOCK_FLAG_LAST</p></td>
<td class="enum_member_description">
<p>subclasses can add additional flags starting from this flag</p>
@@ -2330,12 +2468,55 @@
</div>
</div>
<div class="refsect1">
+<a name="GstClock.signal-details"></a><h2>Signal Details</h2>
+<div class="refsect2">
+<a name="GstClock-synced"></a><h3>The <code class="literal">“synced”</code> signal</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+user_function (<a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a> *clock,
+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> synced,
+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
+<p>Signaled on clocks with GST_CLOCK_FLAG_NEEDS_STARTUP_SYNC set once
+the clock is synchronized, or when it completely lost synchronization.
+This signal will not be emitted on clocks without the flag.</p>
+<p>This signal will be emitted from an arbitrary thread, most likely not
+the application's main thread.</p>
+<div class="refsect3">
+<a name="id-1.3.15.13.2.6"></a><h4>Parameters</h4>
+<div class="informaltable"><table width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>clock</p></td>
+<td class="parameter_description"><p>the clock</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>synced</p></td>
+<td class="parameter_description"><p>if the clock is synced now</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>user_data</p></td>
+<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p>Flags: Run Last</p>
+<p class="since">Since: 1.6</p>
+</div>
+</div>
+<div class="refsect1">
<a name="GstClock.see-also"></a><h2>See Also</h2>
<p><a class="link" href="GstSystemClock.html" title="GstSystemClock"><span class="type">GstSystemClock</span></a>, <a class="link" href="GstPipeline.html" title="GstPipeline"><span class="type">GstPipeline</span></a></p>
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstContext.html b/docs/gst/html/GstContext.html
index 2aedc26..c882732 100644
--- a/docs/gst/html/GstContext.html
+++ b/docs/gst/html/GstContext.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstContext</title>
+<title>GstContext: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="gstreamer-gstconfig.html" title="gstconfig">
<link rel="next" href="GstControlBinding.html" title="GstControlBinding">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -216,7 +216,7 @@
<p> The new context. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -243,7 +243,6 @@
<a name="id-1.3.17.8.3.6"></a><h4>Returns</h4>
<p> <em class="parameter"><code>context</code></em>
(for convenience when doing assignments)</p>
-<p></p>
</div>
</div>
<hr>
@@ -323,9 +322,8 @@
<div class="refsect3">
<a name="id-1.3.17.8.6.6"></a><h4>Returns</h4>
<p> The type of the context.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -363,9 +361,8 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>context</code></em>
has <em class="parameter"><code>context_type</code></em>
.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -392,9 +389,8 @@
<div class="refsect3">
<a name="id-1.3.17.8.8.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the context is persistent.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -424,7 +420,7 @@
free it and that the pointer becomes invalid when you free the context. </p>
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -454,9 +450,8 @@
that the pointer becomes invalid when you free the event.
This function checks if <em class="parameter"><code>context</code></em>
is writable.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -553,7 +548,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>new_context</code></em>
was different from <em class="parameter"><code>old_context</code></em>
</p>
-<p></p>
</div>
</div>
</div>
@@ -570,7 +564,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstControlBinding.html b/docs/gst/html/GstControlBinding.html
index e1c7d87..701eece 100644
--- a/docs/gst/html/GstControlBinding.html
+++ b/docs/gst/html/GstControlBinding.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstControlBinding</title>
+<title>GstControlBinding: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstContext.html" title="GstContext">
<link rel="next" href="GstControlSource.html" title="GstControlSource">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -205,7 +205,6 @@
<a name="id-1.3.18.9.2.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the controller value could be applied to the object
property, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
-<p></p>
</div>
</div>
<hr>
@@ -263,8 +262,9 @@
<p>The values are unboxed and ready to be used. The similar function
<a class="link" href="GstControlBinding.html#gst-control-binding-get-g-value-array" title="gst_control_binding_get_g_value_array ()"><code class="function">gst_control_binding_get_g_value_array()</code></a> returns the array as <a href="https://developer.gnome.org/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValues</span></a> and is
more suitable for bindings.</p>
+<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
<div class="refsect3">
-<a name="id-1.3.18.9.4.7"></a><h4>Parameters</h4>
+<a name="id-1.3.18.9.4.8"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -301,9 +301,8 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.18.9.4.8"></a><h4>Returns</h4>
+<a name="id-1.3.18.9.4.9"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the given array could be filled, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
-<p></p>
</div>
</div>
<hr>
@@ -362,7 +361,6 @@
<div class="refsect3">
<a name="id-1.3.18.9.5.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the given array could be filled, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
-<p></p>
</div>
</div>
<hr>
@@ -421,7 +419,6 @@
<div class="refsect3">
<a name="id-1.3.18.9.7.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the binding is inactive</p>
-<p></p>
</div>
</div>
</div>
@@ -530,7 +527,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstControlSource.html b/docs/gst/html/GstControlSource.html
index 75fefed..b370945 100644
--- a/docs/gst/html/GstControlSource.html
+++ b/docs/gst/html/GstControlSource.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstControlSource</title>
+<title>GstControlSource: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstControlBinding.html" title="GstControlBinding">
<link rel="next" href="GstDateTime.html" title="GstDateTime">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -168,7 +168,6 @@
<div class="refsect3">
<a name="id-1.3.19.8.2.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the value was successfully calculated.</p>
-<p></p>
</div>
</div>
<hr>
@@ -221,7 +220,6 @@
<div class="refsect3">
<a name="id-1.3.19.8.3.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the values were successfully calculated.</p>
-<p></p>
</div>
</div>
<hr>
@@ -262,7 +260,6 @@
<div class="refsect3">
<a name="id-1.3.19.8.4.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the value couldn't be returned, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -316,7 +313,6 @@
<div class="refsect3">
<a name="id-1.3.19.8.5.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the given array could be filled, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
-<p></p>
</div>
</div>
</div>
@@ -417,7 +413,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstDateTime.html b/docs/gst/html/GstDateTime.html
index b7ce357..f39f8b5 100644
--- a/docs/gst/html/GstDateTime.html
+++ b/docs/gst/html/GstDateTime.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstDateTime</title>
+<title>GstDateTime: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstControlSource.html" title="GstControlSource">
<link rel="next" href="GstElement.html" title="GstElement">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -312,7 +312,6 @@
<div class="refsect3">
<a name="id-1.3.20.8.2.5"></a><h4>Returns</h4>
<p> the <a href="https://developer.gnome.org/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> of GstDateTime</p>
-<p></p>
</div>
</div>
<hr>
@@ -340,7 +339,6 @@
<div class="refsect3">
<a name="id-1.3.20.8.3.6"></a><h4>Returns</h4>
<p> The day of this <a class="link" href="GstDateTime.html" title="GstDateTime"><span class="type">GstDateTime</span></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -368,7 +366,6 @@
<div class="refsect3">
<a name="id-1.3.20.8.4.6"></a><h4>Returns</h4>
<p> The month of this <a class="link" href="GstDateTime.html" title="GstDateTime"><span class="type">GstDateTime</span></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -398,7 +395,6 @@
<div class="refsect3">
<a name="id-1.3.20.8.5.6"></a><h4>Returns</h4>
<p> the hour of the day</p>
-<p></p>
</div>
</div>
<hr>
@@ -427,7 +423,6 @@
<div class="refsect3">
<a name="id-1.3.20.8.6.6"></a><h4>Returns</h4>
<p> the microsecond of the second</p>
-<p></p>
</div>
</div>
<hr>
@@ -457,7 +452,6 @@
<div class="refsect3">
<a name="id-1.3.20.8.7.6"></a><h4>Returns</h4>
<p> the minute of the hour</p>
-<p></p>
</div>
</div>
<hr>
@@ -489,7 +483,6 @@
<div class="refsect3">
<a name="id-1.3.20.8.8.6"></a><h4>Returns</h4>
<p> the offset from UTC in hours</p>
-<p></p>
</div>
</div>
<hr>
@@ -520,7 +513,6 @@
<a name="id-1.3.20.8.9.6"></a><h4>Returns</h4>
<p> the second represented by <em class="parameter"><code>datetime</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -548,7 +540,6 @@
<div class="refsect3">
<a name="id-1.3.20.8.10.6"></a><h4>Returns</h4>
<p> The year of this <a class="link" href="GstDateTime.html" title="GstDateTime"><span class="type">GstDateTime</span></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -1025,7 +1016,6 @@
<a name="id-1.3.20.8.22.5"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>datetime</code></em>
's day field is set, otherwise <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -1052,7 +1042,6 @@
<a name="id-1.3.20.8.23.5"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>datetime</code></em>
's month field is set, otherwise <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -1079,7 +1068,6 @@
<a name="id-1.3.20.8.24.5"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>datetime</code></em>
's second field is set, otherwise <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -1107,7 +1095,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>datetime</code></em>
's hour and minute fields are set,
otherwise <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -1135,7 +1122,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>datetime</code></em>
's year field is set (which should always
be the case), otherwise <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -1272,7 +1258,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstDeviceProviderFactory.html b/docs/gst/html/GstDeviceProviderFactory.html
index fb29a5d..c4d3baf 100644
--- a/docs/gst/html/GstDeviceProviderFactory.html
+++ b/docs/gst/html/GstDeviceProviderFactory.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstDeviceProviderFactory</title>
+<title>GstDeviceProviderFactory: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="gstreamer-device-probing.html" title="GStreamer Device Discovery and Device Probing">
<link rel="prev" href="gstreamer-GstDeviceProvider.html" title="GstDeviceProvider">
<link rel="next" href="gstreamer-support.html" title="GStreamer Core Support">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -186,7 +186,7 @@
found, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> otherwise. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -216,7 +216,7 @@
if the device provider couldn't be created. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -247,7 +247,7 @@
if unable to create device provider. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -276,9 +276,8 @@
<div class="refsect3">
<a name="id-1.4.5.8.5.6"></a><h4>Returns</h4>
<p> the <a href="https://developer.gnome.org/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> for device providers managed by this factory.</p>
-<p></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -321,7 +320,7 @@
. </p>
<p><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -352,7 +351,7 @@
metadata. Free with <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a> when no longer needed. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -392,9 +391,8 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>factory</code></em>
matches or if <em class="parameter"><code>classes</code></em>
is <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
-<p></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -432,9 +430,8 @@
<a name="id-1.4.5.8.9.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>factory</code></em>
matches.</p>
-<p></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -466,7 +463,7 @@
<a class="link" href="GstPluginFeature.html#gst-plugin-feature-list-free" title="gst_plugin_feature_list_free ()"><code class="function">gst_plugin_feature_list_free()</code></a> after usage. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> Gst.DeviceProviderFactory]</span></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
</div>
<div class="refsect1">
@@ -475,14 +472,14 @@
<a name="GstDeviceProviderFactory-struct"></a><h3>GstDeviceProviderFactory</h3>
<pre class="programlisting">typedef struct _GstDeviceProviderFactory GstDeviceProviderFactory;</pre>
<p>The opaque <a class="link" href="GstDeviceProviderFactory.html" title="GstDeviceProviderFactory"><span class="type">GstDeviceProviderFactory</span></a> data structure.</p>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
<a name="GstDeviceProviderFactoryClass"></a><h3>GstDeviceProviderFactoryClass</h3>
<pre class="programlisting">typedef struct _GstDeviceProviderFactoryClass GstDeviceProviderFactoryClass;</pre>
<p>The opaque <a class="link" href="GstDeviceProviderFactory.html#GstDeviceProviderFactoryClass" title="GstDeviceProviderFactoryClass"><span class="type">GstDeviceProviderFactoryClass</span></a> data structure.</p>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
</div>
<div class="refsect1">
@@ -491,7 +488,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstElement.html b/docs/gst/html/GstElement.html
index fb67cab..5eb5d21 100644
--- a/docs/gst/html/GstElement.html
+++ b/docs/gst/html/GstElement.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstElement</title>
+<title>GstElement: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstDateTime.html" title="GstDateTime">
<link rel="next" href="GstElementFactory.html" title="GstElementFactory">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -1747,7 +1747,6 @@
a pad with the same name already existed or the pad already had another
parent.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1957,8 +1956,9 @@
Pad templates can be looked up using
<a class="link" href="GstElementFactory.html#gst-element-factory-get-static-pad-templates" title="gst_element_factory_get_static_pad_templates ()"><code class="function">gst_element_factory_get_static_pad_templates()</code></a>.</p>
<p>The pad should be released with <a class="link" href="GstElement.html#gst-element-release-request-pad" title="gst_element_release_request_pad ()"><code class="function">gst_element_release_request_pad()</code></a>.</p>
+<p><span class="annotation">[<acronym title="This is the invoker for a virtual method."><span class="acronym">virtual</span></acronym> request_new_pad]</span></p>
<div class="refsect3">
-<a name="id-1.3.21.10.36.6"></a><h4>Parameters</h4>
+<a name="id-1.3.21.10.36.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1992,7 +1992,7 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.21.10.36.7"></a><h4>Returns</h4>
+<a name="id-1.3.21.10.36.8"></a><h4>Returns</h4>
<p> requested <a class="link" href="GstPad.html" title="GstPad"><span class="type">GstPad</span></a> if found,
otherwise <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Release after usage. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
@@ -2110,7 +2110,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad could be removed. Can return <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the
pad does not belong to the provided element.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2248,7 +2247,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.43.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the elements could be linked, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2324,7 +2322,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.45.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2412,7 +2409,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.47.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pads could be linked, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2475,7 +2471,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.48.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pads could be linked, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2579,7 +2574,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.50.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pads could be linked, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2629,7 +2623,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.51.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pads could be linked, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2667,7 +2660,6 @@
<a name="id-1.3.21.10.52.6"></a><h4>Returns</h4>
<p> the metadata for <em class="parameter"><code>key</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2729,7 +2721,6 @@
<a name="id-1.3.21.10.54.6"></a><h4>Returns</h4>
<p> the base time of the element.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2799,7 +2790,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.56.8"></a><h4>Returns</h4>
<p> the start time of the element.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3079,7 +3069,6 @@
<em class="parameter"><code>clock</code></em>
or when it requires a specific clock to operate.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3187,7 +3176,6 @@
<a name="id-1.3.21.10.68.8"></a><h4>Returns</h4>
<p> Result of the state change using <a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="type">GstStateChangeReturn</span></a>.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3257,7 +3245,6 @@
element is still performing a state change or
<a class="link" href="GstElement.html#GST-STATE-CHANGE-FAILURE:CAPS"><code class="literal">GST_STATE_CHANGE_FAILURE</code></a> if the last state change failed.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3295,7 +3282,6 @@
<a name="id-1.3.21.10.70.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the state was changed, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if bad parameters were given
or the elements state-locking needed no change.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3327,7 +3313,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.71.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the element's state is locked.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3397,7 +3382,6 @@
<a name="id-1.3.21.10.73.8"></a><h4>Returns</h4>
<p> The result of the commit state change.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3516,7 +3500,6 @@
<a name="id-1.3.21.10.77.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the element's state could be synced to the parent's state.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3555,7 +3538,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.78.7"></a><h4>Returns</h4>
<p> the <a class="link" href="GstElement.html#GstStateChangeReturn" title="enum GstStateChangeReturn"><span class="type">GstStateChangeReturn</span></a> of the state transition.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3674,7 +3656,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the message was successfully posted. The function returns
<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the element did not have a bus.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3714,7 +3695,6 @@
<a name="id-1.3.21.10.81.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3770,7 +3750,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.82.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3819,7 +3798,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.83.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3866,7 +3844,6 @@
<div class="refsect3">
<a name="id-1.3.21.10.84.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3907,7 +3884,6 @@
<a name="id-1.3.21.10.85.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was handled. Events that trigger a preroll (such
as flushing seeks and steps) will emit <a class="link" href="GstMessage.html#GST-MESSAGE-ASYNC-DONE:CAPS"><code class="literal">GST_MESSAGE_ASYNC_DONE</code></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3970,7 +3946,6 @@
<a name="id-1.3.21.10.86.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the seek operation succeeded. Flushing seeks will trigger a
preroll, which will emit <a class="link" href="GstMessage.html#GST-MESSAGE-ASYNC-DONE:CAPS"><code class="literal">GST_MESSAGE_ASYNC_DONE</code></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4045,7 +4020,6 @@
<a name="id-1.3.21.10.87.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was handled. Flushing seeks will trigger a
preroll, which will emit <a class="link" href="GstMessage.html#GST-MESSAGE-ASYNC-DONE:CAPS"><code class="literal">GST_MESSAGE_ASYNC_DONE</code></a>.</p>
-<p></p>
</div>
</div>
</div>
@@ -4879,7 +4853,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstElementFactory.html b/docs/gst/html/GstElementFactory.html
index b53765c..d9f4d7f 100644
--- a/docs/gst/html/GstElementFactory.html
+++ b/docs/gst/html/GstElementFactory.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstElementFactory</title>
+<title>GstElementFactory: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstElement.html" title="GstElement">
<link rel="next" href="gstreamer-GstGError.html" title="GstGError">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -409,7 +409,6 @@
<div class="refsect3">
<a name="id-1.3.22.8.2.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the registering succeeded, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> on error</p>
-<p></p>
</div>
</div>
<hr>
@@ -468,7 +467,6 @@
<a name="id-1.3.22.8.4.6"></a><h4>Returns</h4>
<p> the <a href="https://developer.gnome.org/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> for elements managed by this factory or 0 if
the factory is not loaded.</p>
-<p></p>
</div>
</div>
<hr>
@@ -566,7 +564,6 @@
<div class="refsect3">
<a name="id-1.3.22.8.7.6"></a><h4>Returns</h4>
<p> the number of pad_templates</p>
-<p></p>
</div>
</div>
<hr>
@@ -593,7 +590,6 @@
<div class="refsect3">
<a name="id-1.3.22.8.8.6"></a><h4>Returns</h4>
<p> type of URIs this element supports</p>
-<p></p>
</div>
</div>
<hr>
@@ -662,7 +658,6 @@
<a name="id-1.3.22.8.10.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when <em class="parameter"><code>factory</code></em>
implement the interface.</p>
-<p></p>
</div>
</div>
<hr>
@@ -776,7 +771,6 @@
<div class="refsect3">
<a name="id-1.3.22.8.13.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the caps are fully compatible.</p>
-<p></p>
</div>
</div>
<hr>
@@ -811,7 +805,6 @@
<div class="refsect3">
<a name="id-1.3.22.8.14.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the caps are fully compatible.</p>
-<p></p>
</div>
</div>
<hr>
@@ -846,7 +839,6 @@
<div class="refsect3">
<a name="id-1.3.22.8.15.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the caps have a common subset.</p>
-<p></p>
</div>
</div>
<hr>
@@ -881,7 +873,6 @@
<div class="refsect3">
<a name="id-1.3.22.8.16.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the caps have a common subset.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1192,7 +1183,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>factory</code></em>
is of <em class="parameter"><code>type</code></em>
.</p>
-<p></p>
</div>
</div>
</div>
@@ -1224,7 +1214,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstEvent.html b/docs/gst/html/GstEvent.html
index e2b5827..6abfdbd 100644
--- a/docs/gst/html/GstEvent.html
+++ b/docs/gst/html/GstEvent.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstEvent</title>
+<title>GstEvent: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="gstreamer-GstGError.html" title="GstGError">
<link rel="next" href="gstreamer-GstFormat.html" title="GstFormat">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -905,7 +905,6 @@
<div class="refsect3">
<a name="id-1.3.24.8.11.6"></a><h4>Returns</h4>
<p> a <a class="link" href="GstEvent.html#GstEventTypeFlags" title="enum GstEventTypeFlags"><span class="type">GstEventTypeFlags</span></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -932,7 +931,6 @@
<div class="refsect3">
<a name="id-1.3.24.8.12.6"></a><h4>Returns</h4>
<p> a reference to the static name of the event.</p>
-<p></p>
</div>
</div>
<hr>
@@ -959,7 +957,6 @@
<div class="refsect3">
<a name="id-1.3.24.8.13.6"></a><h4>Returns</h4>
<p> the quark associated with the event type</p>
-<p></p>
</div>
</div>
<hr>
@@ -1055,7 +1052,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>new_event</code></em>
was different from <em class="parameter"><code>old_event</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -1113,7 +1109,6 @@
<a name="id-1.3.24.8.18.6"></a><h4>Returns</h4>
<p> the <a class="link" href="GstEvent.html" title="GstEvent"><span class="type">GstEvent</span></a> that was in <em class="parameter"><code>old_event</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -1159,7 +1154,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>new_event</code></em>
was different from <em class="parameter"><code>old_event</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -1319,7 +1313,6 @@
owned by the event, which means that you should not free it and
that the pointer becomes invalid when you free the event.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1358,7 +1351,6 @@
<a name="id-1.3.24.8.25.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>name</code></em>
matches the name of the event structure.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1395,7 +1387,6 @@
<a name="id-1.3.24.8.26.8"></a><h4>Returns</h4>
<p> The event's sequence number.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1463,9 +1454,8 @@
<a name="id-1.3.24.8.28.8"></a><h4>Returns</h4>
<p> The event's running time offset</p>
<p>MT safe.</p>
-<p></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -1498,7 +1488,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -1793,7 +1783,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -1823,7 +1813,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -1859,7 +1849,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -1893,9 +1883,8 @@
<a name="id-1.3.24.8.41.5"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a group id was set on the event and could be parsed,
<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -2983,7 +2972,6 @@
<div class="refsect3">
<a name="id-1.3.24.8.65.6"></a><h4>Returns</h4>
<p> a new <a class="link" href="GstEvent.html" title="GstEvent"><span class="type">GstEvent</span></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3483,7 +3471,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -3732,7 +3720,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstGhostPad.html b/docs/gst/html/GstGhostPad.html
index f4c8054..2eed36e 100644
--- a/docs/gst/html/GstGhostPad.html
+++ b/docs/gst/html/GstGhostPad.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstGhostPad</title>
+<title>GstGhostPad: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="gstreamer-GstFormat.html" title="GstFormat">
<link rel="next" href="gstreamer-GstIterator.html" title="GstIterator">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -180,10 +180,8 @@
<span class="lineart">╰──</span> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
<span class="lineart">╰──</span> <a class="link" href="GstObject.html" title="GstObject">GstObject</a>
<span class="lineart">╰──</span> <a class="link" href="GstPad.html" title="GstPad">GstPad</a>
- <span class="lineart">├──</span> <a class="link" href="GstGhostPad.html#GstProxyPad">GstProxyPad</a>
- <span class="lineart">│</span> <span class="lineart">╰──</span> GstGhostPad
<span class="lineart">╰──</span> GstProxyPad
- <span class="lineart">╰──</span> <a class="link" href="GstGhostPad.html" title="GstGhostPad">GstGhostPad</a>
+ <span class="lineart">╰──</span> GstGhostPad
</pre>
</div>
<div class="refsect1">
@@ -470,7 +468,6 @@
<div class="refsect3">
<a name="id-1.3.26.9.8.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the construction succeeds, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -518,7 +515,6 @@
<div class="refsect3">
<a name="id-1.3.26.9.9.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the operation was successful.</p>
-<p></p>
</div>
</div>
<hr>
@@ -568,7 +564,6 @@
<div class="refsect3">
<a name="id-1.3.26.9.10.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the operation was successful.</p>
-<p></p>
</div>
</div>
<hr>
@@ -680,7 +675,6 @@
<div class="refsect3">
<a name="id-1.3.26.9.13.6"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstFlowReturn" title="enum GstFlowReturn"><span class="type">GstFlowReturn</span></a> from the pad.</p>
-<p></p>
</div>
</div>
<hr>
@@ -723,7 +717,6 @@
<div class="refsect3">
<a name="id-1.3.26.9.14.6"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstFlowReturn" title="enum GstFlowReturn"><span class="type">GstFlowReturn</span></a> from the pad.</p>
-<p></p>
</div>
</div>
<hr>
@@ -778,7 +771,6 @@
<div class="refsect3">
<a name="id-1.3.26.9.15.6"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstFlowReturn" title="enum GstFlowReturn"><span class="type">GstFlowReturn</span></a> from the pad.</p>
-<p></p>
</div>
</div>
</div>
@@ -801,7 +793,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstMemory.html b/docs/gst/html/GstMemory.html
index 4cd8028..f9d86b4 100644
--- a/docs/gst/html/GstMemory.html
+++ b/docs/gst/html/GstMemory.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstMemory</title>
+<title>GstMemory: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="gstreamer-GstIterator.html" title="GstIterator">
<link rel="next" href="GstMessage.html" title="GstMessage">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -531,7 +531,7 @@
</tr></tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -555,7 +555,7 @@
</tr></tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -610,7 +610,6 @@
bytes can be
accessed according to the access pattern in <em class="parameter"><code>flags</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -634,11 +633,6 @@
</tr></tbody>
</table></div>
</div>
-<div class="refsect3">
-<a name="id-1.3.28.8.13.6"></a><h4>Returns</h4>
-<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success.</p>
-<p></p>
-</div>
</div>
<hr>
<div class="refsect2">
@@ -687,7 +681,6 @@
<p> a new <a class="link" href="GstMemory.html" title="GstMemory"><span class="type">GstMemory</span></a> object wrapping a copy of the requested region in
<em class="parameter"><code>mem</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -737,7 +730,6 @@
<a name="id-1.3.28.8.15.6"></a><h4>Returns</h4>
<p> a new <a class="link" href="GstMemory.html" title="GstMemory"><span class="type">GstMemory</span></a> object sharing the requested region in <em class="parameter"><code>mem</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -785,7 +777,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>mem1</code></em>
and <em class="parameter"><code>mem2</code></em>
are in contiguous memory.</p>
-<p></p>
</div>
</div>
<hr>
@@ -803,8 +794,9 @@
<p>Initializes a newly allocated <em class="parameter"><code>mem</code></em>
with the given parameters. This function
will call <a class="link" href="gstreamer-GstMiniObject.html#gst-mini-object-init" title="gst_mini_object_init ()"><code class="function">gst_mini_object_init()</code></a> with the default memory parameters.</p>
+<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
<div class="refsect3">
-<a name="id-1.3.28.8.17.5"></a><h4>Parameters</h4>
+<a name="id-1.3.28.8.17.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -893,9 +885,8 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>mem</code></em>
was allocated from an allocator for <em class="parameter"><code>mem_type</code></em>
.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -990,7 +981,6 @@
<a name="id-1.3.28.8.21.6"></a><h4>Returns</h4>
<p> the current sizes of <em class="parameter"><code>mem</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -1166,7 +1156,6 @@
<div class="refsect3">
<a name="id-1.3.28.8.28.10"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the map operation was successful.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1244,7 +1233,6 @@
<div class="refsect3">
<a name="id-1.3.28.8.30.6"></a><h4>Returns</h4>
<p> a new <a class="link" href="GstMemory.html" title="GstMemory"><span class="type">GstMemory</span></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1293,7 +1281,6 @@
<div class="refsect3">
<a name="id-1.3.28.8.31.6"></a><h4>Returns</h4>
<p> a new <a class="link" href="GstMemory.html" title="GstMemory"><span class="type">GstMemory</span></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1342,7 +1329,6 @@
<div class="refsect3">
<a name="id-1.3.28.8.32.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the memory is contiguous and of a common parent.</p>
-<p></p>
</div>
</div>
</div>
@@ -1585,7 +1571,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstMessage.html b/docs/gst/html/GstMessage.html
index bf22bc7..5e1c4ec 100644
--- a/docs/gst/html/GstMessage.html
+++ b/docs/gst/html/GstMessage.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstMessage</title>
+<title>GstMessage: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstMemory.html" title="GstMemory">
<link rel="next" href="gstreamer-GstMeta.html" title="GstMeta">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -980,7 +980,6 @@
<div class="refsect3">
<a name="id-1.3.29.8.9.6"></a><h4>Returns</h4>
<p> the quark associated with the message type</p>
-<p></p>
</div>
</div>
<hr>
@@ -1007,7 +1006,6 @@
<div class="refsect3">
<a name="id-1.3.29.8.10.6"></a><h4>Returns</h4>
<p> a reference to the static name of the message.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1035,7 +1033,6 @@
<a name="id-1.3.29.8.11.6"></a><h4>Returns</h4>
<p> <em class="parameter"><code>msg</code></em>
(for convenience when doing assignments)</p>
-<p></p>
</div>
</div>
<hr>
@@ -1183,7 +1180,6 @@
<a name="id-1.3.29.8.16.8"></a><h4>Returns</h4>
<p> The message's sequence number.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1256,7 +1252,6 @@
<a name="id-1.3.29.8.18.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>name</code></em>
matches the name of the message structure.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1325,7 +1320,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>new_message</code></em>
was different from <em class="parameter"><code>old_message</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -3629,7 +3623,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -3665,9 +3659,8 @@
<a name="id-1.3.29.8.71.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the message had a group id set, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
<p>MT safe.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -3979,7 +3972,6 @@
This object is usually of type GstTask but other types can be added in the
future. The object remains valid as long as <em class="parameter"><code>message</code></em>
is valid.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4114,7 +4106,7 @@
<p>MT safe. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -4148,9 +4140,8 @@
<div class="refsect3">
<a name="id-1.3.29.8.83.6"></a><h4>Returns</h4>
<p> a <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> indicating if the parsing succeeded.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -4187,7 +4178,7 @@
<p>MT safe. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -4220,7 +4211,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -4256,9 +4247,8 @@
<div class="refsect3">
<a name="id-1.3.29.8.86.6"></a><h4>Returns</h4>
<p> a newly allocated <a class="link" href="GstMessage.html" title="GstMessage"><span class="type">GstMessage</span></a></p>
-<p></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -4294,9 +4284,8 @@
<div class="refsect3">
<a name="id-1.3.29.8.87.6"></a><h4>Returns</h4>
<p> a newly allocated <a class="link" href="GstMessage.html" title="GstMessage"><span class="type">GstMessage</span></a></p>
-<p></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -4330,7 +4319,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -4364,7 +4353,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
</div>
<div class="refsect1">
@@ -4893,7 +4882,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstObject.html b/docs/gst/html/GstObject.html
index a544db3..523446c 100644
--- a/docs/gst/html/GstObject.html
+++ b/docs/gst/html/GstObject.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstObject</title>
+<title>GstObject: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="gstreamer-GstMiniObject.html" title="GstMiniObject">
<link rel="next" href="GstPad.html" title="GstPad">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -151,7 +151,7 @@
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
-<a class="link" href="GstObject.html#gst-object-has-parent" title="gst_object_has_parent ()">gst_object_has_parent</a> <span class="c_punctuation">()</span>
+<a class="link" href="GstObject.html#gst-object-has-as-parent" title="gst_object_has_as_parent ()">gst_object_has_as_parent</a> <span class="c_punctuation">()</span>
</td>
</tr>
<tr>
@@ -191,6 +191,14 @@
<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
</td>
<td class="function_name">
+<a class="link" href="GstObject.html#gst-object-has-as-ancestor" title="gst_object_has_as_ancestor ()">gst_object_has_as_ancestor</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
+</td>
+<td class="function_name">
<a class="link" href="GstObject.html#gst-object-has-ancestor" title="gst_object_has_ancestor ()">gst_object_has_ancestor</a> <span class="c_punctuation">()</span>
</td>
</tr>
@@ -825,7 +833,6 @@
cases.</p>
<p>MT safe. This function grabs and releases <em class="parameter"><code>object</code></em>
's LOCK.</p>
-<p></p>
</div>
</div>
<hr>
@@ -905,7 +912,6 @@
are the same.</p>
<p>MT safe. Grabs and releases <em class="parameter"><code>object</code></em>
's LOCK.</p>
-<p></p>
</div>
</div>
<hr>
@@ -944,10 +950,10 @@
</div>
<hr>
<div class="refsect2">
-<a name="gst-object-has-parent"></a><h3>gst_object_has_parent ()</h3>
+<a name="gst-object-has-as-parent"></a><h3>gst_object_has_as_parent ()</h3>
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
-gst_object_has_parent (<em class="parameter"><code><a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> *object</code></em>,
- <em class="parameter"><code><a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> *parent</code></em>);</pre>
+gst_object_has_as_parent (<em class="parameter"><code><a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> *object</code></em>,
+ <em class="parameter"><code><a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> *parent</code></em>);</pre>
<p>Check if <em class="parameter"><code>parent</code></em>
is the parent of <em class="parameter"><code>object</code></em>
.
@@ -984,9 +990,8 @@
. Otherwise <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
<p>MT safe. Grabs and releases <em class="parameter"><code>object</code></em>
's locks.</p>
-<p></p>
</div>
-<p class="since">Since 1.6</p>
+<p class="since">Since: 1.6</p>
</div>
<hr>
<div class="refsect2">
@@ -1145,15 +1150,14 @@
,
<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if it does.</p>
<p>MT safe. Grabs and releases the LOCK of each object in the list.</p>
-<p></p>
</div>
</div>
<hr>
<div class="refsect2">
-<a name="gst-object-has-ancestor"></a><h3>gst_object_has_ancestor ()</h3>
+<a name="gst-object-has-as-ancestor"></a><h3>gst_object_has_as_ancestor ()</h3>
<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
-gst_object_has_ancestor (<em class="parameter"><code><a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> *object</code></em>,
- <em class="parameter"><code><a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> *ancestor</code></em>);</pre>
+gst_object_has_as_ancestor (<em class="parameter"><code><a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> *object</code></em>,
+ <em class="parameter"><code><a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> *ancestor</code></em>);</pre>
<p>Check if <em class="parameter"><code>object</code></em>
has an ancestor <em class="parameter"><code>ancestor</code></em>
somewhere up in
@@ -1187,7 +1191,51 @@
.</p>
<p>MT safe. Grabs and releases <em class="parameter"><code>object</code></em>
's locks.</p>
-<p></p>
+</div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gst-object-has-ancestor"></a><h3>gst_object_has_ancestor ()</h3>
+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
+gst_object_has_ancestor (<em class="parameter"><code><a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> *object</code></em>,
+ <em class="parameter"><code><a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> *ancestor</code></em>);</pre>
+<div class="warning">
+<p><code class="literal">gst_object_has_ancestor</code> is deprecated and should not be used in newly-written code.</p>
+<p>Use <a class="link" href="GstObject.html#gst-object-has-as-ancestor" title="gst_object_has_as_ancestor ()"><code class="function">gst_object_has_as_ancestor()</code></a> instead.</p>
+<p>MT safe. Grabs and releases <em class="parameter"><code>object</code></em>
+'s locks.</p>
+</div>
+<p>Check if <em class="parameter"><code>object</code></em>
+ has an ancestor <em class="parameter"><code>ancestor</code></em>
+ somewhere up in
+the hierarchy. One can e.g. check if a <a class="link" href="GstElement.html" title="GstElement"><span class="type">GstElement</span></a> is inside a <a class="link" href="GstPipeline.html" title="GstPipeline"><span class="type">GstPipeline</span></a>.</p>
+<div class="refsect3">
+<a name="id-1.3.32.10.24.6"></a><h4>Parameters</h4>
+<div class="informaltable"><table width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>object</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> to check</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>ancestor</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GstObject.html" title="GstObject"><span class="type">GstObject</span></a> to check as ancestor</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="id-1.3.32.10.24.7"></a><h4>Returns</h4>
+<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>ancestor</code></em>
+is an ancestor of <em class="parameter"><code>object</code></em>
+.</p>
</div>
</div>
<hr>
@@ -1204,7 +1252,7 @@
constructs like :
result = gst_object_ref (object->parent);</p>
<div class="refsect3">
-<a name="id-1.3.32.10.24.6"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.25.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1219,7 +1267,7 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.24.7"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.25.7"></a><h4>Returns</h4>
<p> A pointer to <em class="parameter"><code>object</code></em>
. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> Gst.Object]</span></p>
@@ -1239,7 +1287,7 @@
<p>The unref method should never be called with the LOCK held since
this might deadlock the dispose function.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.25.6"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.26.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1268,8 +1316,9 @@
the floating flag while leaving the reference count unchanged. If the object
is not floating, then this call adds a new normal reference increasing the
reference count by one.</p>
+<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
<div class="refsect3">
-<a name="id-1.3.32.10.26.6"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.27.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1299,7 +1348,7 @@
and the value pointed to by <em class="parameter"><code>oldobj</code></em>
may be <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.27.6"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.28.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1322,11 +1371,10 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.27.7"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.28.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>newobj</code></em>
was different from <em class="parameter"><code>oldobj</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -1339,7 +1387,7 @@
the object hierarchy. Only useful (or used) for debugging.</p>
<p>Free-function: g_free</p>
<div class="refsect3">
-<a name="id-1.3.32.10.28.6"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.29.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1354,7 +1402,7 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.28.7"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.29.7"></a><h4>Returns</h4>
<p> a string describing the path of <em class="parameter"><code>object</code></em>
. You must
<a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> the string after usage.</p>
@@ -1371,7 +1419,7 @@
<p>Returns a suggestion for timestamps where buffers should be split
to get best controller results.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.29.5"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.30.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1386,10 +1434,9 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.29.6"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.30.6"></a><h4>Returns</h4>
<p> Returns the suggested timestamp or <a class="link" href="GstClock.html#GST-CLOCK-TIME-NONE:CAPS" title="GST_CLOCK_TIME_NONE"><code class="literal">GST_CLOCK_TIME_NONE</code></a>
if no control-rate was set.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1403,7 +1450,7 @@
<p>If this function fails, it is most likely the application developers fault.
Most probably the control sources are not setup correctly.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.30.6"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.31.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1425,10 +1472,9 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.30.7"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.31.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the controller values could be applied to the object
properties, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
-<p></p>
</div>
</div>
<hr>
@@ -1440,7 +1486,7 @@
<p>Check if the <em class="parameter"><code>object</code></em>
has an active controlled properties.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.31.5"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.32.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1455,9 +1501,8 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.31.6"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.32.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the object has active controlled properties</p>
-<p></p>
</div>
</div>
<hr>
@@ -1471,7 +1516,7 @@
for
some time, i.e. <a class="link" href="GstObject.html#gst-object-sync-values" title="gst_object_sync_values ()"><code class="function">gst_object_sync_values()</code></a> will do nothing.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.32.5"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.33.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1506,7 +1551,7 @@
some time, i.e. <a class="link" href="GstObject.html#gst-object-sync-values" title="gst_object_sync_values ()"><code class="function">gst_object_sync_values()</code></a> will do nothing for the
property.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.33.5"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.34.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1546,7 +1591,7 @@
will take ownership of the <em class="parameter"><code>binding</code></em>
.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.34.6"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.35.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1568,11 +1613,10 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.34.7"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.35.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the given <em class="parameter"><code>binding</code></em>
has not been setup for this object or
has been setup for a non suitable property, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1584,7 +1628,7 @@
<p>Gets the corresponding <a class="link" href="GstControlBinding.html" title="GstControlBinding"><span class="type">GstControlBinding</span></a> for the property. This should be
unreferenced again after use.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.35.5"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.36.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1606,7 +1650,7 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.35.6"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.36.6"></a><h4>Returns</h4>
<p> the <a class="link" href="GstControlBinding.html" title="GstControlBinding"><span class="type">GstControlBinding</span></a> for
<em class="parameter"><code>property_name</code></em>
or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the property is not controlled. </p>
@@ -1622,7 +1666,7 @@
<p>Removes the corresponding <a class="link" href="GstControlBinding.html" title="GstControlBinding"><span class="type">GstControlBinding</span></a>. If it was the
last ref of the binding, it will be disposed.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.36.5"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.37.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1644,9 +1688,8 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.36.6"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.37.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the binding could be removed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1658,7 +1701,7 @@
<em class="parameter"><code><a class="link" href="GstClock.html#GstClockTime" title="GstClockTime"><span class="type">GstClockTime</span></a> timestamp</code></em>);</pre>
<p>Gets the value for the given controlled property at the requested time.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.37.5"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.38.5"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1685,7 +1728,7 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.37.6"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.38.6"></a><h4>Returns</h4>
<p> the GValue of the property at the given time,
or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the property isn't controlled. </p>
<p><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
@@ -1712,7 +1755,7 @@
<a class="link" href="GstObject.html#gst-object-get-g-value-array" title="gst_object_get_g_value_array ()"><code class="function">gst_object_get_g_value_array()</code></a> returns the array as <a href="https://developer.gnome.org/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValues</span></a> and is
better suites for bindings.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.38.7"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.39.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1754,9 +1797,8 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.38.8"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.39.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the given array could be filled, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
-<p></p>
</div>
</div>
<hr>
@@ -1777,7 +1819,7 @@
<p>This function is useful if one wants to e.g. draw a graph of the control
curve or apply a control curve sample by sample.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.39.6"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.40.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1819,9 +1861,8 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.39.7"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.40.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the given array could be filled, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
-<p></p>
</div>
</div>
<hr>
@@ -1841,7 +1882,7 @@
<p>The control-rate is not expected to change if the element is in
<a class="link" href="GstElement.html#GST-STATE-PAUSED:CAPS"><code class="literal">GST_STATE_PAUSED</code></a> or <a class="link" href="GstElement.html#GST-STATE-PLAYING:CAPS"><code class="literal">GST_STATE_PLAYING</code></a>.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.40.7"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.41.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -1856,9 +1897,8 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.32.10.40.8"></a><h4>Returns</h4>
+<a name="id-1.3.32.10.41.8"></a><h4>Returns</h4>
<p> the control rate in nanoseconds</p>
-<p></p>
</div>
</div>
<hr>
@@ -1876,7 +1916,7 @@
<p>The control-rate should not change if the element is in <a class="link" href="GstElement.html#GST-STATE-PAUSED:CAPS"><code class="literal">GST_STATE_PAUSED</code></a> or
<a class="link" href="GstElement.html#GST-STATE-PLAYING:CAPS"><code class="literal">GST_STATE_PLAYING</code></a>.</p>
<div class="refsect3">
-<a name="id-1.3.32.10.41.6"></a><h4>Parameters</h4>
+<a name="id-1.3.32.10.42.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -2080,7 +2120,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstPad.html b/docs/gst/html/GstPad.html
index 83b24e4..a86df6d 100644
--- a/docs/gst/html/GstPad.html
+++ b/docs/gst/html/GstPad.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstPad</title>
+<title>GstPad: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstObject.html" title="GstObject">
<link rel="next" href="GstPadTemplate.html" title="GstPadTemplate">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -1470,9 +1470,8 @@
<div class="refsect3">
<a name="id-1.3.33.10.2.6"></a><h4>Returns</h4>
<p> a static string with the name of the pad-link return.</p>
-<p></p>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -1544,7 +1543,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.5.6"></a><h4>Returns</h4>
<p> a static string with the name of the flow return.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1572,7 +1570,6 @@
<a name="id-1.3.33.10.6.6"></a><h4>Returns</h4>
<p> the quark associated with the flow return or 0 if an
invalid return was specified.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1600,7 +1597,6 @@
<a name="id-1.3.33.10.7.6"></a><h4>Returns</h4>
<p> short mnemonic for pad mode <em class="parameter"><code>mode</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -1638,9 +1634,8 @@
<a name="id-1.3.33.10.8.6"></a><h4>Returns</h4>
<p> <a class="link" href="GstPad.html#GST-FLOW-OK:CAPS"><span class="type">GST_FLOW_OK</span></a> on success, <a class="link" href="GstPad.html#GST-FLOW-FLUSHING:CAPS"><span class="type">GST_FLOW_FLUSHING</span></a> when the pad
was flushing or <a class="link" href="GstPad.html#GST-FLOW-EOS:CAPS"><span class="type">GST_FLOW_EOS</span></a> when the pad was EOS.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -1692,7 +1687,6 @@
<a name="id-1.3.33.10.10.6"></a><h4>Returns</h4>
<p> the <a class="link" href="GstPad.html#GstPadDirection" title="enum GstPadDirection"><span class="type">GstPadDirection</span></a> of the pad.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1823,7 +1817,6 @@
<p> A result code indicating if the connection worked or
what went wrong.</p>
<p>MT Safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1871,7 +1864,6 @@
<a name="id-1.3.33.10.15.8"></a><h4>Returns</h4>
<p> A result code indicating if the connection worked or
what went wrong.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1909,7 +1901,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pads were unlinked. This function returns <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if
the pads were not linked together.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1938,7 +1929,6 @@
<a name="id-1.3.33.10.17.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad is linked, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1974,7 +1964,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.18.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pads can be linked.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2040,7 +2029,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.20.6"></a><h4>Returns</h4>
<p> the current caps of the pad with incremented ref-count.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2155,7 +2143,6 @@
<a name="id-1.3.33.10.24.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when <em class="parameter"><code>pad</code></em>
has caps associated with it.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2252,7 +2239,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.26.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the iteration should continue</p>
-<p></p>
</div>
</div>
<hr>
@@ -2321,7 +2307,6 @@
<a name="id-1.3.33.10.28.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad is active.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2345,7 +2330,7 @@
</tr></tbody>
</table></div>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -2526,7 +2511,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.43.7"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstPadProbeReturn" title="enum GstPadProbeReturn"><span class="type">GstPadProbeReturn</span></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -2586,7 +2570,6 @@
happen that the probe can be run immediately and if the probe returns
GST_PAD_PROBE_REMOVE this functions returns 0.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2649,7 +2632,6 @@
<a name="id-1.3.33.10.46.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad is blocked.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2678,7 +2660,6 @@
<a name="id-1.3.33.10.47.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad is blocking.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2708,7 +2689,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.48.6"></a><h4>Returns</h4>
<p> the offset.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2984,7 +2964,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.55.8"></a><h4>Returns</h4>
<p> <a class="link" href="GstPad.html#GST-FLOW-OK:CAPS"><span class="type">GST_FLOW_OK</span></a> for success</p>
-<p></p>
</div>
</div>
<hr>
@@ -3112,7 +3091,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.58.8"></a><h4>Returns</h4>
<p> <a class="link" href="GstPad.html#GST-FLOW-OK:CAPS"><span class="type">GST_FLOW_OK</span></a> for success</p>
-<p></p>
</div>
</div>
<hr>
@@ -3194,7 +3172,6 @@
<a name="id-1.3.33.10.59.12"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstFlowReturn" title="enum GstFlowReturn"><span class="type">GstFlowReturn</span></a> from the pad.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3377,7 +3354,6 @@
. Any other
return value leaves <em class="parameter"><code>buffer</code></em>
undefined.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3496,7 +3472,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.65.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad could handle the event.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3623,7 +3598,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.68.6"></a><h4>Returns</h4>
<p> the result of the link with the specified peer.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3773,7 +3747,6 @@
<a name="id-1.3.33.10.72.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>query</code></em>
could be executed</p>
-<p></p>
</div>
</div>
<hr>
@@ -3815,7 +3788,6 @@
<a name="id-1.3.33.10.73.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>query</code></em>
could be executed</p>
-<p></p>
</div>
</div>
<hr>
@@ -3932,7 +3904,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.76.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad could be activated.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4057,7 +4028,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.79.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad could be activated or deactivated.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4087,7 +4057,6 @@
<a name="id-1.3.33.10.80.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is the GST_PAD_FLAG_NEED_RECONFIGURE flag is set on <em class="parameter"><code>pad</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4117,7 +4086,6 @@
<a name="id-1.3.33.10.81.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is the GST_PAD_FLAG_NEED_RECONFIGURE flag was set on <em class="parameter"><code>pad</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4187,7 +4155,6 @@
<a name="id-1.3.33.10.83.9"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstFlowReturn" title="enum GstFlowReturn"><span class="type">GstFlowReturn</span></a> from the peer pad.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4227,7 +4194,6 @@
<a name="id-1.3.33.10.84.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was handled.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4276,7 +4242,6 @@
<a name="id-1.3.33.10.85.9"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstFlowReturn" title="enum GstFlowReturn"><span class="type">GstFlowReturn</span></a> from the peer pad.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4357,7 +4322,6 @@
<a name="id-1.3.33.10.86.11"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstFlowReturn" title="enum GstFlowReturn"><span class="type">GstFlowReturn</span></a> from the peer pad.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4402,7 +4366,6 @@
<a name="id-1.3.33.10.87.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the operation was successful.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4457,7 +4420,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.88.9"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was handled.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4506,7 +4468,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.89.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the event was sent successfully.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4548,7 +4509,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.90.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4588,7 +4548,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed. This function returns <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
if <em class="parameter"><code>pad</code></em>
has no peer.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4636,7 +4595,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.92.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query was performed successfully.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4677,7 +4635,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.93.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4719,7 +4676,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.94.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4775,7 +4731,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.95.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4810,7 +4765,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.96.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad can accept the caps.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4905,7 +4859,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.98.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4948,7 +4901,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.99.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5006,7 +4958,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.100.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5047,7 +4998,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the peer of <em class="parameter"><code>pad</code></em>
can accept the caps or <em class="parameter"><code>pad</code></em>
has no peer.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5096,7 +5046,6 @@
or, when <em class="parameter"><code>filter</code></em>
is <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, ANY
caps.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5215,7 +5164,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.105.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the query could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5331,7 +5279,6 @@
<p> a new <a class="link" href="gstreamer-GstIterator.html#GstIterator" title="struct GstIterator"><span class="type">GstIterator</span></a> that will iterate over all pads that are
linked to the given pad on the inside of the parent element.</p>
<p>the caller must call <a class="link" href="gstreamer-GstIterator.html#gst-iterator-free" title="gst_iterator_free ()"><code class="function">gst_iterator_free()</code></a> after usage.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5530,7 +5477,6 @@
<a name="id-1.3.33.10.113.8"></a><h4>Returns</h4>
<p> A stream-id for <em class="parameter"><code>pad</code></em>
. <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> after usage.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5598,7 +5544,6 @@
<a name="id-1.3.33.10.114.7"></a><h4>Returns</h4>
<p> A stream-id for <em class="parameter"><code>pad</code></em>
. <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> after usage.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5667,7 +5612,6 @@
<a name="id-1.3.33.10.115.7"></a><h4>Returns</h4>
<p> A stream-id for <em class="parameter"><code>pad</code></em>
. <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> after usage.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5705,7 +5649,7 @@
needed. </p>
<p><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -5740,7 +5684,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.117.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the dispatching procedure has to be stopped.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5789,7 +5732,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.118.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if one of the dispatcher functions returned <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5841,7 +5783,6 @@
<a name="id-1.3.33.10.119.10"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstFlowReturn" title="enum GstFlowReturn"><span class="type">GstFlowReturn</span></a> from the pad.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5892,7 +5833,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.120.11"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstFlowReturn" title="enum GstFlowReturn"><span class="type">GstFlowReturn</span></a> from the pad.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5947,7 +5887,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.121.6"></a><h4>Returns</h4>
<p> a <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the task could be started.</p>
-<p></p>
</div>
</div>
<hr>
@@ -5978,7 +5917,6 @@
<a name="id-1.3.33.10.122.6"></a><h4>Returns</h4>
<p> a <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the task could be paused or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> when the pad
has no task.</p>
-<p></p>
</div>
</div>
<hr>
@@ -6012,7 +5950,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.123.8"></a><h4>Returns</h4>
<p> a <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the task could be stopped or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> on error.</p>
-<p></p>
</div>
</div>
<hr>
@@ -6056,7 +5993,6 @@
<a name="id-1.3.33.10.124.8"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the operation was successful.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -6296,7 +6232,7 @@
</tr></tbody>
</table></div>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -6633,7 +6569,6 @@
<a name="id-1.3.33.10.148.5"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad is linked to another pad. Use <a class="link" href="GstPad.html#gst-pad-is-linked" title="gst_pad_is_linked ()"><code class="function">gst_pad_is_linked()</code></a>
instead.</p>
-<p></p>
</div>
</div>
<hr>
@@ -6659,7 +6594,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.149.5"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad is a source pad (i.e. produces data).</p>
-<p></p>
</div>
</div>
<hr>
@@ -6685,7 +6619,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.150.5"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad is a sink pad (i.e. consumes data).</p>
-<p></p>
</div>
</div>
<hr>
@@ -6711,7 +6644,6 @@
<div class="refsect3">
<a name="id-1.3.33.10.151.5"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the pad has been activated.</p>
-<p></p>
</div>
</div>
<hr>
@@ -8063,7 +7995,7 @@
<p>Flags: Read / Write</p>
<p>Allowed values: >= 0</p>
<p>Default value: 0</p>
-<p class="since">Since 1.6</p>
+<p class="since">Since: 1.6</p>
</div>
<hr>
<div class="refsect2">
@@ -8155,7 +8087,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstPadTemplate.html b/docs/gst/html/GstPadTemplate.html
index 7c16a85..97c77bb 100644
--- a/docs/gst/html/GstPadTemplate.html
+++ b/docs/gst/html/GstPadTemplate.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstPadTemplate</title>
+<title>GstPadTemplate: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstPad.html" title="GstPad">
<link rel="next" href="gstreamer-GstParamSpec.html" title="GstParamSpec">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -775,7 +775,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstPipeline.html b/docs/gst/html/GstPipeline.html
index 1983937..038e6dd 100644
--- a/docs/gst/html/GstPipeline.html
+++ b/docs/gst/html/GstPipeline.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstPipeline</title>
+<title>GstPipeline: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="gstreamer-GstParse.html" title="GstParse">
<link rel="next" href="GstPlugin.html" title="GstPlugin">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -305,8 +305,9 @@
<p>Set the clock for <em class="parameter"><code>pipeline</code></em>
. The clock will be distributed
to all the elements managed by the pipeline.</p>
+<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
<div class="refsect3">
-<a name="id-1.3.37.10.4.5"></a><h4>Parameters</h4>
+<a name="id-1.3.37.10.4.6"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -328,11 +329,10 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.37.10.4.6"></a><h4>Returns</h4>
+<a name="id-1.3.37.10.4.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the clock could be set on the pipeline. <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if
some element did not accept the clock.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -364,7 +364,7 @@
<p> a <a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a>, unref after usage. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.6</p>
+<p class="since">Since: 1.6</p>
</div>
<hr>
<div class="refsect2">
@@ -377,8 +377,9 @@
to avoid confusion with <a class="link" href="GstElement.html#gst-element-get-clock" title="gst_element_get_clock ()"><code class="function">gst_element_get_clock()</code></a> which has a different behavior.</p>
<p>Unlike <a class="link" href="GstElement.html#gst-element-get-clock" title="gst_element_get_clock ()"><code class="function">gst_element_get_clock()</code></a>, this function will always return a
clock, even if the pipeline is not in the PLAYING state.</p>
+<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
<div class="refsect3">
-<a name="id-1.3.37.10.6.6"></a><h4>Parameters</h4>
+<a name="id-1.3.37.10.6.7"></a><h4>Parameters</h4>
<div class="informaltable"><table width="100%" border="0">
<colgroup>
<col width="150px" class="parameters_name">
@@ -393,7 +394,7 @@
</table></div>
</div>
<div class="refsect3">
-<a name="id-1.3.37.10.6.7"></a><h4>Returns</h4>
+<a name="id-1.3.37.10.6.8"></a><h4>Returns</h4>
<p> a <a class="link" href="GstClock.html" title="GstClock"><span class="type">GstClock</span></a>, unref after usage. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
@@ -533,7 +534,6 @@
<p> whether the pipeline will automatically flush its bus when
going from READY to NULL state or not.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -600,7 +600,6 @@
<a name="id-1.3.37.10.12.6"></a><h4>Returns</h4>
<p> The configured delay.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
</div>
@@ -709,7 +708,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstPlugin.html b/docs/gst/html/GstPlugin.html
index ed21bc1..182b786 100644
--- a/docs/gst/html/GstPlugin.html
+++ b/docs/gst/html/GstPlugin.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstPlugin</title>
+<title>GstPlugin: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstPipeline.html" title="GstPipeline">
<link rel="next" href="GstPluginFeature.html" title="GstPluginFeature">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -324,7 +324,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.2.5"></a><h4>Returns</h4>
<p> The error quark used in GError messages</p>
-<p></p>
</div>
</div>
<hr>
@@ -354,7 +353,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.3.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if plugin initialised successfully</p>
-<p></p>
</div>
</div>
<hr>
@@ -393,7 +391,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.4.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if plugin initialised successfully</p>
-<p></p>
</div>
</div>
<hr>
@@ -492,7 +489,7 @@
</tr></tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -518,7 +515,7 @@
</tr></tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -553,7 +550,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.8.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for a positive match, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
-<p></p>
</div>
</div>
<hr>
@@ -580,7 +576,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.9.6"></a><h4>Returns</h4>
<p> the name of the plugin</p>
-<p></p>
</div>
</div>
<hr>
@@ -607,7 +602,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.10.6"></a><h4>Returns</h4>
<p> the long name of the plugin</p>
-<p></p>
</div>
</div>
<hr>
@@ -634,7 +628,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.11.6"></a><h4>Returns</h4>
<p> the filename of the plugin</p>
-<p></p>
</div>
</div>
<hr>
@@ -661,7 +654,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.12.6"></a><h4>Returns</h4>
<p> the license of the plugin</p>
-<p></p>
</div>
</div>
<hr>
@@ -688,7 +680,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.13.6"></a><h4>Returns</h4>
<p> the package of the plugin</p>
-<p></p>
</div>
</div>
<hr>
@@ -715,7 +706,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.14.6"></a><h4>Returns</h4>
<p> the origin of the plugin</p>
-<p></p>
</div>
</div>
<hr>
@@ -742,7 +732,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.15.6"></a><h4>Returns</h4>
<p> the source of the plugin</p>
-<p></p>
</div>
</div>
<hr>
@@ -769,7 +758,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.16.6"></a><h4>Returns</h4>
<p> the version of the plugin</p>
-<p></p>
</div>
</div>
<hr>
@@ -829,7 +817,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.18.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is loaded, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
-<p></p>
</div>
</div>
<hr>
@@ -1106,7 +1093,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.25.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the plugin was registered correctly, otherwise <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1207,7 +1193,6 @@
<div class="refsect3">
<a name="id-1.3.38.8.26.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the plugin was registered correctly, otherwise <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1581,7 +1566,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstPluginFeature.html b/docs/gst/html/GstPluginFeature.html
index 617b18a..ab776ed 100644
--- a/docs/gst/html/GstPluginFeature.html
+++ b/docs/gst/html/GstPluginFeature.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstPluginFeature</title>
+<title>GstPluginFeature: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstPlugin.html" title="GstPlugin">
<link rel="next" href="gstreamer-GstPoll.html" title="GstPoll">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -214,7 +214,6 @@
<div class="refsect3">
<a name="id-1.3.39.8.2.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for a positive match, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
-<p></p>
</div>
</div>
<hr>
@@ -301,7 +300,6 @@
<div class="refsect3">
<a name="id-1.3.39.8.5.6"></a><h4>Returns</h4>
<p> The rank of the feature</p>
-<p></p>
</div>
</div>
<hr>
@@ -392,7 +390,7 @@
plugin. </p>
<p><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -574,7 +572,6 @@
<a name="id-1.3.39.8.13.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the plugin feature has at least
the required version, otherwise <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -613,7 +610,6 @@
equal but the name of p1 comes before the name of p2; zero if the rank
and names are equal; positive value if the rank of p1 < the rank of p2 or the
ranks are equal but the name of p2 comes before the name of p1</p>
-<p></p>
</div>
</div>
</div>
@@ -682,7 +678,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstPreset.html b/docs/gst/html/GstPreset.html
index 7de79b0..ad9c756 100644
--- a/docs/gst/html/GstPreset.html
+++ b/docs/gst/html/GstPreset.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstPreset</title>
+<title>GstPreset: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="gstreamer-GstPoll.html" title="GstPoll">
<link rel="next" href="gstreamer-gstprotection.html" title="gstprotection">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -271,7 +271,6 @@
<a name="id-1.3.41.8.4.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for success, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if e.g. there is no preset with that <em class="parameter"><code>name</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -308,7 +307,6 @@
<div class="refsect3">
<a name="id-1.3.41.8.5.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for success, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a></p>
-<p></p>
</div>
</div>
<hr>
@@ -352,7 +350,6 @@
<a name="id-1.3.41.8.6.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for success, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if e.g. there is no preset with <em class="parameter"><code>old_name</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -388,7 +385,6 @@
<a name="id-1.3.41.8.7.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for success, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if e.g. there is no preset with that <em class="parameter"><code>name</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -441,7 +437,6 @@
<a name="id-1.3.41.8.8.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for success, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if e.g. there is no preset with that <em class="parameter"><code>name</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -494,7 +489,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for success, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if e.g. there is no preset with that <em class="parameter"><code>name</code></em>
or no value for the given <em class="parameter"><code>tag</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -523,7 +517,6 @@
<div class="refsect3">
<a name="id-1.3.41.8.10.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for success, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the dir already has been set</p>
-<p></p>
</div>
</div>
<hr>
@@ -564,9 +557,8 @@
<div class="refsect3">
<a name="id-1.3.41.8.12.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if presets are editable or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if they are static</p>
-<p></p>
</div>
-<p class="since">Since 1.6</p>
+<p class="since">Since: 1.6</p>
</div>
</div>
<div class="refsect1">
@@ -661,7 +653,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstQuery.html b/docs/gst/html/GstQuery.html
index 9d5dd4c..5b82f05 100644
--- a/docs/gst/html/GstQuery.html
+++ b/docs/gst/html/GstQuery.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstQuery</title>
+<title>GstQuery: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="gstreamer-gstprotection.html" title="gstprotection">
<link rel="next" href="GstRegistry.html" title="GstRegistry">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -1049,7 +1049,6 @@
<div class="refsect3">
<a name="id-1.3.43.8.8.6"></a><h4>Returns</h4>
<p> a <a class="link" href="GstQuery.html#GstQueryTypeFlags" title="enum GstQueryTypeFlags"><span class="type">GstQueryTypeFlags</span></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1076,7 +1075,6 @@
<div class="refsect3">
<a name="id-1.3.43.8.9.6"></a><h4>Returns</h4>
<p> a reference to the static name of the query.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1103,7 +1101,6 @@
<div class="refsect3">
<a name="id-1.3.43.8.10.6"></a><h4>Returns</h4>
<p> the quark associated with the query type</p>
-<p></p>
</div>
</div>
<hr>
@@ -1131,7 +1128,6 @@
<a name="id-1.3.43.8.11.6"></a><h4>Returns</h4>
<p> <em class="parameter"><code>q</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -1279,7 +1275,6 @@
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>new_query</code></em>
was different from <em class="parameter"><code>old_query</code></em>
</p>
-<p></p>
</div>
</div>
<hr>
@@ -2913,7 +2908,6 @@
<div class="refsect3">
<a name="id-1.3.43.8.58.6"></a><h4>Returns</h4>
<p> a <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> indicating if the range was added or not.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2941,7 +2935,6 @@
<div class="refsect3">
<a name="id-1.3.43.8.59.6"></a><h4>Returns</h4>
<p> the range array size as a <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -2990,7 +2983,6 @@
<div class="refsect3">
<a name="id-1.3.43.8.60.6"></a><h4>Returns</h4>
<p> a <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> indicating if the parsing succeeded.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3105,7 +3097,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -3136,7 +3128,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -3173,7 +3165,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -3206,7 +3198,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.4</p>
+<p class="since">Since: 1.4</p>
</div>
<hr>
<div class="refsect2">
@@ -3358,7 +3350,6 @@
<div class="refsect3">
<a name="id-1.3.43.8.71.6"></a><h4>Returns</h4>
<p> the pool array size as a <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3503,7 +3494,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -3572,7 +3563,6 @@
<div class="refsect3">
<a name="id-1.3.43.8.76.7"></a><h4>Returns</h4>
<p> the allocator array size as a <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3693,7 +3683,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -3759,7 +3749,6 @@
<div class="refsect3">
<a name="id-1.3.43.8.81.6"></a><h4>Returns</h4>
<p> the metadata API array size as a <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3803,7 +3792,6 @@
<a name="id-1.3.43.8.82.6"></a><h4>Returns</h4>
<p> a <a href="https://developer.gnome.org/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> of the metadata API at <em class="parameter"><code>index</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -3881,7 +3869,6 @@
<a name="id-1.3.43.8.84.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when <em class="parameter"><code>api</code></em>
is in the list of metadata.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4050,7 +4037,6 @@
<div class="refsect3">
<a name="id-1.3.43.8.89.6"></a><h4>Returns</h4>
<p> the scheduling mode array size as a <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a>.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4088,7 +4074,6 @@
<a name="id-1.3.43.8.90.6"></a><h4>Returns</h4>
<p> a <a class="link" href="GstPad.html#GstPadMode" title="enum GstPadMode"><span class="type">GstPadMode</span></a> of the scheduling mode at <em class="parameter"><code>index</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4132,7 +4117,6 @@
<a name="id-1.3.43.8.91.7"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when <em class="parameter"><code>mode</code></em>
is in the list of scheduling modes.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4180,7 +4164,6 @@
is in the list of scheduling modes
and <em class="parameter"><code>flags</code></em>
are compatible with query flags.</p>
-<p></p>
</div>
</div>
<hr>
@@ -4223,7 +4206,7 @@
<p> a new <a class="link" href="GstQuery.html" title="GstQuery"><span class="type">GstQuery</span></a>. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -4254,7 +4237,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -4288,7 +4271,7 @@
</tbody>
</table></div>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
<hr>
<div class="refsect2">
@@ -4322,9 +4305,8 @@
<div class="refsect3">
<a name="id-1.3.43.8.97.6"></a><h4>Returns</h4>
<p> a <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> indicating if the parsing succeeded.</p>
-<p></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
</div>
<div class="refsect1">
@@ -4649,7 +4631,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstRegistry.html b/docs/gst/html/GstRegistry.html
index b5e4575..c68412a 100644
--- a/docs/gst/html/GstRegistry.html
+++ b/docs/gst/html/GstRegistry.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstRegistry</title>
+<title>GstRegistry: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstQuery.html" title="GstQuery">
<link rel="next" href="GstSegment.html" title="GstSegment">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -381,7 +381,6 @@
<div class="refsect3">
<a name="id-1.3.44.9.4.6"></a><h4>Returns</h4>
<p> the feature list cookie.</p>
-<p></p>
</div>
</div>
<hr>
@@ -487,7 +486,6 @@
<a name="id-1.3.44.9.7.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -842,7 +840,6 @@
<div class="refsect3">
<a name="id-1.3.44.9.16.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if registry changed</p>
-<p></p>
</div>
</div>
<hr>
@@ -948,7 +945,6 @@
<a name="id-1.3.44.9.19.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success.</p>
<p>MT safe.</p>
-<p></p>
</div>
</div>
<hr>
@@ -1005,7 +1001,6 @@
<a name="id-1.3.44.9.20.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the feature could be found and the version is
the same as the required version or newer, and <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>
</div>
</div>
@@ -1101,7 +1096,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstSample.html b/docs/gst/html/GstSample.html
index 2b89995..b2467a7 100644
--- a/docs/gst/html/GstSample.html
+++ b/docs/gst/html/GstSample.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstSample</title>
+<title>GstSample: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstCapsFeatures.html" title="GstCapsFeatures">
<link rel="next" href="GstChildProxy.html" title="GstChildProxy">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -392,7 +392,7 @@
. </p>
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
</div>
-<p class="since">Since 1.2</p>
+<p class="since">Since: 1.2</p>
</div>
</div>
<div class="refsect1">
@@ -411,7 +411,6 @@
</div>
</div>
<div class="footer">
-<hr>
- Generated by GTK-Doc V1.21</div>
+<hr>Generated by GTK-Doc V1.24</div>
</body>
</html>
\ No newline at end of file
diff --git a/docs/gst/html/GstSegment.html b/docs/gst/html/GstSegment.html
index 469b7bc..3214e76 100644
--- a/docs/gst/html/GstSegment.html
+++ b/docs/gst/html/GstSegment.html
@@ -2,13 +2,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GStreamer 1.0 Core Reference Manual: GstSegment</title>
+<title>GstSegment: GStreamer 1.0 Core Reference Manual</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="GStreamer 1.0 Core Reference Manual">
<link rel="up" href="libgstreamer.html" title="GStreamer Core Library">
<link rel="prev" href="GstRegistry.html" title="GstRegistry">
<link rel="next" href="GstStructure.html" title="GstStructure">
-<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
+<meta name="generator" content="GTK-Doc V1.24 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -316,7 +316,6 @@
completely in <em class="parameter"><code>segment</code></em>
, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the values are completely outside
of the segment.</p>
-<p></p>
</div>
</div>
<hr>
@@ -532,7 +531,6 @@
<div class="refsect3">
<a name="id-1.3.45.8.7.11"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the seek could be performed.</p>
-<p></p>
</div>
</div>
<hr>
@@ -583,7 +581,6 @@
<a name="id-1.3.45.8.8.8"></a><h4>Returns</h4>
<p> the position as the total running time or -1 when an invalid position
was given.</p>
-<p></p>
</div>
</div>
<hr>
@@ -645,9 +642,8 @@
<div class="refsect3">
<a name="id-1.3.45.8.9.10"></a><h4>Returns</h4>
<p> a 1 or -1 on success, 0 on failure.</p>
-<p></p>
</div>
-<p class="since">Since 1.6</p>
+<p class="since">Since: 1.6</p>
</div>
<hr>
<div class="refsect2">
@@ -700,7 +696,6 @@
<a name="id-1.3.45.8.10.7"></a><h4>Returns</h4>
<p> the position in stream_time or -1 when an invalid position
was given.</p>
-<p></p>
</div>
</div>
<hr>
@@ -748,7 +743,6 @@
-1 when <em class="parameter"><code>running_time</code></em>
is -1 or when it is not inside <em class="parameter"><code>segment</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -795,7 +789,6 @@
returned, <em class="parameter"><code>running_time</code></em>
is -1 or not in <em class="parameter"><code>segment</code></em>
.</p>
-<p></p>
</div>
</div>
<hr>
@@ -874,9 +867,8 @@
returned, <em class="parameter"><code>offset</code></em>
is not in <em class="parameter"><code>segment</code></em>
.</p>
-<p></p>
</div>
-<p class="since">Since 1.2.3</p>
+<p class="since">Since: 1.2.3</p>
</div>
<hr>
<div class="refsect2">
@@ -911,9 +903,8 @@
<div class="refsect3">
<a name="id-1.3.45.8.15.6"></a><h4>Returns</h4>
<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the segments are equal, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
-<p></p>
</div>