| 18 | |
| 19 | static AudioParamDescriptor s_gainParams[] = {{"gain", "GAIN", 1.0, 0.0, 10000.0}, nullptr}; |
| 20 | AudioNodeDescriptor * GainNode::desc() |
| 21 | { |
| 22 | static AudioNodeDescriptor d {s_gainParams, nullptr}; |
| 23 | return &d; |
| 24 | } |
| 25 | |
| 26 | GainNode::GainNode(AudioContext& ac) |
| 27 | : AudioNode(ac, *desc()) |
nothing calls this directly
no outgoing calls
no test coverage detected