diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2019-05-29 09:37:25 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2019-05-29 09:37:25 -0700 |
commit | ec3a6f8cded70aeb54e9c658fa68a680c017e1ef (patch) | |
tree | ba1d289c58645040cf0aaccaf6405dae8a87c414 /Alc/effects/base.h | |
parent | b923eb187991a8db56fd23cffa70f946ce24c1ff (diff) |
Use FloatBufferLine for the effect process method
Diffstat (limited to 'Alc/effects/base.h')
-rw-r--r-- | Alc/effects/base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/base.h b/Alc/effects/base.h index 467fb5af..c7c6f1c0 100644 --- a/Alc/effects/base.h +++ b/Alc/effects/base.h @@ -151,7 +151,7 @@ struct EffectState { virtual ALboolean deviceUpdate(const ALCdevice *device) = 0; virtual void update(const ALCcontext *context, const ALeffectslot *slot, const EffectProps *props, const EffectTarget target) = 0; - virtual void process(ALsizei samplesToDo, const ALfloat (*RESTRICT samplesIn)[BUFFERSIZE], const ALsizei numInput, ALfloat (*RESTRICT samplesOut)[BUFFERSIZE], const ALsizei numOutput) = 0; + virtual void process(const ALsizei samplesToDo, const FloatBufferLine *RESTRICT samplesIn, const ALsizei numInput, FloatBufferLine *RESTRICT samplesOut, const ALsizei numOutput) = 0; void IncRef() noexcept; void DecRef() noexcept; |