Sound: add stubs to build without audaspace

This commit is contained in:
Campbell Barton 2019-05-05 12:28:16 +10:00
parent d32a103d53
commit 5fc49d9c91
Notes: blender-bot 2023-02-13 11:57:55 +01:00
Referenced by commit 2b9965122e, Sound: Revert all the recent changes to sound
1 changed files with 8 additions and 0 deletions

View File

@ -1217,6 +1217,14 @@ char **BKE_sound_get_device_names(void)
return names;
}
void BKE_sound_free_waveform(bSound *UNUSED(sound))
{
}
void BKE_sound_load_audio(Main *UNUSED(bmain), bSound *UNUSED(sound))
{
}
#endif /* WITH_AUDASPACE */
void BKE_sound_update_and_seek(Main *bmain, Depsgraph *depsgraph)