From 7d0b4f10c610736fe3ffc6770f840903118345f9 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Wed, 8 Apr 2009 18:13:42 +0300 Subject: [PATCH] docs: xref more --- gst/gstbin.c | 7 +++---- gst/gstclock.c | 14 +++++++------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/gst/gstbin.c b/gst/gstbin.c index d3fceb4b11..5502c2a14c 100644 --- a/gst/gstbin.c +++ b/gst/gstbin.c @@ -51,10 +51,9 @@ * * gst_object_unref() is used to drop your reference to the bin. * - * The element-added signal is - * fired whenever a new element is added to the bin. Likewise the element-removed signal is fired - * whenever an element is removed from the bin. + * The #GstBin::element-added signal is fired whenever a new element is added to + * the bin. Likewise the #GstBin::element-removed signal is fired whenever an + * element is removed from the bin. * * Notes * diff --git a/gst/gstclock.c b/gst/gstclock.c index 9d518942e0..afc3df8355 100644 --- a/gst/gstclock.c +++ b/gst/gstclock.c @@ -52,7 +52,7 @@ * 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 * 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 * 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 * gst_clock_get_calibration() function. * - * The master/slave synchronisation can be tuned with the "timeout", "window-size" - * and "window-threshold" properties. The "timeout" property defines the interval - * to sample the master clock and run the calibration functions. - * "window-size" defines the number of samples to use when calibrating and - * "window-threshold" defines the minimum number of samples before the - * calibration is performed. + * The master/slave synchronisation can be tuned with the #GstClock:timeout, + * #GstClock:window-size and #GstClock:window-threshold properties. + * The #GstClock:timeout property defines the interval to sample the master + * clock and run the calibration functions. #GstClock:window-size defines the + * number of samples to use when calibrating and #GstClock:window-threshold + * defines the minimum number of samples before the calibration is performed. * * Last reviewed on 2006-08-11 (0.10.10) */