2019-05-07 06:50:06 +03:00
|
|
|
/*
|
|
|
|
NAME
|
2019-05-07 14:52:57 +03:00
|
|
|
encoder_test.go
|
2019-05-07 06:50:06 +03:00
|
|
|
|
|
|
|
AUTHOR
|
2019-05-07 14:52:57 +03:00
|
|
|
Saxon A. Nelson-Milton <saxon@ausocean.org>
|
2019-09-24 01:12:26 +03:00
|
|
|
Trek Hopton <trek@ausocean.org>
|
2019-05-07 06:50:06 +03:00
|
|
|
|
|
|
|
LICENSE
|
2019-05-07 14:52:57 +03:00
|
|
|
encoder_test.go is Copyright (C) 2017-2019 the Australian Ocean Lab (AusOcean)
|
2019-05-07 06:50:06 +03:00
|
|
|
|
|
|
|
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
|
2019-05-07 14:52:57 +03:00
|
|
|
for more details.
|
2019-05-07 06:50:06 +03:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License in gpl.txt.
|
|
|
|
If not, see http://www.gnu.org/licenses.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package mts
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2019-06-14 19:43:49 +03:00
|
|
|
"reflect"
|
2019-05-07 06:50:06 +03:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/Comcast/gots/packet"
|
|
|
|
"github.com/Comcast/gots/pes"
|
|
|
|
|
|
|
|
"bitbucket.org/ausocean/av/container/mts/meta"
|
2019-06-14 19:43:49 +03:00
|
|
|
"bitbucket.org/ausocean/av/container/mts/psi"
|
2019-05-07 06:50:06 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type nopCloser struct{ io.Writer }
|
|
|
|
|
|
|
|
func (nopCloser) Close() error { return nil }
|
|
|
|
|
2019-05-07 14:52:57 +03:00
|
|
|
type destination struct {
|
|
|
|
packets [][]byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *destination) Write(p []byte) (int, error) {
|
|
|
|
tmp := make([]byte, PacketSize)
|
|
|
|
copy(tmp, p)
|
|
|
|
d.packets = append(d.packets, tmp)
|
|
|
|
return len(p), nil
|
|
|
|
}
|
|
|
|
|
2019-05-07 17:19:28 +03:00
|
|
|
// TestEncodeVideo checks that we can correctly encode some dummy data into a
|
2019-05-11 14:44:28 +03:00
|
|
|
// valid MPEG-TS stream. This checks for correct MPEG-TS headers and also that the
|
2019-05-07 17:19:28 +03:00
|
|
|
// original data is stored correctly and is retreivable.
|
2019-05-07 14:52:57 +03:00
|
|
|
func TestEncodeVideo(t *testing.T) {
|
|
|
|
Meta = meta.New()
|
|
|
|
|
|
|
|
const dataLength = 440
|
|
|
|
const numOfPackets = 3
|
2019-05-07 17:19:28 +03:00
|
|
|
const stuffingLen = 100
|
2019-05-07 14:52:57 +03:00
|
|
|
|
|
|
|
// Generate test data.
|
|
|
|
data := make([]byte, 0, dataLength)
|
|
|
|
for i := 0; i < dataLength; i++ {
|
|
|
|
data = append(data, byte(i))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expect headers for PID 256 (video)
|
2019-05-07 17:27:48 +03:00
|
|
|
// NB: timing fields like PCR are neglected.
|
2019-05-07 14:52:57 +03:00
|
|
|
expectedHeaders := [][]byte{
|
|
|
|
{
|
|
|
|
0x47, // Sync byte.
|
|
|
|
0x41, // TEI=0, PUSI=1, TP=0, PID=00001 (256).
|
|
|
|
0x00, // PID(Cont)=00000000.
|
|
|
|
0x30, // TSC=00, AFC=11(adaptation followed by payload), CC=0000(0).
|
|
|
|
0x07, // AFL= 7.
|
|
|
|
0x50, // DI=0,RAI=1,ESPI=0,PCRF=1,OPCRF=0,SPF=0,TPDF=0, AFEF=0.
|
|
|
|
},
|
|
|
|
{
|
|
|
|
0x47, // Sync byte.
|
|
|
|
0x01, // TEI=0, PUSI=0, TP=0, PID=00001 (256).
|
|
|
|
0x00, // PID(Cont)=00000000.
|
2019-05-07 17:19:28 +03:00
|
|
|
0x31, // TSC=00, AFC=11(adaptation followed by payload), CC=0001(1).
|
|
|
|
0x01, // AFL= 1.
|
|
|
|
0x00, // DI=0,RAI=0,ESPI=0,PCRF=0,OPCRF=0,SPF=0,TPDF=0, AFEF=0.
|
2019-05-07 14:52:57 +03:00
|
|
|
},
|
|
|
|
{
|
2019-05-07 17:19:28 +03:00
|
|
|
0x47, // Sync byte.
|
|
|
|
0x01, // TEI=0, PUSI=0, TP=0, PID=00001 (256).
|
|
|
|
0x00, // PID(Cont)=00000000.
|
|
|
|
0x32, // TSC=00, AFC=11(adaptation followed by payload), CC=0010(2).
|
|
|
|
0x57, // AFL= 1+stuffingLen.
|
|
|
|
0x00, // DI=0,RAI=0,ESPI=0,PCRF=1,OPCRF=0,SPF=0,TPDF=0, AFEF=0.
|
2019-05-07 14:52:57 +03:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-05-07 17:33:44 +03:00
|
|
|
// Create the dst and write the test data to encoder.
|
2019-05-07 14:52:57 +03:00
|
|
|
dst := &destination{}
|
2019-09-24 01:12:26 +03:00
|
|
|
e, err := NewEncoder(nopCloser{dst}, 25, EncodeH264, PacketBasedPSI(psiSendCount))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("could not create MTS encoder, failed with error: %v", err)
|
|
|
|
}
|
2019-09-11 03:27:34 +03:00
|
|
|
|
2019-09-24 01:12:26 +03:00
|
|
|
_, err = e.Write(data)
|
2019-05-07 14:52:57 +03:00
|
|
|
if err != nil {
|
2019-09-24 01:12:26 +03:00
|
|
|
t.Fatalf("could not write data to encoder, failed with error: %v\n", err)
|
2019-05-07 14:52:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check headers.
|
|
|
|
var expectedIdx int
|
|
|
|
for _, p := range dst.packets {
|
|
|
|
// Get PID.
|
|
|
|
var _p packet.Packet
|
|
|
|
copy(_p[:], p)
|
|
|
|
pid := packet.Pid(&_p)
|
|
|
|
if pid == VideoPid {
|
|
|
|
// Get mts header, excluding PCR.
|
|
|
|
gotHeader := p[0:6]
|
|
|
|
wantHeader := expectedHeaders[expectedIdx]
|
|
|
|
if !bytes.Equal(gotHeader, wantHeader) {
|
2019-05-07 17:19:28 +03:00
|
|
|
t.Errorf("did not get expected header for idx: %v.\n Got: %v\n Want: %v\n", expectedIdx, gotHeader, wantHeader)
|
2019-05-07 14:52:57 +03:00
|
|
|
}
|
|
|
|
expectedIdx++
|
|
|
|
}
|
|
|
|
}
|
2019-05-07 17:19:28 +03:00
|
|
|
|
|
|
|
// Gather payload data from packets to form the total PES packet.
|
|
|
|
var pesData []byte
|
|
|
|
for _, p := range dst.packets {
|
|
|
|
var _p packet.Packet
|
|
|
|
copy(_p[:], p)
|
|
|
|
pid := packet.Pid(&_p)
|
|
|
|
if pid == VideoPid {
|
|
|
|
payload, err := packet.Payload(&_p)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("could not get payload from mts packet, failed with err: %v\n", err)
|
|
|
|
}
|
|
|
|
pesData = append(pesData, payload...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get data from the PES packet and compare with the original data.
|
|
|
|
pes, err := pes.NewPESHeader(pesData)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("got error from pes creation: %v\n", err)
|
|
|
|
}
|
|
|
|
_data := pes.Data()
|
|
|
|
if !bytes.Equal(data, _data) {
|
|
|
|
t.Errorf("did not get expected result.\n Got: %v\n Want: %v\n", data, _data)
|
|
|
|
}
|
2019-05-07 14:52:57 +03:00
|
|
|
}
|
|
|
|
|
2019-05-11 14:44:28 +03:00
|
|
|
// TestEncodePcm tests the MPEG-TS encoder's ability to encode pcm audio data.
|
|
|
|
// It reads and encodes input pcm data into MPEG-TS, then decodes the MPEG-TS and compares the result to the input pcm.
|
2019-05-07 06:50:06 +03:00
|
|
|
func TestEncodePcm(t *testing.T) {
|
|
|
|
Meta = meta.New()
|
|
|
|
|
|
|
|
var buf bytes.Buffer
|
|
|
|
sampleRate := 48000
|
|
|
|
sampleSize := 2
|
|
|
|
blockSize := 16000
|
|
|
|
writeFreq := float64(sampleRate*sampleSize) / float64(blockSize)
|
2019-09-24 01:12:26 +03:00
|
|
|
e, err := NewEncoder(nopCloser{&buf}, writeFreq, EncodeAudio)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("could not create MTS encoder, failed with error: %v", err)
|
|
|
|
}
|
2019-05-07 06:50:06 +03:00
|
|
|
|
|
|
|
inPath := "../../../test/test-data/av/input/sweep_400Hz_20000Hz_-3dBFS_5s_48khz.pcm"
|
|
|
|
inPcm, err := ioutil.ReadFile(inPath)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unable to read file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Break pcm into blocks and encode to mts and get the resulting bytes.
|
|
|
|
for i := 0; i < len(inPcm); i += blockSize {
|
|
|
|
if len(inPcm)-i < blockSize {
|
|
|
|
block := inPcm[i:]
|
|
|
|
_, err = e.Write(block)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unable to write block: %v", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
block := inPcm[i : i+blockSize]
|
|
|
|
_, err = e.Write(block)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unable to write block: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
clip := buf.Bytes()
|
|
|
|
|
|
|
|
// Get the first MTS packet to check
|
|
|
|
var pkt packet.Packet
|
|
|
|
pesPacket := make([]byte, 0, blockSize)
|
|
|
|
got := make([]byte, 0, len(inPcm))
|
|
|
|
i := 0
|
|
|
|
if i+PacketSize <= len(clip) {
|
|
|
|
copy(pkt[:], clip[i:i+PacketSize])
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop through MTS packets until all the audio data from PES packets has been retrieved
|
|
|
|
for i+PacketSize <= len(clip) {
|
|
|
|
|
|
|
|
// Check MTS packet
|
2019-06-20 11:34:58 +03:00
|
|
|
if pkt.PID() != AudioPid {
|
2019-05-07 06:50:06 +03:00
|
|
|
i += PacketSize
|
|
|
|
if i+PacketSize <= len(clip) {
|
|
|
|
copy(pkt[:], clip[i:i+PacketSize])
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !pkt.PayloadUnitStartIndicator() {
|
|
|
|
i += PacketSize
|
|
|
|
if i+PacketSize <= len(clip) {
|
|
|
|
copy(pkt[:], clip[i:i+PacketSize])
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Copy the first MTS payload
|
|
|
|
payload, err := pkt.Payload()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unable to get MTS payload: %v", err)
|
|
|
|
}
|
|
|
|
pesPacket = append(pesPacket, payload...)
|
|
|
|
|
|
|
|
i += PacketSize
|
|
|
|
if i+PacketSize <= len(clip) {
|
|
|
|
copy(pkt[:], clip[i:i+PacketSize])
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the rest of the MTS payloads that are part of the same PES packet
|
|
|
|
for (!pkt.PayloadUnitStartIndicator()) && i+PacketSize <= len(clip) {
|
|
|
|
payload, err = pkt.Payload()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unable to get MTS payload: %v", err)
|
|
|
|
}
|
|
|
|
pesPacket = append(pesPacket, payload...)
|
|
|
|
|
|
|
|
i += PacketSize
|
|
|
|
if i+PacketSize <= len(clip) {
|
|
|
|
copy(pkt[:], clip[i:i+PacketSize])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Get the audio data from the current PES packet
|
|
|
|
pesHeader, err := pes.NewPESHeader(pesPacket)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unable to read PES packet: %v", err)
|
|
|
|
}
|
|
|
|
got = append(got, pesHeader.Data()...)
|
|
|
|
pesPacket = pesPacket[:0]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compare data from MTS with original data.
|
|
|
|
if !bytes.Equal(got, inPcm) {
|
|
|
|
t.Error("data decoded from mts did not match input data")
|
|
|
|
}
|
|
|
|
}
|
2019-06-14 19:43:49 +03:00
|
|
|
|
|
|
|
const fps = 25
|
|
|
|
|
|
|
|
// TestMetaEncode1 checks that we can externally add a single metadata entry to
|
|
|
|
// the mts global Meta meta.Data struct and then successfully have the mts encoder
|
|
|
|
// write this to psi.
|
|
|
|
func TestMetaEncode1(t *testing.T) {
|
|
|
|
Meta = meta.New()
|
|
|
|
var buf bytes.Buffer
|
2019-09-24 01:12:26 +03:00
|
|
|
e, err := NewEncoder(nopCloser{&buf}, fps, EncodeH264)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("could not create encoder, failed with error: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-06-14 19:43:49 +03:00
|
|
|
Meta.Add("ts", "12345678")
|
|
|
|
if err := e.writePSI(); err != nil {
|
2019-07-04 08:01:49 +03:00
|
|
|
t.Errorf("unexpected error: %v\n", err.Error())
|
2019-06-14 19:43:49 +03:00
|
|
|
}
|
|
|
|
out := buf.Bytes()
|
|
|
|
got := out[PacketSize+4:]
|
|
|
|
|
|
|
|
want := []byte{
|
|
|
|
0x00, 0x02, 0xb0, 0x23, 0x00, 0x01, 0xc1, 0x00, 0x00, 0xe1, 0x00, 0xf0, 0x11,
|
|
|
|
psi.MetadataTag, // Descriptor tag
|
|
|
|
0x0f, // Length of bytes to follow
|
|
|
|
0x00, 0x10, 0x00, 0x0b, 't', 's', '=', '1', '2', '3', '4', '5', '6', '7', '8', // timestamp
|
|
|
|
0x1b, 0xe1, 0x00, 0xf0, 0x00,
|
|
|
|
}
|
|
|
|
want = psi.AddCrc(want)
|
|
|
|
want = psi.AddPadding(want)
|
|
|
|
if !bytes.Equal(got, want) {
|
2019-07-04 08:01:49 +03:00
|
|
|
t.Errorf("unexpected output. \n Got : %v\n, Want: %v\n", got, want)
|
2019-06-14 19:43:49 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestMetaEncode2 checks that we can externally add two metadata entries to the
|
|
|
|
// Meta meta.Data global and then have the mts encoder successfully encode this
|
|
|
|
// into psi.
|
|
|
|
func TestMetaEncode2(t *testing.T) {
|
|
|
|
Meta = meta.New()
|
|
|
|
var buf bytes.Buffer
|
2019-09-24 01:12:26 +03:00
|
|
|
e, err := NewEncoder(nopCloser{&buf}, fps, EncodeH264)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("could not create MTS encoder, failed with error: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-06-14 19:43:49 +03:00
|
|
|
Meta.Add("ts", "12345678")
|
|
|
|
Meta.Add("loc", "1234,4321,1234")
|
|
|
|
if err := e.writePSI(); err != nil {
|
2019-07-04 08:01:49 +03:00
|
|
|
t.Errorf("did not expect error: %v from writePSI", err.Error())
|
2019-06-14 19:43:49 +03:00
|
|
|
}
|
|
|
|
out := buf.Bytes()
|
|
|
|
got := out[PacketSize+4:]
|
|
|
|
want := []byte{
|
|
|
|
0x00, 0x02, 0xb0, 0x36, 0x00, 0x01, 0xc1, 0x00, 0x00, 0xe1, 0x00, 0xf0, 0x24,
|
|
|
|
psi.MetadataTag, // Descriptor tag
|
|
|
|
0x22, // Length of bytes to follow
|
|
|
|
0x00, 0x10, 0x00, 0x1e, 't', 's', '=', '1', '2', '3', '4', '5', '6', '7', '8', '\t', // timestamp
|
|
|
|
'l', 'o', 'c', '=', '1', '2', '3', '4', ',', '4', '3', '2', '1', ',', '1', '2', '3', '4', // location
|
|
|
|
0x1b, 0xe1, 0x00, 0xf0, 0x00,
|
|
|
|
}
|
|
|
|
want = psi.AddCrc(want)
|
|
|
|
want = psi.AddPadding(want)
|
|
|
|
if !bytes.Equal(got, want) {
|
2019-07-04 08:01:49 +03:00
|
|
|
t.Errorf("did not get expected results.\ngot: %v\nwant: %v\n", got, want)
|
2019-06-14 19:43:49 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestExtractMeta checks that ExtractMeta can correclty get a map of metadata
|
|
|
|
// from the first PMT in a clip of MPEG-TS.
|
|
|
|
func TestExtractMeta(t *testing.T) {
|
|
|
|
Meta = meta.New()
|
|
|
|
var buf bytes.Buffer
|
2019-09-24 01:12:26 +03:00
|
|
|
e, err := NewEncoder(nopCloser{&buf}, fps, EncodeH264)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("could not create MTS encoder, failed with error: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-06-14 19:43:49 +03:00
|
|
|
Meta.Add("ts", "12345678")
|
|
|
|
Meta.Add("loc", "1234,4321,1234")
|
|
|
|
if err := e.writePSI(); err != nil {
|
2019-07-04 08:01:49 +03:00
|
|
|
t.Errorf("did not expect error: %v", err.Error())
|
2019-06-14 19:43:49 +03:00
|
|
|
}
|
|
|
|
out := buf.Bytes()
|
|
|
|
got, err := ExtractMeta(out)
|
|
|
|
if err != nil {
|
2019-07-04 08:01:49 +03:00
|
|
|
t.Errorf("did not expect error: %v", err.Error())
|
2019-06-14 19:43:49 +03:00
|
|
|
}
|
|
|
|
want := map[string]string{
|
|
|
|
"ts": "12345678",
|
|
|
|
"loc": "1234,4321,1234",
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(got, want) {
|
2019-07-04 08:01:49 +03:00
|
|
|
t.Errorf("did not get expected result.\ngot: %v\nwant: %v\n", got, want)
|
2019-06-14 19:43:49 +03:00
|
|
|
}
|
|
|
|
}
|