diff options
author | Chris Robinson <[email protected]> | 2019-05-29 09:37:25 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-29 09:37:25 -0700 |
commit | ec3a6f8cded70aeb54e9c658fa68a680c017e1ef (patch) | |
tree | ba1d289c58645040cf0aaccaf6405dae8a87c414 /Alc/effects/null.cpp | |
parent | b923eb187991a8db56fd23cffa70f946ce24c1ff (diff) |
Use FloatBufferLine for the effect process method
Diffstat (limited to 'Alc/effects/null.cpp')
-rw-r--r-- | Alc/effects/null.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/effects/null.cpp b/Alc/effects/null.cpp index 5a2e4d78..96c0e928 100644 --- a/Alc/effects/null.cpp +++ b/Alc/effects/null.cpp @@ -19,7 +19,7 @@ struct NullState final : public EffectState { ALboolean deviceUpdate(const ALCdevice *device) override; void update(const ALCcontext *context, const ALeffectslot *slot, const EffectProps *props, const EffectTarget target) override; - void process(ALsizei samplesToDo, const ALfloat (*RESTRICT samplesIn)[BUFFERSIZE], const ALsizei numInput, ALfloat (*RESTRICT samplesOut)[BUFFERSIZE], const ALsizei numOutput) override; + void process(const ALsizei samplesToDo, const FloatBufferLine *RESTRICT samplesIn, const ALsizei numInput, FloatBufferLine *RESTRICT samplesOut, const ALsizei numOutput) override; DEF_NEWDEL(NullState) }; @@ -55,7 +55,7 @@ void NullState::update(const ALCcontext* UNUSED(context), const ALeffectslot* UN * input to the output buffer. The result should be added to the output buffer, * not replace it. */ -void NullState::process(ALsizei /*samplesToDo*/, const ALfloat (*RESTRICT /*samplesIn*/)[BUFFERSIZE], const ALsizei /*numInput*/, ALfloat (*RESTRICT /*samplesOut*/)[BUFFERSIZE], const ALsizei /*numOutput*/) +void NullState::process(const ALsizei /*samplesToDo*/, const FloatBufferLine *RESTRICT /*samplesIn*/, const ALsizei /*numInput*/, FloatBufferLine *RESTRICT /*samplesOut*/, const ALsizei /*numOutput*/) { } |