pixelperfectengine v0.9.4-beta2 (2019-02-10T22:09:11Z)
Dub
Repo
FiniteImpulseResponseFilter
PixelPerfectEngine
audio
firFilter
Implements a finite impulse response filter.
struct
FiniteImpulseResponseFilter (
int
L
)
if
(
isPowerOf2
(
L
)
) {
FiniteImpulseResponse
!
L
*
impulseResponse
;
this
(FiniteImpulseResponse!L* impulseResponse);
version
(
LDC
)
int
calculate
(short input);
version
(!
LDC
)
int
calculate
(short input);
}
Constructors
this
this
(FiniteImpulseResponse!L* impulseResponse)
Undocumented in source.
Members
Functions
calculate
int
calculate
(short input)
Undocumented in source. Be warned that the author may not have intended to support it.
calculate
int
calculate
(short input)
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
impulseResponse
FiniteImpulseResponse
!
L
*
impulseResponse
;
Pointer to the impulse response
Meta
Source
See Implementation
PixelPerfectEngine
audio
firFilter
structs
FiniteImpulseResponse
FiniteImpulseResponseFilter
Implements a finite impulse response filter.