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

◆ read_frames()

uint64_t MayaFlux::Kakshya::DynamicSoundStream::read_frames ( std::span< double >  output,
uint64_t  count 
)
inline

Read audio frames using sequential reading with automatic position management.

Parameters
outputSpan to fill with interleaved audio data
countMaximum number of frames to read
Returns
Number of frames actually read (may be less than requested)

Definition at line 73 of file DynamicSoundStream.hpp.

74 {
75 return read_sequential(output, count);
76 }
uint64_t read_sequential(std::span< double > output, uint64_t count) override
Read data sequentially from the current position.