Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2021-09-06 06:25:36 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-09-06 06:25:36 +0300
commit91bca410c0e08c6d1cd227336df91faddab7a767 (patch)
tree792b526cf4e5fbdf339fb104a11ab468148c5da7 /source/blender/sequencer
parentbf0ac711fde2e0439af117f73ab1b3a758969348 (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/sequencer')
-rw-r--r--source/blender/sequencer/intern/effects.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/sequencer/intern/effects.c b/source/blender/sequencer/intern/effects.c
index 80314d34360..4448db013fe 100644
--- a/source/blender/sequencer/intern/effects.c
+++ b/source/blender/sequencer/intern/effects.c
@@ -3188,7 +3188,7 @@ float seq_speed_effect_target_frame_get(Scene *scene,
case SEQ_SPEED_STRETCH: {
/* Only right handle controls effect speed! */
const float target_content_length = seq_effect_speed_get_strip_content_length(source) -
- source->startofs;
+ source->startofs;
const float speed_effetct_length = seq_speed->enddisp - seq_speed->startdisp;
const float ratio = frame_index / speed_effetct_length;
target_frame = target_content_length * ratio;