audio/internal/convert: Remove unused functions

This commit is contained in:
Hajime Hoshi 2018-01-09 00:26:54 +09:00
parent e83810fc57
commit ef282f7f4f

View File

@ -53,13 +53,6 @@ func newSoundBytes(sampleRate int) []byte {
return b
}
func abs(x int) int {
if x < 0 {
return -x
}
return x
}
func TestResampling(t *testing.T) {
cases := []struct {
In int