mirror of https://bitbucket.org/ausocean/av.git
43 lines
898 B
Go
43 lines
898 B
Go
|
package adpcm
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"io/ioutil"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestEncodeBlock(t *testing.T) {
|
||
|
//read input pcm
|
||
|
pcm, err := ioutil.ReadFile("../../../test/test-data/av/input/raw-voice.pcm")
|
||
|
if err != nil {
|
||
|
t.Errorf("Unable to read input PCM file: %v", err)
|
||
|
}
|
||
|
|
||
|
//encode adpcm
|
||
|
var comp []byte
|
||
|
start := 0
|
||
|
for i := 0; i < len(pcm); i++ {
|
||
|
if i%1010 == 1009 {
|
||
|
block := pcm[start : i+1]
|
||
|
|
||
|
encBlock, err := EncodeBlock(block)
|
||
|
if err != nil {
|
||
|
//todo: use correct logging of error
|
||
|
t.Errorf("Unable to encode block: %v", err)
|
||
|
}
|
||
|
comp = append(comp, encBlock...)
|
||
|
start = i + 1
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//read expected adpcm file
|
||
|
exp, err := ioutil.ReadFile("../../../test/test-data/av/output/encoded-voice.adpcm")
|
||
|
if err != nil {
|
||
|
t.Errorf("Unable to read expected ADPCM file: %v", err)
|
||
|
}
|
||
|
|
||
|
if !bytes.Equal(comp, exp) {
|
||
|
t.Error("ADPCM generated does not match expected ADPCM")
|
||
|
}
|
||
|
}
|