maxFlushFrames property
int
get
maxFlushFrames
Maximum number of frames a flush can emit for the current overlap setup.
Implementation
int get maxFlushFrames {
if (hop >= winLen) return 1;
return (winLen + hop - 1) ~/ hop;
}