mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
typos
Original commit message from CVS: typos
This commit is contained in:
parent
0d32dbb262
commit
58d2d2798c
1 changed files with 8 additions and 7 deletions
|
@ -179,12 +179,13 @@ gst_thread_init (GstThread *thread)
|
|||
GST_FLAG_SET (thread, GST_BIN_SELF_SCHEDULABLE);
|
||||
|
||||
scheduler = gst_scheduler_factory_make (NULL, GST_ELEMENT (thread));
|
||||
g_assert (scheduler);
|
||||
|
||||
thread->lock = g_mutex_new ();
|
||||
thread->cond = g_cond_new ();
|
||||
|
||||
thread->ppid = getpid ();
|
||||
thread->thread_id = (GThread *) NULL; /* set in NULL -> READLY */
|
||||
thread->thread_id = (GThread *) NULL; /* set in NULL -> READY */
|
||||
thread->sched_policy = G_THREAD_PRIORITY_NORMAL;
|
||||
thread->priority = 0;
|
||||
thread->stack = NULL;
|
||||
|
@ -437,13 +438,13 @@ gst_thread_change_state (GstElement *element)
|
|||
GstElement *element = GST_ELEMENT (elements->data);
|
||||
GList *pads;
|
||||
|
||||
|
||||
g_assert (element);
|
||||
THR_DEBUG (" waking element \"%s\"", GST_ELEMENT_NAME (element));
|
||||
elements = g_list_next (elements);
|
||||
|
||||
if (!gst_element_release_locks (element)) {
|
||||
g_warning ("element %s could not release locks", GST_ELEMENT_NAME (element));
|
||||
g_warning ("element %s could not release locks",
|
||||
GST_ELEMENT_NAME (element));
|
||||
}
|
||||
|
||||
pads = GST_ELEMENT_PADS (element);
|
||||
|
|
Loading…
Reference in a new issue