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

◆ peek_sequential()

uint64_t MayaFlux::Kakshya::VideoStreamContainer::peek_sequential ( std::span< double >  output,
uint64_t  count,
uint64_t  offset 
) const
overridevirtual

Peek at data without advancing the read position.

Parameters
outputBuffer to write data into
countNumber of elements to peek
offsetOffset from current position in primary dimension
Returns
Actual number of elements read

Enables lookahead, preview, or non-destructive inspection of stream data.

Implements MayaFlux::Kakshya::StreamContainer.

Definition at line 452 of file VideoStreamContainer.cpp.

453{
454 std::ranges::fill(output, 0.0);
455 return 0;
456}