(sampleRate int, channelCount int, mux *mux.Mux)
| 129 | } |
| 130 | |
| 131 | func newNullContext(sampleRate int, channelCount int, mux *mux.Mux) *nullContext { |
| 132 | c := &nullContext{} |
| 133 | go c.loop(sampleRate, channelCount, mux) |
| 134 | return c |
| 135 | } |
| 136 | |
| 137 | func (c *nullContext) loop(sampleRate int, channelCount int, mux *mux.Mux) { |
| 138 | var buf32 [4096]float32 |
no test coverage detected
searching dependent graphs…