Blender Git Loki

Git Commits -> Revision fe891d5

Revision fe891d5 by Joerg Mueller (master)
May 3, 2020, 13:30 (GMT)
Audaspace: update from upstream

- Changing API for time values from float to double for better precision.
- Fixing minor mistakes in the documentation.
- Fixing minor unnecessary large memory allocation.

Commit Details:

Full Hash: fe891d581dfece13b42414ba1d8fec6063290a31
Parent Commit: 2b7d5ca
Lines Changed: +174, -162

68 Modified Paths:

/extern/audaspace/bindings/C/AUD_Device.cpp (+2, -2) (Diff)
/extern/audaspace/bindings/C/AUD_Device.h (+2, -2) (Diff)
/extern/audaspace/bindings/C/AUD_DynamicMusic.cpp (+3, -3) (Diff)
/extern/audaspace/bindings/C/AUD_DynamicMusic.h (+3, -3) (Diff)
/extern/audaspace/bindings/C/AUD_Handle.cpp (+2, -2) (Diff)
/extern/audaspace/bindings/C/AUD_Handle.h (+2, -2) (Diff)
/extern/audaspace/bindings/C/AUD_Sequence.cpp (+2, -2) (Diff)
/extern/audaspace/bindings/C/AUD_Sequence.h (+2, -2) (Diff)
/extern/audaspace/bindings/C/AUD_Special.cpp (+2, -2) (Diff)
/extern/audaspace/bindings/C/AUD_Special.h (+2, -2) (Diff)
/extern/audaspace/bindings/doc/device.rst (+1, -0) (Diff)
/extern/audaspace/bindings/doc/handle.rst (+1, -0) (Diff)
/extern/audaspace/bindings/doc/index.rst (+2, -1) (Diff)
/extern/audaspace/bindings/doc/sequence.rst (+1, -0) (Diff)
/extern/audaspace/bindings/doc/sequence_entry.rst (+1, -0) (Diff)
/extern/audaspace/bindings/doc/sound.rst (+1, -0) (Diff)
/extern/audaspace/bindings/doc/tutorials.rst (+1, -1) (Diff)
/extern/audaspace/bindings/python/PyDynamicMusic.cpp (+3, -3) (Diff)
/extern/audaspace/bindings/python/PyHandle.cpp (+3, -3) (Diff)
/extern/audaspace/bindings/python/PySequence.cpp (+7, -7) (Diff)
/extern/audaspace/bindings/python/PySequenceEntry.cpp (+5, -5) (Diff)
/extern/audaspace/bindings/python/PySound.cpp (+5, -4) (Diff)
/extern/audaspace/include/devices/DefaultSynchronizer.h (+2, -2) (Diff)
/extern/audaspace/include/devices/IDeviceFactory.h (+3, -0) (Diff)
/extern/audaspace/include/devices/IHandle.h (+2, -2) (Diff)
/extern/audaspace/include/devices/ISynchronizer.h (+2, -2) (Diff)
/extern/audaspace/include/devices/NULLDevice.h (+2, -2) (Diff)
/extern/audaspace/include/devices/SoftwareDevice.h (+2, -2) (Diff)
/extern/audaspace/include/file/IFileInput.h (+4, -1) (Diff)
/extern/audaspace/include/fx/Delay.h (+3, -3) (Diff)
/extern/audaspace/include/fx/DelayReader.h (+1, -1) (Diff)
/extern/audaspace/include/fx/DynamicMusic.h (+5, -5) (Diff)
/extern/audaspace/include/fx/Fader.h (+5, -5) (Diff)
/extern/audaspace/include/fx/FaderReader.h (+3, -3) (Diff)
/extern/audaspace/include/fx/Limiter.h (+5, -5) (Diff)
/extern/audaspace/include/fx/LimiterReader.h (+3, -3) (Diff)
/extern/audaspace/include/sequence/Sequence.h (+1, -1) (Diff)
/extern/audaspace/include/sequence/SequenceData.h (+1, -1) (Diff)
/extern/audaspace/include/sequence/SequenceEntry.h (+5, -5) (Diff)
/extern/audaspace/plugins/jack/JackDevice.cpp (+3, -3) (Diff)
/extern/audaspace/plugins/jack/JackDevice.h (+2, -2) (Diff)
/extern/audaspace/plugins/jack/JackSynchronizer.cpp (+2, -2) (Diff)
/extern/audaspace/plugins/jack/JackSynchronizer.h (+2, -2) (Diff)
/extern/audaspace/plugins/openal/OpenALDevice.cpp (+2, -2) (Diff)
/extern/audaspace/plugins/openal/OpenALDevice.h (+2, -2) (Diff)
/extern/audaspace/src/devices/DefaultSynchronizer.cpp (+2, -2) (Diff)
/extern/audaspace/src/devices/NULLDevice.cpp (+2, -2) (Diff)
/extern/audaspace/src/devices/SoftwareDevice.cpp (+3, -3) (Diff)
/extern/audaspace/src/fx/Delay.cpp (+2, -2) (Diff)
/extern/audaspace/src/fx/DelayReader.cpp (+1, -1) (Diff)
/extern/audaspace/src/fx/DynamicMusic.cpp (+5, -5) (Diff)
/extern/audaspace/src/fx/Fader.cpp (+3, -3) (Diff)
/extern/audaspace/src/fx/FaderReader.cpp (+4, -4) (Diff)
/extern/audaspace/src/fx/Limiter.cpp (+3, -3) (Diff)
/extern/audaspace/src/fx/LimiterReader.cpp (+1, -1) (Diff)
/extern/audaspace/src/respec/ChannelMapperReader.cpp (+1, -1) (Diff)
/extern/audaspace/src/respec/Mixer.cpp (+2, -2) (Diff)
/extern/audaspace/src/sequence/Sequence.cpp (+1, -1) (Diff)
/extern/audaspace/src/sequence/SequenceData.cpp (+1, -1) (Diff)
/extern/audaspace/src/sequence/SequenceEntry.cpp (+2, -2) (Diff)
/extern/audaspace/src/sequence/SequenceHandle.cpp (+4, -4) (Diff)
/extern/audaspace/src/sequence/SequenceHandle.h (+3, -3) (Diff)
/extern/audaspace/src/sequence/SequenceReader.cpp (+3, -4) (Diff)
/source/blender/blenkernel/BKE_sound.h (+3, -3) (Diff)
/source/blender/blenkernel/intern/sound.c (+8, -8) (Diff)
/source/blender/editors/screen/screen_ops.c (+2, -2) (Diff)
/source/blender/windowmanager/intern/wm_event_system.c (+2, -2) (Diff)
/source/blender/windowmanager/intern/wm_init_exit.c (+1, -1) (Diff)
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021