summaryrefslogtreecommitdiff
path: root/gst/pygstminiobject.c
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2005-10-06 13:51:31 +0000
committerEdward Hervey <bilboed@bilboed.com>2005-10-06 13:51:31 +0000
commit2a96c988c0de29c95a65606f428513d63d584ae9 (patch)
tree793703f636d69c2778573e8d05ffe0b7e4909abf /gst/pygstminiobject.c
parentca1cb51d1abd8d3e44b0947fb497ec96d2d54736 (diff)
gst/gstbuffer.override: Proper wrapping of the GstBuffer.caps attribute
Original commit message from CVS: * gst/gstbuffer.override: (_wrap_gst_buffer__get_caps): Proper wrapping of the GstBuffer.caps attribute * gst/gstmodule.c: (init_gst): * gst/pygstminiobject.c: (pygstminiobject_register_class): gst-debug initialisation should happen before anything else if we want the debugging functions to work.
Diffstat (limited to 'gst/pygstminiobject.c')
-rw-r--r--gst/pygstminiobject.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gst/pygstminiobject.c b/gst/pygstminiobject.c
index ccc5758..0cf69f0 100644
--- a/gst/pygstminiobject.c
+++ b/gst/pygstminiobject.c
@@ -115,11 +115,9 @@ pygstminiobject_register_class(PyObject *dict, const gchar *type_name,
if (gtype) {
o = pyg_type_wrapper_new(gtype);
PyDict_SetItemString(type->tp_dict, "__gtype__", o);
- GST_INFO ("Decrement refcount %p", o);
Py_DECREF(o);
/* stash a pointer to the python class with the GType */
- GST_INFO ("Increment refcount %p", type);
Py_INCREF(type);
g_type_set_qdata(gtype, pygstminiobject_class_key, type);
}