MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ ProcessMode

Processing mode for the polynomial processor.

Enumerator
SAMPLE_BY_SAMPLE 

Process each sample individually.

BATCH 

Process the entire buffer at once.

WINDOWED 

Process using a sliding window.

BUFFER_CONTEXT 

Process each sample with access to buffer history.

Definition at line 22 of file PolynomialProcessor.hpp.

22 : uint8_t {
23 SAMPLE_BY_SAMPLE, ///< Process each sample individually
24 BATCH, ///< Process the entire buffer at once
25 WINDOWED, ///< Process using a sliding window
26 BUFFER_CONTEXT ///< Process each sample with access to buffer history
27 };
@ BATCH
Process the entire buffer at once.
@ SAMPLE_BY_SAMPLE
Process each sample individually.
@ WINDOWED
Process using a sliding window.
@ BUFFER_CONTEXT
Process each sample with access to buffer history.