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:
authorBastien Montagne <montagne29@wanadoo.fr>2020-03-08 22:45:00 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2020-03-08 22:45:00 +0300
commit668b64380a7ef5c5079f436dc145a625af56b402 (patch)
tree3eb6f01c959f4c4eb25aeec1b6df4d748803c031 /source/blender/blenkernel/BKE_sound.h
parent014f78b5b5a49c133ff95b3c9d973744de6eec2d (diff)
Cleanup: Sound: Move to IDTypeInfo and remove unused BKE API.
Diffstat (limited to 'source/blender/blenkernel/BKE_sound.h')
-rw-r--r--source/blender/blenkernel/BKE_sound.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/blender/blenkernel/BKE_sound.h b/source/blender/blenkernel/BKE_sound.h
index e2866728bba..e6d931276bf 100644
--- a/source/blender/blenkernel/BKE_sound.h
+++ b/source/blender/blenkernel/BKE_sound.h
@@ -80,8 +80,6 @@ void BKE_sound_reset_runtime(struct bSound *sound);
void BKE_sound_load(struct Main *main, struct bSound *sound);
void BKE_sound_ensure_loaded(struct Main *bmain, struct bSound *sound);
-void BKE_sound_free(struct bSound *sound);
-
/* Matches AUD_Channels. */
typedef enum eSoundChannels {
SOUND_CHANNELS_INVALID = 0,
@@ -106,13 +104,6 @@ typedef struct SoundInfo {
* or if the codes is not supported. */
bool BKE_sound_info_get(struct Main *main, struct bSound *sound, SoundInfo *sound_info);
-void BKE_sound_copy_data(struct Main *bmain,
- struct bSound *sound_dst,
- const struct bSound *sound_src,
- const int flag);
-
-void BKE_sound_make_local(struct Main *bmain, struct bSound *sound, const int flags);
-
#if defined(WITH_AUDASPACE)
AUD_Device *BKE_sound_mixdown(struct Scene *scene, AUD_DeviceSpecs specs, int start, float volume);
#endif