[Bf-blender-cvs] [3e67831d3fc] master: VSE: Fix sound strip not aligned with movie strip

Richard Antalik noreply at git.blender.org
Wed Feb 9 16:07:12 CET 2022


Commit: 3e67831d3fc87629a45908ebb9fec575dadab1d6
Author: Richard Antalik
Date:   Wed Feb 9 16:04:35 2022 +0100
Branches: master
https://developer.blender.org/rB3e67831d3fc87629a45908ebb9fec575dadab1d6

VSE: Fix sound strip not aligned with movie strip

Strip aligning wasn't done when length of 2 strip is equal, but since
these strips are aligned according to position in stream this can
produce offset.

===================================================================

M	source/blender/editors/space_sequencer/sequencer_add.c

===================================================================

diff --git a/source/blender/editors/space_sequencer/sequencer_add.c b/source/blender/editors/space_sequencer/sequencer_add.c
index aef6b30986d..439a37631e0 100644
--- a/source/blender/editors/space_sequencer/sequencer_add.c
+++ b/source/blender/editors/space_sequencer/sequencer_add.c
@@ -632,7 +632,7 @@ static void sequencer_add_movie_clamp_sound_strip_length(Scene *scene,
                                                          Sequence *seq_movie,
                                                          Sequence *seq_sound)
 {
-  if (ELEM(NULL, seq_movie, seq_sound) || seq_sound->len <= seq_movie->len) {
+  if (ELEM(NULL, seq_movie, seq_sound)) {
     return;
   }



More information about the Bf-blender-cvs mailing list