mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
GESTrackAudioTransition: Fix empty if() body
This commit is contained in:
parent
74d41ef414
commit
1dcc4b56bc
1 changed files with 2 additions and 2 deletions
|
@ -260,8 +260,8 @@ ges_track_audio_transition_duration_changed (GESTrackObject * object,
|
||||||
gnlobj, self->a_controller, self->b_controller);
|
gnlobj, self->a_controller, self->b_controller);
|
||||||
|
|
||||||
if (G_UNLIKELY ((!gnlobj || !self->a_control_source ||
|
if (G_UNLIKELY ((!gnlobj || !self->a_control_source ||
|
||||||
!self->b_control_source)));
|
!self->b_control_source)))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
GST_INFO ("duration: %" G_GUINT64_FORMAT, duration);
|
GST_INFO ("duration: %" G_GUINT64_FORMAT, duration);
|
||||||
g_value_init (&zero, G_TYPE_DOUBLE);
|
g_value_init (&zero, G_TYPE_DOUBLE);
|
||||||
|
|
Loading…
Reference in a new issue