Audacity 3.2.0
|
#include <MockAudioSegmentFactory.h>
Public Member Functions | |
size_t | GetFloats (float *const *, size_t numSamples) override |
Fills buffers with as many as numSamples or the number of remaining samples, whichever is smaller. More... | |
size_t | NChannels () const override |
The number of channels in the segment. More... | |
bool | Empty () const override |
Whether the segment has no more samples to provide. More... | |
Public Member Functions inherited from AudioSegment | |
virtual | ~AudioSegment () |
virtual size_t | GetFloats (float *const *buffers, size_t numSamples)=0 |
Fills buffers with as many as numSamples or the number of remaining samples, whichever is smaller. More... | |
virtual size_t | NChannels () const =0 |
The number of channels in the segment. More... | |
virtual bool | Empty () const =0 |
Whether the segment has no more samples to provide. More... | |
Audacity: A Digital Audio Editor
Matthieu Hodgkinson
Definition at line 16 of file MockAudioSegmentFactory.h.
|
inlineoverridevirtual |
Whether the segment has no more samples to provide.
Implements AudioSegment.
Definition at line 29 of file MockAudioSegmentFactory.h.
|
inlineoverridevirtual |
Fills buffers
with as many as numSamples
or the number of remaining samples, whichever is smaller.
buffers | Pointers to buffers, one for each channel. |
numSamples | The max. number of samples to write to each buffer. |
Implements AudioSegment.
Definition at line 19 of file MockAudioSegmentFactory.h.
|
inlineoverridevirtual |
The number of channels in the segment.
Implements AudioSegment.
Definition at line 24 of file MockAudioSegmentFactory.h.