We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c9f4fe commit 2aa8bb0Copy full SHA for 2aa8bb0
src/AudioTools/CoreAudio/AudioIO.h
@@ -205,9 +205,13 @@ class ReformatBaseStream : public ModifyingStream {
205
reader.end();
206
}
207
208
+ /// Define the size of the interal read result queue: same as transformationReader().resizeResultQueue(size)
209
+ void resizeReadResultQueue(int size) { reader.resizeResultQueue(size);}
210
+
211
/// Provides access to the TransformationReader
212
virtual TransformationReader<ReformatBaseStream> &transformationReader() {return reader;}
213
214
215
protected:
216
TransformationReader<ReformatBaseStream> reader;
217
Stream *p_stream = nullptr;
0 commit comments