mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
GESTrackTransition: Fix debug statement
This commit is contained in:
parent
9eedf06b7b
commit
ea55ceb747
1 changed files with 4 additions and 1 deletions
|
@ -74,7 +74,7 @@ ges_track_transition_update_acontroller (GESTrackTransition * self,
|
|||
GstElement * gnlobj)
|
||||
{
|
||||
GST_LOG ("updating controller: gnlobj (%p) acontroller(%p) bcontroller(%p)",
|
||||
self->a_acontroller, self->a_bcontroller);
|
||||
gnlobj, self->a_acontroller, self->a_bcontroller);
|
||||
|
||||
if (!gnlobj)
|
||||
return;
|
||||
|
@ -155,6 +155,9 @@ static void
|
|||
ges_track_transition_dispose (GObject * object)
|
||||
{
|
||||
GESTrackTransition *self = GES_TRACK_TRANSITION (object);
|
||||
|
||||
GST_DEBUG ("disposing");
|
||||
|
||||
if (self->vcontroller) {
|
||||
g_object_unref (self->vcontroller);
|
||||
self->vcontroller = NULL;
|
||||
|
|
Loading…
Reference in a new issue