mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
remove extra debug info
Original commit message from CVS: remove extra debug info
This commit is contained in:
parent
905c1bbb96
commit
ef1473b443
1 changed files with 0 additions and 3 deletions
|
@ -141,8 +141,6 @@ gst_object_ref (GstObject *object)
|
||||||
G_OBJECT(object)->ref_count,G_OBJECT(object)->ref_count+1);
|
G_OBJECT(object)->ref_count,G_OBJECT(object)->ref_count+1);
|
||||||
|
|
||||||
g_object_ref (G_OBJECT (object));
|
g_object_ref (G_OBJECT (object));
|
||||||
GST_DEBUG (GST_CAT_REFCOUNTING, "count now %d\n", G_OBJECT(object)->ref_count);
|
|
||||||
|
|
||||||
return object;
|
return object;
|
||||||
}
|
}
|
||||||
#define gst_object_ref gst_object_ref
|
#define gst_object_ref gst_object_ref
|
||||||
|
@ -163,7 +161,6 @@ gst_object_unref (GstObject *object)
|
||||||
G_OBJECT(object)->ref_count,G_OBJECT(object)->ref_count-1);
|
G_OBJECT(object)->ref_count,G_OBJECT(object)->ref_count-1);
|
||||||
|
|
||||||
g_object_unref (G_OBJECT (object));
|
g_object_unref (G_OBJECT (object));
|
||||||
GST_DEBUG (GST_CAT_REFCOUNTING, "count now %d\n", G_OBJECT(object)->ref_count);
|
|
||||||
}
|
}
|
||||||
#define gst_object_unref gst_object_unref
|
#define gst_object_unref gst_object_unref
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue