mirror of
https://github.com/pion/mediadevices.git
synced 2025-09-27 12:52:20 +08:00
9 lines
149 B
Go
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)
|
|
}
|