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

◆ get_read_position()

const std::vector< uint64_t > & MayaFlux::Kakshya::VideoStreamContainer::get_read_position ( ) const
overridevirtual

Get the current read position.

Returns
Current position in the temporal dimension per channel

Allows external components to query or synchronize playback/processing state.

Implements MayaFlux::Kakshya::StreamContainer.

Definition at line 382 of file VideoStreamContainer.cpp.

383{
384 thread_local std::vector<uint64_t> pos(1);
385 pos[0] = m_read_position.load();
386 return pos;
387}

References m_read_position.