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

◆ HookPosition

enum class MayaFlux::Core::HookPosition : uint8_t
strong

Defines the position in the processing cycle where a hook should be executed.

Process hooks can be registered to run either before or after the main audio processing to perform additional operations or monitoring at specific points in the signal chain.

Enumerator
PRE_PROCESS 

Execute hook before any audio processing occurs.

POST_PROCESS 

Execute hook after all audio processing is complete.

Definition at line 41 of file ProcessingArchitecture.hpp.

41 : uint8_t {
42 PRE_PROCESS, ///< Execute hook before any audio processing occurs
43 POST_PROCESS ///< Execute hook after all audio processing is complete
44};
@ POST_PROCESS
Execute hook after all audio processing is complete.
@ PRE_PROCESS
Execute hook before any audio processing occurs.