Original commit message from CVS:
typos
This commit is contained in:
Thomas Vander Stichele 2002-12-07 14:15:52 +00:00
parent 0d32dbb262
commit 58d2d2798c

View file

@ -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);