MCPcopy Create free account
hub / github.com/audacity/audacity / readSubSamples

Method readSubSamples

lib-src/libsbsms/src/subband.cpp:752–763  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

750}
751
752void SubBand :: readSubSamples()
753{
754 if(sub) sub->readSubSamples();
755 if(sub) {
756 audio fromSub[subBufSize];
757 long nFromSub = 0;
758 do {
759 nFromSub = sub->outMixer->read(fromSub,subBufSize);
760 samplesSubOut->write(fromSub, nFromSub);
761 } while(nFromSub>0);
762 }
763}
764
765long SubBand :: read(audio *buf, long n)
766{

Callers

nothing calls this directly

Calls 2

readMethod · 0.45
writeMethod · 0.45

Tested by

no test coverage detected