opus-go/internal/bitdepth/errors.go
Sean DuBois 733188ab17 Implement bitdepth conversion and upsampling
bitdepth package takes F32LE -> S16LE and handles upsampling
from 16Khz -> 48Khz
2022-09-30 21:56:49 -06:00

8 lines
126 B
Go

package bitdepth
import "errors"
var (
errBufferLengthMismatch = errors.New("length of in and out buffer are not equal")
)