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

◆ is_capture_phase_operation()

bool MayaFlux::Kriya::BufferOperation::is_capture_phase_operation ( const BufferOperation op)
static

Definition at line 246 of file BufferOperation.cpp.

247{
248 if (op.get_execution_phase() == BufferOperation::ExecutionPhase::CAPTURE) {
249 return true;
250 }
251 if (op.get_execution_phase() == BufferOperation::ExecutionPhase::PROCESS) {
252 return false;
253 }
254
255 switch (op.get_type()) {
257 return true;
259 return op.is_streaming();
260 default:
261 return false;
262 }
263}
@ CAPTURE
Capture data from source buffer using BufferCapture strategy.
@ MODIFY
Modify Buffer Data using custom quick process.

References CAPTURE, get_execution_phase(), get_type(), is_streaming(), MODIFY, and PROCESS.

Referenced by MayaFlux::Kriya::BufferPipeline::execute_phased().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: