summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'plugin')
-rw-r--r--plugin/gstpythonplugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/gstpythonplugin.c b/plugin/gstpythonplugin.c
index 08ba11a..8c7eb1a 100644
--- a/plugin/gstpythonplugin.c
+++ b/plugin/gstpythonplugin.c
@@ -352,7 +352,7 @@ plugin_init (GstPlugin * plugin)
we_initialized = TRUE;
} else {
GST_LOG ("python was already initialized");
- state = pyg_gil_state_ensure ();
+ state = PyGILState_Ensure ();
}
GST_LOG ("initializing pygobject");
@@ -385,7 +385,7 @@ plugin_init (GstPlugin * plugin)
/* We need to release the GIL since we're going back to C land */
PyEval_SaveThread ();
} else
- pyg_gil_state_release (state);
+ PyGILState_Release (state);
return TRUE;
}