From: Thibault Saunier Date: Sun, 24 Jul 2016 12:32:06 +0000 (-0400) Subject: timeline: Emit snap-ended on commit if needed X-Git-Tag: 1.19.3~493^2~982 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6762b05c19e184ab0b161071c8a573776251a119;p=platform%2Fupstream%2Fgstreamer.git timeline: Emit snap-ended on commit if needed Commiting the timeline means that the current operations on the clips are over, so we should concider snapping as done at that point Fixes T7499 --- diff --git a/ges/ges-timeline.c b/ges/ges-timeline.c index 236cc4a..716349d 100644 --- a/ges/ges-timeline.c +++ b/ges/ges-timeline.c @@ -3406,6 +3406,8 @@ ges_timeline_commit (GESTimeline * timeline) LOCK_DYN (timeline); ret = ges_timeline_commit_unlocked (timeline); UNLOCK_DYN (timeline); + + ges_timeline_emit_snappig (timeline, NULL, NULL); return ret; }