-
I'm trying to make an "amalgamation" file of SoLoud (basically all the source files in a single .h and .cpp file) and I was wandering if I can freely use some of the audio files of the Demos in my Dem…
-
```
handle Soloud::playClocked(time aSoundTime, AudioSource &aSound, float aVolume, float aPan, unsigned int aBus)
{
handle h = play(aSound, aVolume, aPan, 1, aBus);
lockAudioM…
-
Hi.
I've run Valgrind (a memory leak detector) and I've found that it's happier if we change:
``` c++
SpeechInstance::~SpeechInstance(){
//delete mSample; // old
…
-
```
// Current channel volumes, used to ramp the volume changes to avoid clicks
float mCurrentChannelVolume[MAX_CHANNELS];
```
In Soloud::mixBus():
```
float pan[MAX_CHANNELS]; // current speaker vo…
-
The OpenAL backend is pretty useless due to the huge latency, but its cleanup is still unfinished - device and buffers are created but never cleaned up.
-
Would it be possible to add dynamic range compression straight in to SoLoud, or simply as a filter?
I'm not 100% sure if that's the correct term for what I'm after, but I'm using SoLoud in a an upcom…
-
Hi, I followed the instructions and am getting this error, any idea what could be the cause?
``` sh
==== Building SoloudDynamic (debug) ====
Creating debug/Debug/SoloudDynamic
Creating debug/Debug/So…
dawik updated
9 years ago
-
SoLoud needs an Android port. I'm going to do this soon (next month or so), so just putting an issue here for visibility, so if anyone else is doing it I don't waste any time, or if anyone else wants…
-
Currently it's not possible to compile soloud with just the null driver because WITH_NULL is missing from the check in soloud.cpp:
# if !defined(WITH_SDL2) && !defined(WITH_SDL) && !defined(WITH_PORTA…
-
Hitting an arithmetic error here: https://github.com/jarikomppa/soloud/blob/master/src/core/soloud.cpp#L644
writesamples = ((SAMPLE_GRANULARITY \* FIXPOINT_FRAC_MUL) - voice->mSrcOffset) / step_fixed …