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

◆ process_default()

void MayaFlux::Buffers::FeedbackBuffer::process_default ( )
overridevirtual

Processes this buffer using its default processor.

For a FeedbackBuffer, this involves applying the recursive algorithm that combines current input with the previous state according to the feedback coefficient.

Reimplemented from MayaFlux::Buffers::AudioBuffer.

Definition at line 14 of file FeedbackBuffer.cpp.

15{
16 m_default_processor->process(shared_from_this());
17}
std::shared_ptr< BufferProcessor > m_default_processor
Default audio transformation processor for this buffer.

References MayaFlux::Buffers::AudioBuffer::m_default_processor.