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-12-22 19:07:57 +0300
committerJoerg Mueller <nexyon@gmail.com>2010-12-22 19:07:57 +0300
commit01bb474d4f6e1ed3936894417119ae0baac177a8 (patch)
tree1e9ea9d44493b7da3bba7b30be55b8e6f4dd2374 /source/blender/blenkernel/BKE_sound.h
parentd729c0cff75e5bcff6dec2b277c23777156d07ab (diff)
Audio: Function to get channel count of a sound, for [#25062] Sound Actuator - Positional Audio.
Diffstat (limited to 'source/blender/blenkernel/BKE_sound.h')
-rw-r--r--source/blender/blenkernel/BKE_sound.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_sound.h b/source/blender/blenkernel/BKE_sound.h
index 2d4ea812f57..cf77049b599 100644
--- a/source/blender/blenkernel/BKE_sound.h
+++ b/source/blender/blenkernel/BKE_sound.h
@@ -96,4 +96,6 @@ int sound_scene_playing(struct Scene *scene);
int sound_read_sound_buffer(struct bSound* sound, float* buffer, int length, float start, float end);
+int sound_get_channels(struct bSound* sound);
+
#endif