From 3bc2d8854c045ddf18a1280742888de50ad88d7c Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Fri, 20 May 2011 16:02:58 +0200 Subject: [PATCH] ges: More "Since: 0.10.2" doc markers --- ges/ges-timeline-effect.c | 2 +- ges/ges-timeline-object.h | 4 ++-- ges/ges-timeline-parse-launch-effect.c | 4 +++- ges/ges-track-effect.c | 2 +- ges/ges-track-effect.h | 1 - ges/ges-track-object.c | 26 ++++++++++++++++++++++++++ ges/ges-track-parse-launch-effect.c | 4 +++- 7 files changed, 36 insertions(+), 7 deletions(-) diff --git a/ges/ges-timeline-effect.c b/ges/ges-timeline-effect.c index a89dc62d0e..cdfe575106 100644 --- a/ges/ges-timeline-effect.c +++ b/ges/ges-timeline-effect.c @@ -28,7 +28,7 @@ * you use another type of #GESTimelineLayer, you will have to handle it * yourself. * - * Since: 0.10.2 + * @Since: 0.10.2 */ #include diff --git a/ges/ges-timeline-object.h b/ges/ges-timeline-object.h index 34d7c478be..1787c0b1cb 100644 --- a/ges/ges-timeline-object.h +++ b/ges/ges-timeline-object.h @@ -182,9 +182,9 @@ struct _GESTimelineObject { * @fill_track_object: method to fill an associated #GESTrackObject. * @need_fill_track: Set to TRUE if @fill_track_object needs to be called. * @track_object_added: Should be overridden by subclasses if they need to perform an - * operation when a #GESTrackObject is added. + * operation when a #GESTrackObject is added. Since: 0.10.2 * @track_object_released: Should be overridden by subclassed if they need to perform - * action when a #GESTrackObject is released. + * action when a #GESTrackObject is released. Since: 0.10.2 * * Subclasses can override the @create_track_object and @fill_track_object methods. */ diff --git a/ges/ges-timeline-parse-launch-effect.c b/ges/ges-timeline-parse-launch-effect.c index 5ab5e21f54..792b753b96 100644 --- a/ges/ges-timeline-parse-launch-effect.c +++ b/ges/ges-timeline-parse-launch-effect.c @@ -31,7 +31,7 @@ * you use another type of #GESTimelineLayer, you will have to handle it * yourself. * - * Since: 0.10.2 + * @Since: 0.10.2 */ #include @@ -205,6 +205,8 @@ ges_tl_parse_launch_effect_create_track_obj (GESTimelineObject * self, * * Returns: (transfer full): a newly created #GESTimelineParseLaunchEffect, or * %NULL if something went wrong. + * + * Since: 0.10.2 */ GESTimelineParseLaunchEffect * ges_timeline_parse_launch_effect_new (const gchar * video_bin_description, diff --git a/ges/ges-track-effect.c b/ges/ges-track-effect.c index 3093b37b66..83b1b9e143 100644 --- a/ges/ges-track-effect.c +++ b/ges/ges-track-effect.c @@ -22,7 +22,7 @@ * @short_description: adds an effect to a stream in a #GESTimelineSource or a * #GESTimelineLayer * - * Since: 0.10.2 + * @Since: 0.10.2 */ #include diff --git a/ges/ges-track-effect.h b/ges/ges-track-effect.h index 18d1fe8411..b2fa2d6fde 100644 --- a/ges/ges-track-effect.h +++ b/ges/ges-track-effect.h @@ -43,7 +43,6 @@ typedef struct _GESTrackEffectPrivate GESTrackEffectPrivate; /** * GESTrackEffect: - * */ struct _GESTrackEffect { diff --git a/ges/ges-track-object.c b/ges/ges-track-object.c index ac4e66719f..dd7c703e54 100644 --- a/ges/ges-track-object.c +++ b/ges/ges-track-object.c @@ -911,6 +911,8 @@ ges_track_object_is_locked (GESTrackObject * object) * Get the position of the object in the container #GESTrack. * * Returns: the start position (in #GstClockTime) + * + * Since: 0.10.2 */ guint64 ges_track_object_get_start (GESTrackObject * object) @@ -928,6 +930,8 @@ ges_track_object_get_start (GESTrackObject * object) * Get the offset within the contents of this #GESTrackObject * * Returns: the in-point (in #GstClockTime) + * + * Since: 0.10.2 */ guint64 ges_track_object_get_inpoint (GESTrackObject * object) @@ -946,6 +950,8 @@ ges_track_object_get_inpoint (GESTrackObject * object) * starting from the 'in-point' * * Returns: the duration (in #GstClockTime) + * + * Since: 0.10.2 */ guint64 ges_track_object_get_duration (GESTrackObject * object) @@ -963,6 +969,8 @@ ges_track_object_get_duration (GESTrackObject * object) * Get the priority of the object withing the containing #GESTrack. * * Returns: the priority of @object + * + * Since: 0.10.2 */ guint32 ges_track_object_get_priority (GESTrackObject * object) @@ -981,6 +989,8 @@ ges_track_object_get_priority (GESTrackObject * object) * or not. * * Returns: %TRUE if @object is active, %FALSE otherwize + * + * Since: 0.10.2 */ gboolean ges_track_object_is_active (GESTrackObject * object) @@ -1011,6 +1021,8 @@ ges_track_object_is_active (GESTrackObject * object) * Returns: TRUE if @element and @pspec could be found. FALSE otherwise. In that * case the values for @pspec and @element are not modified. Unref @element after * usage. + * + * Since: 0.10.2 */ gboolean ges_track_object_lookup_child (GESTrackObject * object, const gchar * prop_name, @@ -1060,6 +1072,8 @@ ges_track_object_lookup_child (GESTrackObject * object, const gchar * prop_name, * @value: the value * * Sets a property of a child of @object. + * + * Since: 0.10.2 */ void ges_track_object_set_child_property_by_pspec (GESTrackObject * object, @@ -1103,6 +1117,8 @@ prop_hash_not_set: * that have the same property name, you can distinguish them using the following * synthaxe: 'ClasseName::property_name' as property name. If you don't, the * corresponding property of the first element found will be set. + * + * Since: 0.10.2 */ void ges_track_object_set_child_property_valist (GESTrackObject * object, @@ -1172,6 +1188,8 @@ cant_copy: * that have the same property name, you can distinguish them using the following * synthaxe: 'ClasseName::property_name' as property name. If you don't, the * corresponding property of the first element found will be set. + * + * Since: 0.10.2 */ void ges_track_object_set_child_property (GESTrackObject * object, @@ -1196,6 +1214,8 @@ ges_track_object_set_child_property (GESTrackObject * object, * that have the same property name, you can distinguish them using the following * synthaxe: 'ClasseName::property_name' as property name. If you don't, the * corresponding property of the first element found will be set. + * + * Since: 0.10.2 */ void ges_track_object_get_child_property_valist (GESTrackObject * object, @@ -1252,6 +1272,8 @@ cant_copy: * * Returns: (transfer full) (array): an array of #GParamSpec* which should be freed after use or * %NULL if something went wrong + * + * Since: 0.10.2 */ GParamSpec ** ges_track_object_list_children_properties (GESTrackObject * object, @@ -1274,6 +1296,8 @@ ges_track_object_list_children_properties (GESTrackObject * object, * name/return location pairs, followed by NULL * * Gets properties of a child of @object. + * + * Since: 0.10.2 */ void ges_track_object_get_child_property (GESTrackObject * object, @@ -1294,6 +1318,8 @@ ges_track_object_get_child_property (GESTrackObject * object, * @value: return location for the value * * Gets a property of a child of @object. + * + * Since: 0.10.2 */ void ges_track_object_get_child_property_by_pspec (GESTrackObject * object, diff --git a/ges/ges-track-parse-launch-effect.c b/ges/ges-track-parse-launch-effect.c index 0a734b296f..f297b4135f 100644 --- a/ges/ges-track-parse-launch-effect.c +++ b/ges/ges-track-parse-launch-effect.c @@ -22,7 +22,7 @@ * @short_description: adds an effect build from a parse-launch style * bin description to a stream in a #GESTimelineSource or a #GESTimelineLayer * - * Since: 0.10.2 + * @Since: 0.10.2 */ #include "ges-internal.h" @@ -188,6 +188,8 @@ ges_track_parse_launch_effect_create_element (GESTrackObject * object) * * Returns: a newly created #GESTrackParseLaunchEffect, or %NULL if something went * wrong. + * + * Since: 0.10.2 */ GESTrackParseLaunchEffect * ges_track_parse_launch_effect_new (const gchar * bin_description) -- 2.34.1