mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-27 01:28:34 +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;
|
gboolean res = TRUE;
|
||||||
GstTaskClass *tclass;
|
GstTaskClass *tclass;
|
||||||
GError *error = NULL;
|
GError *error = NULL;
|
||||||
|
GstTaskPrivate *priv;
|
||||||
|
|
||||||
|
priv = task->priv;
|
||||||
|
|
||||||
/* new task, We ref before so that it remains alive while
|
/* new task, We ref before so that it remains alive while
|
||||||
* the thread is running. */
|
* the thread is running. */
|
||||||
|
@ -717,7 +720,7 @@ gst_task_pause (GstTask * task)
|
||||||
gboolean
|
gboolean
|
||||||
gst_task_join (GstTask * task)
|
gst_task_join (GstTask * task)
|
||||||
{
|
{
|
||||||
GThread *tself, *thread;
|
GThread *tself;
|
||||||
GstTaskPrivate *priv;
|
GstTaskPrivate *priv;
|
||||||
gpointer id;
|
gpointer id;
|
||||||
GstTaskPool *pool = NULL;
|
GstTaskPool *pool = NULL;
|
||||||
|
|
Loading…
Reference in a new issue