Searched refs:fromSampleRate (Results 1 – 1 of 1) sorted by relevance
2994 function Resampler(fromSampleRate, toSampleRate, channels, outputBufferSize, noReturn) { argument2995 this.fromSampleRate = fromSampleRate;3005 if (this.fromSampleRate > 0 && this.toSampleRate > 0 && this.channels > 0) {3006 if (this.fromSampleRate == this.toSampleRate) {3012 if (this.fromSampleRate < this.toSampleRate) {3031 this.ratioWeight = this.fromSampleRate / this.toSampleRate;