| 87 | } |
| 88 | |
| 89 | AnalyserNode::AnalyserNode(AudioContext & ac, int fftSize) |
| 90 | : AudioBasicInspectorNode(ac, *desc(), 1) |
| 91 | { |
| 92 | shared_construction(fftSize); |
| 93 | initialize(); |
| 94 | } |
| 95 | |
| 96 | AnalyserNode::AnalyserNode(AudioContext & ac) |
| 97 | : AudioBasicInspectorNode(ac, *desc(), 1) |
nothing calls this directly
no outgoing calls
no test coverage detected