| 82 | {"sourceBus", "SBUS", SettingType::Bus}, nullptr}; |
| 83 | |
| 84 | AudioNodeDescriptor * SampledAudioNode::desc() |
| 85 | { |
| 86 | static AudioNodeDescriptor d = {s_saParams, s_saSettings}; |
| 87 | return &d; |
| 88 | } |
| 89 | |
| 90 | SampledAudioNode::SampledAudioNode(AudioContext& ac) |
| 91 | : AudioScheduledSourceNode(ac, *desc()) |
nothing calls this directly
no outgoing calls
no test coverage detected