(config)
| 65 | }; |
| 66 | |
| 67 | function init(config) { |
| 68 | sampleRate = config.sampleRate; |
| 69 | numChannels = config.numChannels; |
| 70 | initBuffers(); |
| 71 | } |
| 72 | |
| 73 | function record(inputBuffer) { |
| 74 | for (var channel = 0; channel < numChannels; channel++) { |
nothing calls this directly
no test coverage detected