forked from zikichombo/sound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsink.go
43 lines (34 loc) · 957 Bytes
/
sink.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright 2018 The ZikiChombo Authors. All rights reserved. Use of this source
// code is governed by a license that can be found in the License file.
package sound
import "zikichombo.org/sound/freq"
// Sink is an interface for a destination of samples.
type Sink interface {
Form
Closer
// Send sends all the samples in d, returning a non-nil
// error if it does not succeed.
//
// len(d) must be a multiple of the number of channels
// associated with the Sink, or Send will return a
// ErrChannelAlignment.
//
// In case the Sink is multi-channel, d is interpreted in
// channel-deinterleaved format.
Send(d []float64) error
}
// Discard does nothing when samples are sent to it.
var Discard Sink = &discard{}
type discard struct{}
func (*discard) Send(d []float64) error {
return nil
}
func (*discard) Close() error {
return nil
}
func (*discard) SampleRate() freq.T {
return 0
}
func (*discard) Channels() int {
return 1
}