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:
authorJoerg Mueller <nexyon@gmail.com>2010-07-17 17:41:22 +0400
committerJoerg Mueller <nexyon@gmail.com>2010-07-17 17:41:22 +0400
commitfd982af4471d55e756629c0aeffe60fe8f5b4687 (patch)
tree56e42f14e2dd576d366b2fef2cbe35efbfd44a76 /source/blender/blenkernel/BKE_sound.h
parent06193537edfd0635b8a6edabf1ea2f87eb33b8c6 (diff)
Merging revision 30434 from my GSoC branch, log: Fixed sound wave display bug for sounds that are not full length.
Diffstat (limited to 'source/blender/blenkernel/BKE_sound.h')
-rw-r--r--source/blender/blenkernel/BKE_sound.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_sound.h b/source/blender/blenkernel/BKE_sound.h
index 50c86e80b08..190b0400aff 100644
--- a/source/blender/blenkernel/BKE_sound.h
+++ b/source/blender/blenkernel/BKE_sound.h
@@ -94,6 +94,6 @@ float sound_sync_scene(struct Scene *scene);
int sound_scene_playing(struct Scene *scene);
-int sound_read_sound_buffer(struct bSound* sound, float* buffer, int length);
+int sound_read_sound_buffer(struct bSound* sound, float* buffer, int length, float start, float end);
#endif