mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 02:15:31 +00:00
GstTask: fix compilation
This commit is contained in:
parent
2cd86a4956
commit
b962f41ca1
1 changed files with 4 additions and 1 deletions
|
@ -550,6 +550,9 @@ start_task (GstTask * task)
|
|||
gboolean res = TRUE;
|
||||
GstTaskClass *tclass;
|
||||
GError *error = NULL;
|
||||
GstTaskPrivate *priv;
|
||||
|
||||
priv = task->priv;
|
||||
|
||||
/* new task, We ref before so that it remains alive while
|
||||
* the thread is running. */
|
||||
|
@ -717,7 +720,7 @@ gst_task_pause (GstTask * task)
|
|||
gboolean
|
||||
gst_task_join (GstTask * task)
|
||||
{
|
||||
GThread *tself, *thread;
|
||||
GThread *tself;
|
||||
GstTaskPrivate *priv;
|
||||
gpointer id;
|
||||
GstTaskPool *pool = NULL;
|
||||
|
|
Loading…
Reference in a new issue