Files
mediadevices/pkg/wave/int64.go
Atsushi Watanabe 0d1e856f7d codec/opus: support int16 interleaved format
Implement audio.Buffer and audio.ChannelMixer.
2020-06-08 20:43:12 -04:00

9 lines
149 B
Go

package wave
// Int64Sample is a 64-bits signed integer audio sample.
type Int64Sample int64
func (s Int64Sample) Int() int64 {
return int64(s)
}