projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
20301a8
)
bin: Fix deep-element-removed log message
author
Jan Alexander Steffens (heftig)
<jsteffens@make.tv>
Thu, 9 Jan 2020 19:07:06 +0000
(20:07 +0100)
committer
Jan Alexander Steffens (heftig)
<jsteffens@make.tv>
Thu, 9 Jan 2020 19:08:38 +0000
(20:08 +0100)
child and bin were switched.
https://gitlab.freedesktop.org/gstreamer/gstreamer/merge_requests/354
gst/gstbin.c
patch
|
blob
|
history
diff --git
a/gst/gstbin.c
b/gst/gstbin.c
index 6f5e469a3fcf910b534461ebb96a286b85694c99..f8dc325bc22e198dcb4b5d920bc7002c0b444602 100644
(file)
--- a/
gst/gstbin.c
+++ b/
gst/gstbin.c
@@
-1482,7
+1482,7
@@
gst_bin_deep_element_removed_func (GstBin * bin, GstBin * sub_bin,
GST_LOG_OBJECT (parent_bin, "emitting deep-element-removed for element "
"%" GST_PTR_FORMAT " which has just been removed from %" GST_PTR_FORMAT,
-
sub_bin, child
);
+
child, sub_bin
);
g_signal_emit (parent_bin, gst_bin_signals[DEEP_ELEMENT_REMOVED], 0, sub_bin,
child);