opus-go/bandtype.go
2022-06-02 19:14:23 -04:00

13 lines
161 B
Go

package main
//TODO right name?
type bandType int
const (
narrowBandType bandType = iota + 1
mediumBandType
wideBandType
superWideBandType
fullBandType
)