MayaFlux 0.1.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 178 of file ContiguousAccessProcessor.cpp.

179{
180 m_output_shape = shape;
181 if (auto container = m_source_container_weak.lock()) {
182 store_metadata(container);
183 validate();
184 }
185}
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: