mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 04:22:27 +00:00
pbutils: add some missing gi annotations
For allow-none parameters
This commit is contained in:
parent
fb77e4db30
commit
400ea72b06
3 changed files with 11 additions and 10 deletions
|
@ -609,7 +609,7 @@ gst_encoding_profile_get_restriction (GstEncodingProfile * profile)
|
|||
/**
|
||||
* gst_encoding_profile_set_name:
|
||||
* @profile: a #GstEncodingProfile
|
||||
* @name: the name to set on the profile
|
||||
* @name: (allow-none): the name to set on the profile
|
||||
*
|
||||
* Set @name as the given name for the @profile. A copy of @name will be made
|
||||
* internally.
|
||||
|
@ -626,7 +626,7 @@ gst_encoding_profile_set_name (GstEncodingProfile * profile, const gchar * name)
|
|||
/**
|
||||
* gst_encoding_profile_set_description:
|
||||
* @profile: a #GstEncodingProfile
|
||||
* @description: the description to set on the profile
|
||||
* @description: (allow-none): the description to set on the profile
|
||||
*
|
||||
* Set @description as the given description for the @profile. A copy of
|
||||
* @description will be made internally.
|
||||
|
@ -713,7 +713,7 @@ gst_encoding_profile_set_preset (GstEncodingProfile * profile,
|
|||
/**
|
||||
* gst_encoding_profile_set_preset_name:
|
||||
* @profile: a #GstEncodingProfile
|
||||
* @preset_name: The name of the preset to use in this @profile.
|
||||
* @preset_name: (allow-none): The name of the preset to use in this @profile.
|
||||
*
|
||||
* Sets the name of the #GstPreset's factory to be used in the profile.
|
||||
*/
|
||||
|
@ -764,7 +764,7 @@ gst_encoding_profile_set_enabled (GstEncodingProfile * profile,
|
|||
/**
|
||||
* gst_encoding_profile_set_restriction:
|
||||
* @profile: a #GstEncodingProfile
|
||||
* @restriction: (transfer full): the restriction to apply
|
||||
* @restriction: (allow-none) (transfer full): the restriction to apply
|
||||
*
|
||||
* Set the restriction #GstCaps to apply before the encoder
|
||||
* that will be used in the profile. See gst_encoding_profile_get_restriction()
|
||||
|
|
|
@ -696,7 +696,7 @@ empty_name:
|
|||
|
||||
/**
|
||||
* gst_encoding_target_load_from_file:
|
||||
* @filepath: The file location to load the #GstEncodingTarget from
|
||||
* @filepath: (type filename): The file location to load the #GstEncodingTarget from
|
||||
* @error: If an error occured, this field will be filled in.
|
||||
*
|
||||
* Opens the provided file and returns the contained #GstEncodingTarget.
|
||||
|
@ -913,7 +913,7 @@ invalid_category:
|
|||
/**
|
||||
* gst_encoding_target_save_to_file:
|
||||
* @target: a #GstEncodingTarget
|
||||
* @filepath: the location to store the @target at.
|
||||
* @filepath: (type filename): the location to store the @target at.
|
||||
* @error: If an error occured, this field will be filled in.
|
||||
*
|
||||
* Saves the @target to the provided file location.
|
||||
|
|
|
@ -256,10 +256,11 @@ gst_discoverer_class_init (GstDiscovererClass * klass)
|
|||
* GstDiscoverer::discovered:
|
||||
* @discoverer: the #GstDiscoverer
|
||||
* @info: the results #GstDiscovererInfo
|
||||
* @error: (type GLib.Error): #GError, which will be non-NULL if an error
|
||||
* occurred during discovery. You must not
|
||||
* free this #GError, it will be freed by
|
||||
* the discoverer.
|
||||
* @error: (allow-none) (type GLib.Error): #GError, which will be non-NULL
|
||||
* if an error occurred during
|
||||
* discovery. You must not free
|
||||
* this #GError, it will be freed by
|
||||
* the discoverer.
|
||||
*
|
||||
* Will be emitted in async mode when all information on a URI could be
|
||||
* discovered, or an error occurred.
|
||||
|
|
Loading…
Reference in a new issue