docs: xref more

This commit is contained in:
Stefan Kost 2009-04-08 18:13:42 +03:00
parent c9917a1a84
commit 7d0b4f10c6
2 changed files with 10 additions and 11 deletions

View file

@ -51,10 +51,9 @@
* *
* gst_object_unref() is used to drop your reference to the bin. * gst_object_unref() is used to drop your reference to the bin.
* *
* The <link linkend="GstBin-element-added">element-added</link> signal is * The #GstBin::element-added signal is fired whenever a new element is added to
* fired whenever a new element is added to the bin. Likewise the <link * the bin. Likewise the #GstBin::element-removed signal is fired whenever an
* linkend="GstBin-element-removed">element-removed</link> signal is fired * element is removed from the bin.
* whenever an element is removed from the bin.
* *
* <refsect2><title>Notes</title> * <refsect2><title>Notes</title>
* <para> * <para>

View file

@ -52,7 +52,7 @@
* gst_clock_id_wait(). To receive a callback when the specific time is reached * gst_clock_id_wait(). To receive a callback when the specific time is reached
* in the clock use gst_clock_id_wait_async(). Both these calls can be * in the clock use gst_clock_id_wait_async(). Both these calls can be
* interrupted with the gst_clock_id_unschedule() call. If the blocking wait is * interrupted with the gst_clock_id_unschedule() call. If the blocking wait is
* unscheduled a return value of GST_CLOCK_UNSCHEDULED is returned. * unscheduled a return value of #GST_CLOCK_UNSCHEDULED is returned.
* *
* Periodic callbacks scheduled async will be repeatedly called automatically * Periodic callbacks scheduled async will be repeatedly called automatically
* until it is unscheduled. To schedule a sync periodic callback, * until it is unscheduled. To schedule a sync periodic callback,
@ -92,12 +92,12 @@
* of their internal clock relative to the master clock by using the * of their internal clock relative to the master clock by using the
* gst_clock_get_calibration() function. * gst_clock_get_calibration() function.
* *
* The master/slave synchronisation can be tuned with the "timeout", "window-size" * The master/slave synchronisation can be tuned with the #GstClock:timeout,
* and "window-threshold" properties. The "timeout" property defines the interval * #GstClock:window-size and #GstClock:window-threshold properties.
* to sample the master clock and run the calibration functions. * The #GstClock:timeout property defines the interval to sample the master
* "window-size" defines the number of samples to use when calibrating and * clock and run the calibration functions. #GstClock:window-size defines the
* "window-threshold" defines the minimum number of samples before the * number of samples to use when calibrating and #GstClock:window-threshold
* calibration is performed. * defines the minimum number of samples before the calibration is performed.
* *
* Last reviewed on 2006-08-11 (0.10.10) * Last reviewed on 2006-08-11 (0.10.10)
*/ */