mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-25 08:38:21 +00:00
Small cleanup
Original commit message from CVS: Small cleanup
This commit is contained in:
parent
c78119cf6e
commit
befa05b4cd
1 changed files with 6 additions and 3 deletions
|
@ -639,9 +639,12 @@ gst_object_dispatch_properties_changed (GObject *object,
|
||||||
while (gst_object)
|
while (gst_object)
|
||||||
{
|
{
|
||||||
/* need own category? */
|
/* need own category? */
|
||||||
GST_DEBUG (GST_CAT_EVENT, "deep notification from %s to %s", GST_OBJECT_NAME (object), GST_OBJECT_NAME (gst_object));
|
for (i = 0; i < n_pspecs; i++) {
|
||||||
for (i = 0; i < n_pspecs; i++)
|
GST_DEBUG (GST_CAT_EVENT, "deep notification from %s to %s (%s)", GST_OBJECT_NAME (object),
|
||||||
g_signal_emit (gst_object, gst_object_signals[DEEP_NOTIFY], g_quark_from_string (pspecs[i]->name), (GstObject *) object, pspecs[i]);
|
GST_OBJECT_NAME (gst_object), pspecs[i]->name);
|
||||||
|
g_signal_emit (gst_object, gst_object_signals[DEEP_NOTIFY], g_quark_from_string (pspecs[i]->name),
|
||||||
|
(GstObject *) object, pspecs[i]);
|
||||||
|
}
|
||||||
|
|
||||||
gst_object = GST_OBJECT_PARENT (gst_object);
|
gst_object = GST_OBJECT_PARENT (gst_object);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue