mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
ges: Add a few missing annotations
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/921>
This commit is contained in:
parent
f1a169f39d
commit
3db957c10d
5 changed files with 20 additions and 9 deletions
|
@ -178,8 +178,8 @@ ges_clip_asset_get_supported_formats (GESClipAsset * self)
|
||||||
/**
|
/**
|
||||||
* ges_clip_asset_get_natural_framerate:
|
* ges_clip_asset_get_natural_framerate:
|
||||||
* @self: The object from which to retrieve the natural framerate
|
* @self: The object from which to retrieve the natural framerate
|
||||||
* @framerate_n: The framerate numerator
|
* @framerate_n: (out): The framerate numerator
|
||||||
* @framerate_d: The framerate denominator
|
* @framerate_d: (out): The framerate denominator
|
||||||
*
|
*
|
||||||
* Result: %TRUE if @self has a natural framerate %FALSE otherwise
|
* Result: %TRUE if @self has a natural framerate %FALSE otherwise
|
||||||
*
|
*
|
||||||
|
|
|
@ -548,6 +548,17 @@ _ges_command_line_formatter_add_effect (GESTimeline * timeline,
|
||||||
return _ges_container_add_child_from_struct (timeline, structure, error);
|
return _ges_container_add_child_from_struct (timeline, structure, error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ges_command_line_formatter_get_help:
|
||||||
|
* @nargs: Number of commands in @commands
|
||||||
|
* @commands: (array length=nargs): Commands
|
||||||
|
*
|
||||||
|
* Creates a help string based on @commands.
|
||||||
|
*
|
||||||
|
* Result: (transfer full): A help string.
|
||||||
|
*
|
||||||
|
* Since: 1.20
|
||||||
|
*/
|
||||||
gchar *
|
gchar *
|
||||||
ges_command_line_formatter_get_help (gint nargs, gchar ** commands)
|
ges_command_line_formatter_get_help (gint nargs, gchar ** commands)
|
||||||
{
|
{
|
||||||
|
@ -1043,7 +1054,7 @@ _serialize_clip_effects (GESClip * clip, GString * res)
|
||||||
* ges_command_line_formatter_get_timeline_uri:
|
* ges_command_line_formatter_get_timeline_uri:
|
||||||
* @timeline: A GESTimeline to serialize
|
* @timeline: A GESTimeline to serialize
|
||||||
*
|
*
|
||||||
* Since: 1.20
|
* Since: 1.10
|
||||||
*/
|
*/
|
||||||
gchar *
|
gchar *
|
||||||
ges_command_line_formatter_get_timeline_uri (GESTimeline * timeline)
|
ges_command_line_formatter_get_timeline_uri (GESTimeline * timeline)
|
||||||
|
|
|
@ -251,8 +251,8 @@ _create_track_element (GESClip * self, GESTrackType type)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ges_effect_clip_new:
|
* ges_effect_clip_new:
|
||||||
* @video_bin_description: The gst-launch like bin description of the effect
|
* @video_bin_description: (nullable): The gst-launch like bin description of the effect
|
||||||
* @audio_bin_description: The gst-launch like bin description of the effect
|
* @audio_bin_description: (nullable): The gst-launch like bin description of the effect
|
||||||
*
|
*
|
||||||
* Creates a new #GESEffectClip from the description of the bin.
|
* Creates a new #GESEffectClip from the description of the bin.
|
||||||
*
|
*
|
||||||
|
|
|
@ -874,9 +874,9 @@ ges_meta_container_register_meta (GESMetaContainer * container,
|
||||||
* ges_meta_container_check_meta_registered:
|
* ges_meta_container_check_meta_registered:
|
||||||
* @container: A #GESMetaContainer
|
* @container: A #GESMetaContainer
|
||||||
* @meta_item: The key for the @container field to check
|
* @meta_item: The key for the @container field to check
|
||||||
* @flags: (out) (nullable): A destination to get the registered flags of
|
* @flags: (out) (optional): A destination to get the registered flags of
|
||||||
* the field, or %NULL to ignore
|
* the field, or %NULL to ignore
|
||||||
* @type: (out) (nullable): A destination to get the registered type of
|
* @type: (out) (optional): A destination to get the registered type of
|
||||||
* the field, or %NULL to ignore
|
* the field, or %NULL to ignore
|
||||||
*
|
*
|
||||||
* Checks whether the specified field has been registered as static, and
|
* Checks whether the specified field has been registered as static, and
|
||||||
|
|
|
@ -147,8 +147,8 @@ ges_track_element_asset_get_track_type (GESTrackElementAsset * asset)
|
||||||
/**
|
/**
|
||||||
* ges_track_element_asset_get_natural_framerate:
|
* ges_track_element_asset_get_natural_framerate:
|
||||||
* @self: A #GESAsset
|
* @self: A #GESAsset
|
||||||
* @framerate_n: The framerate numerator
|
* @framerate_n: (out): The framerate numerator
|
||||||
* @framerate_d: The framerate denominator
|
* @framerate_d: (out): The framerate denominator
|
||||||
*
|
*
|
||||||
* Result: %TRUE if @self has a natural framerate %FALSE otherwise
|
* Result: %TRUE if @self has a natural framerate %FALSE otherwise
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue