MayaFlux 0.5.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 340 of file VideoStreamContainer.cpp.

341{
342 thread_local std::vector<uint64_t> pos(1);
343 pos[0] = m_read_position.load();
344 return pos;
345}

References m_read_position.