From: Tim-Philipp Müller Date: Tue, 8 Nov 2011 00:32:36 +0000 (+0000) Subject: docs: fix Since: markers for API added after 0.10.35 X-Git-Tag: RELEASE-0.10.36~74 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=16dcd5e958679a20d60b963cb44889e59aa9fbf1;p=platform%2Fupstream%2Fgstreamer.git docs: fix Since: markers for API added after 0.10.35 --- diff --git a/gst/gstcaps.c b/gst/gstcaps.c index 92fd995..ef3f8ff 100644 --- a/gst/gstcaps.c +++ b/gst/gstcaps.c @@ -1118,7 +1118,7 @@ gst_caps_is_subset (const GstCaps * subset, const GstCaps * superset) * * Returns: %TRUE if @structure is a subset of @caps * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_caps_is_subset_structure (const GstCaps * caps, diff --git a/gst/gstelement.h b/gst/gstelement.h index f0d2353..e22999c 100644 --- a/gst/gstelement.h +++ b/gst/gstelement.h @@ -603,7 +603,7 @@ struct _GstElement * @get_query_types: get the supported #GstQueryType of this element * @query: perform a #GstQuery on the element * @request_new_pad_full: called when a new pad is requested. Since: 0.10.32. - * @state_changed: called immediately after a new state was set. Since: 0.10.35. + * @state_changed: called immediately after a new state was set. Since: 0.10.36. * * GStreamer element class. Override the vmethods to implement the element * functionality. diff --git a/gst/gstghostpad.c b/gst/gstghostpad.c index d198fec..d8fb3ea 100644 --- a/gst/gstghostpad.c +++ b/gst/gstghostpad.c @@ -88,7 +88,7 @@ static GParamSpec *pspec_caps = NULL; * Returns: (transfer none) (array zero-terminated=1): a zero-terminated array * of #GstQueryType. * - * Since: 0.10.35 + * Since: 0.10.36 */ const GstQueryType * gst_proxy_pad_query_type_default (GstPad * pad) @@ -115,7 +115,7 @@ gst_proxy_pad_query_type_default (GstPad * pad) * * Returns: TRUE if the event was handled. * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_proxy_pad_event_default (GstPad * pad, GstEvent * event) @@ -145,7 +145,7 @@ gst_proxy_pad_event_default (GstPad * pad, GstEvent * event) * * Returns: TRUE if the query could be performed. * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_proxy_pad_query_default (GstPad * pad, GstQuery * query) @@ -174,7 +174,7 @@ gst_proxy_pad_query_default (GstPad * pad, GstQuery * query) * Returns: a #GstIterator of #GstPad, or NULL if @pad has no parent. Unref each * returned pad with gst_object_unref(). * - * Since: 0.10.35 + * Since: 0.10.36 */ GstIterator * gst_proxy_pad_iterate_internal_links_default (GstPad * pad) @@ -213,7 +213,7 @@ gst_proxy_pad_iterate_internal_links_default (GstPad * pad) * An error can occur if the pad is not connected or when the downstream * peer elements cannot provide an acceptable buffer. * - * Since: 0.10.35 + * Since: 0.10.36 */ GstFlowReturn gst_proxy_pad_bufferalloc_default (GstPad * pad, guint64 offset, guint size, @@ -246,7 +246,7 @@ gst_proxy_pad_bufferalloc_default (GstPad * pad, guint64 offset, guint size, * * Returns: a #GstFlowReturn from the pad. * - * Since: 0.10.35 + * Since: 0.10.36 */ GstFlowReturn gst_proxy_pad_chain_default (GstPad * pad, GstBuffer * buffer) @@ -273,7 +273,7 @@ gst_proxy_pad_chain_default (GstPad * pad, GstBuffer * buffer) * * Returns: a #GstFlowReturn from the pad. * - * Since: 0.10.35 + * Since: 0.10.36 */ GstFlowReturn gst_proxy_pad_chain_list_default (GstPad * pad, GstBufferList * list) @@ -302,7 +302,7 @@ gst_proxy_pad_chain_list_default (GstPad * pad, GstBufferList * list) * * Returns: a #GstFlowReturn from the pad. * - * Since: 0.10.35 + * Since: 0.10.36 */ GstFlowReturn gst_proxy_pad_getrange_default (GstPad * pad, guint64 offset, guint size, @@ -328,7 +328,7 @@ gst_proxy_pad_getrange_default (GstPad * pad, guint64 offset, guint size, * * Returns: a #gboolean from the pad. * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_proxy_pad_checkgetrange_default (GstPad * pad) @@ -352,7 +352,7 @@ gst_proxy_pad_checkgetrange_default (GstPad * pad) * * Returns: (transfer full): the caps of the pad with incremented ref-count * - * Since: 0.10.35 + * Since: 0.10.36 */ GstCaps * gst_proxy_pad_getcaps_default (GstPad * pad) @@ -416,7 +416,7 @@ done: * * Returns: TRUE if the pad can accept the caps. * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_proxy_pad_acceptcaps_default (GstPad * pad, GstCaps * caps) @@ -447,7 +447,7 @@ gst_proxy_pad_acceptcaps_default (GstPad * pad, GstCaps * caps) * * Invoke the default fixatecaps function of the proxy pad. * - * Since: 0.10.35 + * Since: 0.10.36 */ void gst_proxy_pad_fixatecaps_default (GstPad * pad, GstCaps * caps) @@ -474,7 +474,7 @@ gst_proxy_pad_fixatecaps_default (GstPad * pad, GstCaps * caps) * Returns: TRUE if the caps could be set. FALSE if the caps were not fixed * or bad parameters were provided to this function. * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_proxy_pad_setcaps_default (GstPad * pad, GstCaps * caps) @@ -525,7 +525,7 @@ gst_proxy_pad_get_target (GstPad * pad) * Returns: (transfer full): the target #GstProxyPad, can be NULL. * Unref target pad after usage. * - * Since: 0.10.35 + * Since: 0.10.36 */ GstProxyPad * gst_proxy_pad_get_internal (GstProxyPad * pad) @@ -549,7 +549,7 @@ gst_proxy_pad_get_internal (GstProxyPad * pad) * * Invoke the default unlink function of the proxy pad. * - * Since: 0.10.35 + * Since: 0.10.36 */ void gst_proxy_pad_unlink_default (GstPad * pad) @@ -695,7 +695,7 @@ static void gst_ghost_pad_dispose (GObject * object); * * Returns: %TRUE if the operation was successful. * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_ghost_pad_internal_activate_push_default (GstPad * pad, gboolean active) @@ -726,7 +726,7 @@ gst_ghost_pad_internal_activate_push_default (GstPad * pad, gboolean active) * * Returns: %TRUE if the operation was successful. * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_ghost_pad_internal_activate_pull_default (GstPad * pad, gboolean active) @@ -772,7 +772,7 @@ gst_ghost_pad_internal_activate_pull_default (GstPad * pad, gboolean active) * * Returns: %TRUE if the operation was successful. * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_ghost_pad_activate_push_default (GstPad * pad, gboolean active) @@ -801,7 +801,7 @@ gst_ghost_pad_activate_push_default (GstPad * pad, gboolean active) * * Returns: %TRUE if the operation was successful. * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_ghost_pad_activate_pull_default (GstPad * pad, gboolean active) @@ -845,7 +845,7 @@ gst_ghost_pad_activate_pull_default (GstPad * pad, gboolean active) * * Returns: #GstPadLinkReturn of the operation * - * Since: 0.10.35 + * Since: 0.10.36 */ GstPadLinkReturn gst_ghost_pad_link_default (GstPad * pad, GstPad * peer) @@ -876,7 +876,7 @@ gst_ghost_pad_link_default (GstPad * pad, GstPad * peer) * * Invoke the default unlink function of a ghost pad. * - * Since: 0.10.35 + * Since: 0.10.36 */ void gst_ghost_pad_unlink_default (GstPad * pad) @@ -956,7 +956,7 @@ on_src_target_unlinked (GstPad * pad, GstPad * peer, gpointer user_data) * * Returns: %TRUE if the operation was successful * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_ghost_pad_setcaps_default (GstPad * pad, GstCaps * caps) diff --git a/gst/gstminiobject.c b/gst/gstminiobject.c index 3993e02..2454ca8 100644 --- a/gst/gstminiobject.c +++ b/gst/gstminiobject.c @@ -425,7 +425,7 @@ gst_mini_object_unref (GstMiniObject * mini_object) * (gst_mini_object_ref() adds a strong reference, that is, forces the object * to stay alive). * - * Since: 0.10.35 + * Since: 0.10.36 */ void gst_mini_object_weak_ref (GstMiniObject * object, @@ -481,7 +481,7 @@ found: * * Removes a weak reference callback to a mini object. * - * Since: 0.10.35 + * Since: 0.10.36 */ void gst_mini_object_weak_unref (GstMiniObject * object, diff --git a/gst/gststructure.c b/gst/gststructure.c index 3db8ea3..e37767e 100644 --- a/gst/gststructure.c +++ b/gst/gststructure.c @@ -2937,7 +2937,7 @@ gst_structure_is_equal_foreach (GQuark field_id, const GValue * val2, * * Returns: TRUE if the two structures have the same name and field. * - * Since: 0.10.35 + * Since: 0.10.36 **/ gboolean gst_structure_is_equal (const GstStructure * structure1, @@ -3009,7 +3009,7 @@ gst_structure_intersect_field2 (GQuark id, const GValue * val1, gpointer data) * * Returns: Intersection of @struct1 and @struct2 * - * Since: 0.10.35 + * Since: 0.10.36 */ GstStructure * gst_structure_intersect (const GstStructure * struct1, @@ -3080,7 +3080,7 @@ gst_caps_structure_can_intersect_field (GQuark id, const GValue * val1, * * Returns: %TRUE if intersection would not be empty * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_structure_can_intersect (const GstStructure * struct1, @@ -3158,7 +3158,7 @@ gst_caps_structure_is_subset_field (GQuark field_id, const GValue * value, * * Returns: %TRUE if @subset is a subset of @superset * - * Since: 0.10.35 + * Since: 0.10.36 */ gboolean gst_structure_is_subset (const GstStructure * subset, diff --git a/libs/gst/base/gstbaseparse.c b/libs/gst/base/gstbaseparse.c index f28c0cd..1ccdc2c 100644 --- a/libs/gst/base/gstbaseparse.c +++ b/libs/gst/base/gstbaseparse.c @@ -3207,7 +3207,7 @@ gst_base_parse_set_passthrough (GstBaseParse * parse, gboolean passthrough) * by the parsing process. If there is such a latency, which depends on the * particular parsing of the format, it typically corresponds to 1 frame duration. * - * Since: 0.10.34 + * Since: 0.10.36 */ void gst_base_parse_set_latency (GstBaseParse * parse, GstClockTime min_latency, diff --git a/libs/gst/base/gstbasesrc.c b/libs/gst/base/gstbasesrc.c index c9269ab..f0609a1 100644 --- a/libs/gst/base/gstbasesrc.c +++ b/libs/gst/base/gstbasesrc.c @@ -596,7 +596,7 @@ gst_base_src_set_format (GstBaseSrc * src, GstFormat format) * read past current tracked size. Otherwise, size is checked for upon each * read. * - * Since: 0.10.35 + * Since: 0.10.36 */ void gst_base_src_set_dynamic_size (GstBaseSrc * src, gboolean dynamic) diff --git a/plugins/elements/gstinputselector.c b/plugins/elements/gstinputselector.c index f62a488..c143cbf 100644 --- a/plugins/elements/gstinputselector.c +++ b/plugins/elements/gstinputselector.c @@ -1023,7 +1023,7 @@ gst_input_selector_class_init (GstInputSelectorClass * klass) * buffers are dropped by input-selector that might be needed * when switching the active pad. * - * Since: 0.10.35 + * Since: 0.10.36 */ g_object_class_install_property (gobject_class, PROP_SYNC_STREAMS, g_param_spec_boolean ("sync-streams", "Sync Streams", diff --git a/plugins/elements/gstmultiqueue.c b/plugins/elements/gstmultiqueue.c index 1596670..0c226b6 100644 --- a/plugins/elements/gstmultiqueue.c +++ b/plugins/elements/gstmultiqueue.c @@ -411,7 +411,7 @@ gst_multi_queue_class_init (GstMultiQueueClass * klass) * streams by keeping the order in which buffers and events arrived compared * to active and linked streams. * - * Since: 0.10.35 + * Since: 0.10.36 */ g_object_class_install_property (gobject_class, PROP_SYNC_BY_RUNNING_TIME, g_param_spec_boolean ("sync-by-running-time", "Sync By Running Time",