MayaFlux 0.2.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 202 of file ContiguousAccessProcessor.cpp.

203{
204 m_output_shape = shape;
205 if (auto container = m_source_container_weak.lock()) {
206 store_metadata(container);
207 validate();
208 }
209}
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: