| 106 | const int end_envelope = 64; |
| 107 | |
| 108 | AudioNodeScheduler::AudioNodeScheduler(float sampleRate) |
| 109 | : _epoch(0) |
| 110 | , _startWhen(std::numeric_limits<uint64_t>::max()) |
| 111 | , _stopWhen(std::numeric_limits<uint64_t>::max()) |
| 112 | , _sampleRate(sampleRate) |
| 113 | { |
| 114 | } |
| 115 | |
| 116 | bool AudioNodeScheduler::update(ContextRenderLock & r, int epoch_length) |
| 117 | { |
nothing calls this directly
no outgoing calls
no test coverage detected