2019-02-13 04:23:06 +03:00
|
|
|
/*
|
|
|
|
NAME
|
|
|
|
adpcm_test.go
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
See Readme.md
|
|
|
|
|
|
|
|
AUTHOR
|
|
|
|
Trek Hopton <trek@ausocean.org>
|
|
|
|
|
|
|
|
LICENSE
|
|
|
|
adpcm_test.go is Copyright (C) 2018 the Australian Ocean Lab (AusOcean)
|
|
|
|
|
|
|
|
It is free software: you can redistribute it and/or modify them
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with revid in gpl.txt. If not, see [GNU licenses](http://www.gnu.org/licenses).
|
|
|
|
*/
|
|
|
|
|
2019-02-11 07:55:10 +03:00
|
|
|
package adpcm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"io/ioutil"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2019-02-12 07:19:16 +03:00
|
|
|
// TestEncodeBlock will read PCM data, encode it in blocks and generate ADPCM
|
|
|
|
// then compare the result with expected ADPCM.
|
2019-02-11 07:55:10 +03:00
|
|
|
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)
|
|
|
|
}
|
2019-02-13 04:23:06 +03:00
|
|
|
|
2019-02-11 07:55:10 +03:00
|
|
|
//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 {
|
|
|
|
t.Errorf("Unable to encode block: %v", err)
|
|
|
|
}
|
|
|
|
comp = append(comp, encBlock...)
|
|
|
|
start = i + 1
|
|
|
|
}
|
|
|
|
}
|
2019-02-13 04:23:06 +03:00
|
|
|
|
2019-02-11 07:55:10 +03:00
|
|
|
//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")
|
|
|
|
}
|
|
|
|
}
|
2019-02-12 07:19:16 +03:00
|
|
|
|
|
|
|
// TestDecodeBlock will read encoded ADPCM, decode it in blocks and then compare the
|
|
|
|
// resulting PCM with the expected decoded PCM.
|
|
|
|
func TestDecodeBlock(t *testing.T) {
|
|
|
|
//read adpcm
|
|
|
|
comp, err := ioutil.ReadFile("../../../test/test-data/av/input/encoded-voice.adpcm")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to read input ADPCM file: %v", err)
|
|
|
|
}
|
2019-02-13 04:23:06 +03:00
|
|
|
|
2019-02-12 07:19:16 +03:00
|
|
|
//decode adpcm
|
|
|
|
var decoded []byte
|
|
|
|
start := 0
|
|
|
|
for i := 0; i < len(comp); i++ {
|
|
|
|
if i%256 == 255 {
|
|
|
|
block := comp[start : i+1]
|
|
|
|
decBlock, err := DecodeBlock(block)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to decode block: %v", err)
|
|
|
|
}
|
|
|
|
decoded = append(decoded, decBlock...)
|
|
|
|
start = i + 1
|
|
|
|
}
|
|
|
|
}
|
2019-02-13 04:23:06 +03:00
|
|
|
|
2019-02-12 07:19:16 +03:00
|
|
|
//read expected pcm file
|
|
|
|
exp, err := ioutil.ReadFile("../../../test/test-data/av/output/decoded-voice.pcm")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to read expected PCM file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !bytes.Equal(decoded, exp) {
|
|
|
|
t.Error("PCM generated does not match expected PCM")
|
|
|
|
}
|
|
|
|
}
|