mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
1bc63d73b9
Original commit message from CVS: * codegen/argtypes.py: Proper handling of 'caller-owns-return' for miniobjects * gst/gst-types.defs: Updating parenting of classes, added/removed/updated flags&enums * gst/gst.defs: Updated to current core cvs, Added 'caller-owns-return' properties for functions/methods that require it * gst/gst.override: Don't make *_[un]ref() accessible * gst/gstbuffer.override: * gst/gstevent.override: * gst/gstmessage.override: * gst/gstquery.override: Removed hack-ish wrappers since codegenerator handles 'caller-owns-return' methods/functions * gst/gstmodule.c: (sink_gstobject), (init_gst): Re-enabled sink function * gst/libs.defs: Updated to current core cvs Removed Adapter * gst/pygstminiobject.c: * gst/pygstminiobject.h: removed _new_noref() hack
55 lines
1.2 KiB
C
55 lines
1.2 KiB
C
/* -*- Mode: C; c-basic-offset: 4 -*- */
|
|
|
|
#ifndef _PYGSTMINIOBJECT_H_
|
|
#define _PYGSTMINIOBJECT_H_
|
|
|
|
#include <Python.h>
|
|
|
|
#include <glib.h>
|
|
#include <glib-object.h>
|
|
|
|
#include "common.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/* Work around bugs in PyGILState api fixed in 2.4.0a4 */
|
|
#if PY_VERSION_HEX < 0x020400A4
|
|
#define PYGIL_API_IS_BUGGY TRUE
|
|
#else
|
|
#define PYGIL_API_IS_BUGGY FALSE
|
|
#endif
|
|
|
|
typedef struct {
|
|
PyObject_HEAD
|
|
GstMiniObject *obj;
|
|
PyObject *inst_dict; /* the instance dictionary -- must be last */
|
|
PyObject *weakreflist; /* list of weak references */
|
|
} PyGstMiniObject;
|
|
|
|
PyObject *
|
|
pygstminiobject_new(GstMiniObject *obj);
|
|
|
|
#define pygstminiobject_get(v) (((PyGstMiniObject *)(v))->obj)
|
|
#define pygstminiobject_check(v,base) (PyObject_TypeCheck(v,base))
|
|
|
|
void
|
|
pygstminiobject_register_class(PyObject *dict, const gchar *type_name,
|
|
GType gtype, PyTypeObject *type,
|
|
PyObject *bases);
|
|
void
|
|
pygstminiobject_register_wrapper(PyObject *self);
|
|
|
|
void
|
|
pygst_miniobject_init();
|
|
|
|
#ifndef _INSIDE_PYGSTMINIOBJECT_
|
|
|
|
struct _PyGObject_Functions *_PyGObject_API;
|
|
|
|
extern PyTypeObject PyGstMiniObject_Type;
|
|
|
|
#endif /* !_INSIDE_PYGSTMINIOBJECT_ */
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* !_PYGSTMINIOBJECT_H_ */
|