Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
luzpaz
gstreamer
Commits
9993022f
Commit
9993022f
authored
Jun 23, 2009
by
Wim Taymans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
object: also add pointers to debug
Add the object pointers in the debug info for _replace.
parent
26d91daa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gst/gstobject.c
gst/gstobject.c
+3
-3
No files found.
gst/gstobject.c
View file @
9993022f
...
...
@@ -416,10 +416,10 @@ gst_object_replace (GstObject ** oldobj, GstObject * newobj)
g_return_if_fail
(
newobj
==
NULL
||
GST_IS_OBJECT
(
newobj
));
#ifdef DEBUG_REFCOUNT
GST_CAT_LOG
(
GST_CAT_REFCOUNTING
,
"replace %s (%d) with %s (%d)"
,
*
oldobj
?
GST_STR_NULL
(
GST_OBJECT_NAME
(
*
oldobj
))
:
"(NONE)"
,
GST_CAT_LOG
(
GST_CAT_REFCOUNTING
,
"replace
%p
%s (%d) with
%p
%s (%d)"
,
*
oldobj
,
*
oldobj
?
GST_STR_NULL
(
GST_OBJECT_NAME
(
*
oldobj
))
:
"(NONE)"
,
*
oldobj
?
G_OBJECT
(
*
oldobj
)
->
ref_count
:
0
,
newobj
?
GST_STR_NULL
(
GST_OBJECT_NAME
(
newobj
))
:
"(NONE)"
,
newobj
,
newobj
?
GST_STR_NULL
(
GST_OBJECT_NAME
(
newobj
))
:
"(NONE)"
,
newobj
?
G_OBJECT
(
newobj
)
->
ref_count
:
0
);
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment