MayaFlux 0.1.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 243 of file BufferOperation.cpp.

244{
245 if (op.get_execution_phase() == BufferOperation::ExecutionPhase::CAPTURE) {
246 return true;
247 }
248 if (op.get_execution_phase() == BufferOperation::ExecutionPhase::PROCESS) {
249 return false;
250 }
251
252 switch (op.get_type()) {
254 return true;
256 return op.is_streaming();
257 default:
258 return false;
259 }
260}
@ 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: