diff options
-rw-r--r-- | gst/gstmessage.c | 10 | ||||
-rw-r--r-- | gst/gststructure.c | 4 |
2 files changed, 6 insertions, 8 deletions
diff --git a/gst/gstmessage.c b/gst/gstmessage.c index 2165a2a93..10bac83f4 100644 --- a/gst/gstmessage.c +++ b/gst/gstmessage.c @@ -480,11 +480,11 @@ gst_message_new_tag (GstObject * src, GstTagList * tag_list) * Create a new tag message. The message will take ownership of the tag list. * The message is posted by elements that discovered a new taglist. * + * MT safe. + * * Returns: The new tag message. * * Since: 0.10.24 - * - * MT safe. */ GstMessage * gst_message_new_tag_full (GstObject * src, GstPad * pad, GstTagList * tag_list) @@ -1012,9 +1012,9 @@ gst_message_parse_tag (GstMessage * message, GstTagList ** tag_list) * Extracts the tag list from the GstMessage. The tag list returned in the * output argument is a copy; the caller must free it when done. * - * Since: 0.10.24 - * * MT safe. + * + * Since: 0.10.24 */ void gst_message_parse_tag_full (GstMessage * message, GstPad ** pad, @@ -1769,8 +1769,6 @@ gst_message_new_step_start (GstObject * src, gboolean active, GstFormat format, * @rate: result location for the rate * @flush: result location for the flush flag * @intermediate: result location for the intermediate flag - * @duration: result location for the duration - * @eos: result location for the EOS flag * * Extract the values from step_start message. * diff --git a/gst/gststructure.c b/gst/gststructure.c index e446b7fbf..17f03d24a 100644 --- a/gst/gststructure.c +++ b/gst/gststructure.c @@ -2373,7 +2373,7 @@ G_STMT_START { \ * gst_structure_get_valist: * @structure: a #GstStructure * @first_fieldname: the name of the first field to read - * @valist: variable arguments + * @args: variable arguments * * Parses the variable arguments and reads fields from @structure accordingly. * valist-variant of gst_structure_get(). Look at the documentation of @@ -2442,7 +2442,7 @@ wrong_type: * gst_structure_id_get_valist: * @structure: a #GstStructure * @first_field_id: the quark of the first field to read - * @valist: variable arguments + * @args: variable arguments * * Parses the variable arguments and reads fields from @structure accordingly. * valist-variant of gst_structure_id_get(). Look at the documentation of |