mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-11 06:11:27 +00:00
GESTrackEffect: Use gst_object_unref for the hash value destroyfunc
The values are GstObjects and it makes it easier to track in debug logs when they are being unreffed.
This commit is contained in:
parent
3195bd1303
commit
7b303a38c5
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ ges_track_effect_get_props_hashtable (GESTrackObject * self)
|
|||
}
|
||||
|
||||
ret = g_hash_table_new_full ((GHashFunc) pspec_hash, pspec_equal,
|
||||
(GDestroyNotify) g_param_spec_unref, g_object_unref);
|
||||
(GDestroyNotify) g_param_spec_unref, gst_object_unref);
|
||||
|
||||
/* We go over child elements recursivly, and add writable properties to the
|
||||
* hashtable
|
||||
|
|
Loading…
Reference in a new issue