[Bf-blender-cvs] [394a0b0da5b] master: Fix building without audaspace

Campbell Barton noreply at git.blender.org
Mon Aug 16 15:20:12 CEST 2021


Commit: 394a0b0da5b899944d33a38c9ff01e03dc370f2a
Author: Campbell Barton
Date:   Mon Aug 16 23:19:54 2021 +1000
Branches: master
https://developer.blender.org/rB394a0b0da5b899944d33a38c9ff01e03dc370f2a

Fix building without audaspace

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

M	source/blender/blenkernel/intern/sound.c
M	source/blender/sequencer/intern/strip_add.c

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

diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c
index 9d287377545..bd0fbd840ff 100644
--- a/source/blender/blenkernel/intern/sound.c
+++ b/source/blender/blenkernel/intern/sound.c
@@ -1312,7 +1312,8 @@ void BKE_sound_move_scene_sound(Scene *UNUSED(scene),
                                 void *UNUSED(handle),
                                 int UNUSED(startframe),
                                 int UNUSED(endframe),
-                                int UNUSED(frameskip))
+                                int UNUSED(frameskip),
+                                double UNUSED(audio_offset))
 {
 }
 void BKE_sound_move_scene_sound_defaults(Scene *UNUSED(scene), Sequence *UNUSED(sequence))
diff --git a/source/blender/sequencer/intern/strip_add.c b/source/blender/sequencer/intern/strip_add.c
index cc70cc38ebb..27e92550bbb 100644
--- a/source/blender/sequencer/intern/strip_add.c
+++ b/source/blender/sequencer/intern/strip_add.c
@@ -463,7 +463,8 @@ Sequence *SEQ_add_sound_strip(Main *bmain,
 Sequence *SEQ_add_sound_strip(Main *UNUSED(bmain),
                               Scene *UNUSED(scene),
                               ListBase *UNUSED(seqbase),
-                              SeqLoadData *UNUSED(load_data))
+                              SeqLoadData *UNUSED(load_data),
+                              const double UNUSED(audio_offset))
 {
   return NULL;
 }



More information about the Bf-blender-cvs mailing list