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

◆ set_output_size()

void ContiguousAccessProcessor::set_output_size ( const std::vector< uint64_t > &  shape)

Set the output buffer size (shape) for each processing call.

Parameters
shapeVector specifying the size in each dimension.

Definition at line 200 of file ContiguousAccessProcessor.cpp.

201{
202 m_output_shape = shape;
203 if (auto container = m_source_container_weak.lock()) {
204 store_metadata(container);
205 validate();
206 }
207}
void validate()
Validate the container's structure and output configuration.
void store_metadata(const std::shared_ptr< SignalSourceContainer > &container)
Store dimension and layout metadata from the container.
std::weak_ptr< SignalSourceContainer > m_source_container_weak

References m_output_shape, m_source_container_weak, store_metadata(), and validate().

+ Here is the call graph for this function: