diff options
author | Chris Robinson <[email protected]> | 2015-10-15 07:29:25 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-10-15 07:29:25 -0700 |
commit | 97f53d941c32b24470a0f589853ce60cfbe7f15b (patch) | |
tree | 06ced97b1b83511279a5a237d5e2721ac14bbda2 /OpenAL32/Include/alSource.h | |
parent | 3c54ba3901d93093406a7e5129bb43badcc6cf50 (diff) |
Store the source's previous samples with the voice
This helps avoid different results when looping is toggled within a couple
samples of the loop point, or when a processed buffer is removed while the
source is only a couple samples into the next buffer.
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 89c210b9..34c3575b 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -35,6 +35,8 @@ typedef struct ALvoice { ALuint Offset; /* Number of output samples mixed since starting. */ + alignas(16) ALfloat PrevSamples[MAX_INPUT_CHANNELS][MAX_PREVIOUS_SAMPLES]; + DirectParams Direct; SendParams Send[MAX_SENDS]; } ALvoice; |