Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gstreamer
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Thibault Saunier
gstreamer
Commits
4e29b4aa
Commit
4e29b4aa
authored
Oct 22, 2018
by
Thibault Saunier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc: Add some missing docstrings
parent
5b2da083
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
0 deletions
+22
-0
gst/gstcapsfeatures.c
gst/gstcapsfeatures.c
+7
-0
gst/gstelement.h
gst/gstelement.h
+7
-0
libs/gst/controller/gsttimedvaluecontrolsource.c
libs/gst/controller/gsttimedvaluecontrolsource.c
+8
-0
No files found.
gst/gstcapsfeatures.c
View file @
4e29b4aa
...
...
@@ -118,6 +118,13 @@ _priv_gst_caps_features_cleanup (void)
_gst_caps_features_memory_system_memory
=
NULL
;
}
/**
* gst_is_caps_features:
*
* Checks if @obj is a #GstCapsFeatures
*
* Returns: %TRUE if @obj is a #GstCapsFeatures %FALSE otherwise
*/
gboolean
gst_is_caps_features
(
gconstpointer
obj
)
{
...
...
gst/gstelement.h
View file @
4e29b4aa
...
...
@@ -1016,6 +1016,13 @@ GST_API
void
gst_element_lost_state
(
GstElement
*
element
);
/**
* GstElementCallAsyncFunc:
* @element: The #GstElement this function has been called against
* @user_data: Data passed in the function where that callback has been passed
*
* Callback prototype used in #gst_element_call_async
*/
typedef
void
(
*
GstElementCallAsyncFunc
)
(
GstElement
*
element
,
gpointer
user_data
);
GST_API
...
...
libs/gst/controller/gsttimedvaluecontrolsource.c
View file @
4e29b4aa
...
...
@@ -81,6 +81,14 @@ gst_control_point_free (GstControlPoint * cp)
g_slice_free
(
GstControlPoint
,
cp
);
}
/**
* gst_control_point_copy:
* @cp: The control point to copy
*
* Copies a #GstControlPoint
*
* Returns: A copy of @cp
*/
GstControlPoint
*
gst_control_point_copy
(
GstControlPoint
*
cp
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment