mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
pyges: Add ges.override
This commit is contained in:
parent
fdfd518dd6
commit
9237a997cb
1 changed files with 24 additions and 0 deletions
24
bindings/python/ges.override
Normal file
24
bindings/python/ges.override
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
/* -*- Mode: C; c-basic-offset: 4 -*- */
|
||||||
|
%%
|
||||||
|
headers
|
||||||
|
#define NO_IMPORT_PYGOBJECT
|
||||||
|
#include <pygobject.h>
|
||||||
|
|
||||||
|
#include <gst/gst.h>
|
||||||
|
#include <ges/ges.h>
|
||||||
|
|
||||||
|
#include <glib.h>
|
||||||
|
#include <pyglib.h>
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
# include <config.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Boonky define that allows for backwards compatibility with Python 2.4 */
|
||||||
|
#if PY_VERSION_HEX < 0x02050000
|
||||||
|
#define Py_ssize_t int
|
||||||
|
#endif
|
||||||
|
|
||||||
|
%%
|
||||||
|
import gobject.GObject as PyGObject_Type
|
Loading…
Reference in a new issue