change SampleRate to float64
This commit is contained in:
parent
42737212d8
commit
7f2b8b6fe9
|
@ -4,7 +4,7 @@ package audio
|
||||||
//
|
//
|
||||||
// This value should be set at most once before using audio package. It is safe to assume that this
|
// This value should be set at most once before using audio package. It is safe to assume that this
|
||||||
// value does not change during runtime.
|
// value does not change during runtime.
|
||||||
var SampleRate = 48000
|
var SampleRate float64 = 48000
|
||||||
|
|
||||||
// Streamer is able to stream a finite or infinite sequence of audio samples.
|
// Streamer is able to stream a finite or infinite sequence of audio samples.
|
||||||
type Streamer interface {
|
type Streamer interface {
|
||||||
|
|
Loading…
Reference in New Issue