mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
timeline: Avoid segfault when debug logging
This commit is contained in:
parent
dd55b0084b
commit
20e7d4349c
1 changed files with 4 additions and 1 deletions
|
@ -776,9 +776,12 @@ ges_timeline_snap_position (GESTimeline * timeline, GESTrackObject * trackobj,
|
||||||
/* We emit the snapping signal only if we snapped with a different value
|
/* We emit the snapping signal only if we snapped with a different value
|
||||||
* than the current one */
|
* than the current one */
|
||||||
if (emit) {
|
if (emit) {
|
||||||
|
GstClockTime snap_time = ret ? *ret : GST_CLOCK_TIME_NONE;
|
||||||
|
|
||||||
ges_timeline_emit_snappig (timeline, trackobj, ret);
|
ges_timeline_emit_snappig (timeline, trackobj, ret);
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (timeline, "Snaping at %" GST_TIME_FORMAT,
|
GST_DEBUG_OBJECT (timeline, "Snaping at %" GST_TIME_FORMAT,
|
||||||
GST_TIME_ARGS (*ret));
|
GST_TIME_ARGS (snap_time));
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue