mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
let's not clobber our local variables -- i think this is a good short-term fix until i get to hacking on the standard...
Original commit message from CVS: let's not clobber our local variables -- i think this is a good short-term fix until i get to hacking on the standard scheduler again.
This commit is contained in:
parent
bede14df34
commit
16867f27e6
1 changed files with 2 additions and 2 deletions
|
@ -222,7 +222,7 @@ GstPluginDesc plugin_desc = {
|
||||||
plugin_init
|
plugin_init
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline cothread* sched_create (GstStandardScheduler *scheduler, GstElement *element, cothread_func func)
|
static cothread* sched_create (GstStandardScheduler *scheduler, GstElement *element, cothread_func func)
|
||||||
{
|
{
|
||||||
cothread *ret = NULL;
|
cothread *ret = NULL;
|
||||||
|
|
||||||
|
@ -235,7 +235,7 @@ static inline cothread* sched_create (GstStandardScheduler *scheduler, GstElemen
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void sched_switch (cothread *to)
|
static void sched_switch (cothread *to)
|
||||||
{
|
{
|
||||||
cothread *from = cothread_self ();
|
cothread *from = cothread_self ();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue