Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
gstreamer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
luzpaz
gstreamer
Commits
3d0989e9
Commit
3d0989e9
authored
Oct 24, 2005
by
Michael Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some minor documentation typos
Original commit message from CVS: Fix some minor documentation typos
parent
e4890b82
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
gst/gstelement.h
gst/gstelement.h
+1
-1
gst/gstqueue.c
gst/gstqueue.c
+3
-3
gst/gstutils.c
gst/gstutils.c
+2
-2
plugins/elements/gstqueue.c
plugins/elements/gstqueue.c
+3
-3
No files found.
gst/gstelement.h
View file @
3d0989e9
...
...
@@ -204,7 +204,7 @@ typedef enum
* GST_ELEMENT_IS_LOCKED_STATE:
* @obj: A #GstElement to query
*
* Check if the element is in the lo
a
cked state and therefore will ignore state
* Check if the element is in the locked state and therefore will ignore state
* changes from its parent object.
*/
#define GST_ELEMENT_IS_LOCKED_STATE(obj) (GST_OBJECT_FLAG_IS_SET(obj,GST_ELEMENT_LOCKED_STATE))
...
...
gst/gstqueue.c
View file @
3d0989e9
...
...
@@ -483,7 +483,7 @@ gst_queue_locked_flush (GstQueue * queue)
while
(
!
g_queue_is_empty
(
queue
->
queue
))
{
GstMiniObject
*
data
=
g_queue_pop_head
(
queue
->
queue
);
/* Then lo
o
se another reference because we are supposed to destroy that
/* Then lose another reference because we are supposed to destroy that
data when flushing */
gst_mini_object_unref
(
data
);
}
...
...
@@ -522,7 +522,7 @@ gst_queue_handle_sink_event (GstPad * pad, GstEvent * event)
switch
(
GST_EVENT_TYPE
(
event
))
{
case
GST_EVENT_FLUSH_START
:
STATUS
(
queue
,
"received flush start event"
);
/* forward event, re first as we're going to use it still */
/* forward event, re
f
first as we're going to use it still */
gst_event_ref
(
event
);
gst_pad_push_event
(
queue
->
srcpad
,
event
);
...
...
@@ -541,7 +541,7 @@ gst_queue_handle_sink_event (GstPad * pad, GstEvent * event)
goto
done
;
case
GST_EVENT_FLUSH_STOP
:
STATUS
(
queue
,
"received flush stop event"
);
/* forward event, re first as we're going to use it still */
/* forward event, re
f
first as we're going to use it still */
gst_event_ref
(
event
);
gst_pad_push_event
(
queue
->
srcpad
,
event
);
...
...
gst/gstutils.c
View file @
3d0989e9
...
...
@@ -1771,12 +1771,12 @@ gst_pad_can_link (GstPad * srcpad, GstPad * sinkpad)
* @pad: the pad to use
*
* A helper function you can use that sets the
* @gst_pad_get_fixed_caps_func as the g
s
tcaps function for the
* @gst_pad_get_fixed_caps_func as the g
e
tcaps function for the
* pad. This way the function will always return the negotiated caps
* or in case the pad is not negotiated, the padtemplate caps.
*
* Use this function on a pad that, once _set_caps() has been called
* on it,
it
cannot be renegotiated to something else.
* on it, cannot be renegotiated to something else.
*/
void
gst_pad_use_fixed_caps
(
GstPad
*
pad
)
...
...
plugins/elements/gstqueue.c
View file @
3d0989e9
...
...
@@ -483,7 +483,7 @@ gst_queue_locked_flush (GstQueue * queue)
while
(
!
g_queue_is_empty
(
queue
->
queue
))
{
GstMiniObject
*
data
=
g_queue_pop_head
(
queue
->
queue
);
/* Then lo
o
se another reference because we are supposed to destroy that
/* Then lose another reference because we are supposed to destroy that
data when flushing */
gst_mini_object_unref
(
data
);
}
...
...
@@ -522,7 +522,7 @@ gst_queue_handle_sink_event (GstPad * pad, GstEvent * event)
switch
(
GST_EVENT_TYPE
(
event
))
{
case
GST_EVENT_FLUSH_START
:
STATUS
(
queue
,
"received flush start event"
);
/* forward event, re first as we're going to use it still */
/* forward event, re
f
first as we're going to use it still */
gst_event_ref
(
event
);
gst_pad_push_event
(
queue
->
srcpad
,
event
);
...
...
@@ -541,7 +541,7 @@ gst_queue_handle_sink_event (GstPad * pad, GstEvent * event)
goto
done
;
case
GST_EVENT_FLUSH_STOP
:
STATUS
(
queue
,
"received flush stop event"
);
/* forward event, re first as we're going to use it still */
/* forward event, re
f
first as we're going to use it still */
gst_event_ref
(
event
);
gst_pad_push_event
(
queue
->
srcpad
,
event
);
...
...
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