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 417 of file VideoStreamContainer.cpp.

418{
419 thread_local std::vector<uint64_t> pos(1);
420 pos[0] = m_read_position.load();
421 return pos;
422}

References m_read_position.