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:
authorAntony Riakiotakis <kalast@gmail.com>2015-03-26 13:39:08 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-03-26 13:39:08 +0300
commitdc3b869c9aed56bf75955436bdb527df0be933f3 (patch)
tree7d0a206568fceca1cd457cf630fe37876d54c777 /source/blender/blenkernel/intern/sound.c
parent828c85a1bf6045dc76d1197635a4b71d897206c3 (diff)
Missed those last commit
Diffstat (limited to 'source/blender/blenkernel/intern/sound.c')
-rw-r--r--source/blender/blenkernel/intern/sound.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c
index cc0d0bdcfcc..89be80e5328 100644
--- a/source/blender/blenkernel/intern/sound.c
+++ b/source/blender/blenkernel/intern/sound.c
@@ -231,7 +231,7 @@ void BKE_sound_exit_once(void)
/* XXX unused currently */
#if 0
-bSound *sound_new_buffer(struct Main *bmain, bSound *source)
+bSound *BKE_sound_new_buffer(struct Main *bmain, bSound *source)
{
bSound *sound = NULL;
@@ -255,7 +255,7 @@ bSound *sound_new_buffer(struct Main *bmain, bSound *source)
return sound;
}
-bSound *sound_new_limiter(struct Main *bmain, bSound *source, float start, float end)
+bSound *BKE_sound_new_limiter(struct Main *bmain, bSound *source, float start, float end)
{
bSound *sound = NULL;
@@ -386,7 +386,7 @@ void BKE_sound_load(struct Main *bmain, bSound *sound)
}
}
-AUD_Device *sound_mixdown(struct Scene *scene, AUD_DeviceSpecs specs, int start, float volume)
+AUD_Device *BKE_sound_mixdown(struct Scene *scene, AUD_DeviceSpecs specs, int start, float volume)
{
return AUD_openMixdownDevice(specs, scene->sound_scene, volume, start / FPS);
}