|
arduino-audio-tools
|
Passes the input through unchanged. Useful as a placeholder when a Filter is required but no processing is desired. More...
#include <Filter.h>
Public Member Functions | |
| NoFilter ()=default | |
| T | process (T in) override |
| Processes the input value and returns the filtered output value. | |
| virtual void | reset () |
Passes the input through unchanged. Useful as a placeholder when a Filter is required but no processing is desired.
| T | sample type |
Processes the input value and returns the filtered output value.
Implements Filter< T >.
Clears the internal state (delay lines) without changing the coefficients. Call after reconfiguring filter parameters via begin() to avoid transients from stale state.
Reimplemented in FIR< T >, IIR< T >, BiQuadDF1< T >, BiQuadDF2< T >, BiQuadDF2< float >, SOSFilter< T, N >, and FilterChain< T, N >.