mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
pyges: link against pygst and use GstMiniObject
This commit is contained in:
parent
fc21eb395a
commit
0e437d4069
2 changed files with 5 additions and 0 deletions
|
@ -3,9 +3,11 @@
|
|||
headers
|
||||
#define NO_IMPORT_PYGOBJECT
|
||||
#include <pygobject.h>
|
||||
#include <pygst/pygst.h>
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <ges/ges.h>
|
||||
#include <pygst/pygst.h>
|
||||
|
||||
#include <glib.h>
|
||||
#include <pyglib.h>
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
#include <Python.h>
|
||||
#include <pygobject.h>
|
||||
#include <pyglib.h>
|
||||
#include <pygst/pygst.h>
|
||||
|
||||
/* include any extra headers needed here */
|
||||
|
||||
|
@ -24,7 +25,9 @@ initges (void)
|
|||
d = PyModule_GetDict (m);
|
||||
|
||||
init_pygobject ();
|
||||
pygst_init ();
|
||||
|
||||
pygst_init ();
|
||||
pyges_register_classes (d);
|
||||
|
||||
/* add anything else to the module dictionary (such as constants) */
|
||||
|
|
Loading…
Reference in a new issue