mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/: Make ro memory to share.
Original commit message from CVS: * ChangeLog: * gst/pygstminiobject.c: Make ro memory to share.
This commit is contained in:
parent
e6fc062637
commit
3a6849d0a8
2 changed files with 11 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-08-16 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* ChangeLog:
|
||||
* gst/pygstminiobject.c:
|
||||
Make ro memory to share.
|
||||
|
||||
2007-08-01 Edward Hervey <bilboed@bilboed.com>
|
||||
|
||||
* configure.ac:
|
||||
|
@ -93,7 +99,7 @@
|
|||
2007-07-20 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/gst-disable-loadsave.ignore:
|
||||
Override more when having now xml.
|
||||
Override more when having no xml.
|
||||
|
||||
2007-07-09 Edward Hervey <bilboed@bilboed.com>
|
||||
|
||||
|
|
|
@ -23,10 +23,10 @@
|
|||
#include "pygstminiobject.h"
|
||||
#include <gst/gst.h>
|
||||
|
||||
static const gchar *pygstminiobject_class_id = "PyGstMiniObject::class";
|
||||
static GQuark pygstminiobject_class_key = 0;
|
||||
/* static const gchar *pygstminiobject_wrapper_id = "PyGstMiniObject::wrapper"; */
|
||||
/* static GQuark pygstminiobject_wrapper_key = 0; */
|
||||
static const gchar pygstminiobject_class_id[] = "PyGstMiniObject::class";
|
||||
static GQuark pygstminiobject_class_key = 0;
|
||||
/* static const gchar pygstminiobject_wrapper_id[] = "PyGstMiniObject::wrapper"; */
|
||||
/* static GQuark pygstminiobject_wrapper_key = 0; */
|
||||
|
||||
static void pygstminiobject_dealloc(PyGstMiniObject *self);
|
||||
/* static int pygstminiobject_traverse(PyGstMiniObject *self, visitproc visit, void *arg); */
|
||||
|
|
Loading…
Reference in a new issue