2019-05-10 10:52:14 +03:00
|
|
|
package mts
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"math/rand"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"bitbucket.org/ausocean/av/container/mts/pes"
|
|
|
|
"bitbucket.org/ausocean/av/container/mts/psi"
|
|
|
|
)
|
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
// TestGetPTSRange checks that GetPTSRange can correctly get the first and last
|
|
|
|
// PTS in an MPEGTS clip.
|
2019-05-10 10:52:14 +03:00
|
|
|
func TestGetPTSRange(t *testing.T) {
|
|
|
|
const (
|
2019-05-10 11:08:22 +03:00
|
|
|
numOfFrames = 20
|
|
|
|
maxFrameSize = 1000
|
|
|
|
minFrameSize = 100
|
|
|
|
rate = 25 // fps
|
|
|
|
interval = float64(1) / rate // s
|
|
|
|
ptsFreq = 90000 // Hz
|
2019-05-10 10:52:14 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// Generate randomly sized data for each frame.
|
|
|
|
rand.Seed(time.Now().UnixNano())
|
|
|
|
frames := make([][]byte, numOfFrames)
|
|
|
|
for i := range frames {
|
2019-05-10 11:08:22 +03:00
|
|
|
size := rand.Intn(maxFrameSize-minFrameSize) + minFrameSize
|
2019-05-10 10:52:14 +03:00
|
|
|
frames[i] = make([]byte, size)
|
|
|
|
}
|
|
|
|
|
|
|
|
var clip bytes.Buffer
|
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
// Write the PSI first.
|
2019-05-10 11:17:48 +03:00
|
|
|
err := writePSI(&clip)
|
2019-05-10 11:08:22 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("did not expect error writing psi: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now write frames.
|
|
|
|
var curTime float64
|
|
|
|
for _, frame := range frames {
|
|
|
|
nextPTS := curTime * ptsFreq
|
|
|
|
|
2019-05-10 11:17:48 +03:00
|
|
|
err = writeFrame(&clip, frame, uint64(nextPTS))
|
2019-05-10 11:08:22 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("did not expect error writing frame: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
curTime += interval
|
|
|
|
}
|
|
|
|
|
|
|
|
got, err := GetPTSRange(clip.Bytes())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("did not expect error getting PTS range: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
want := [2]uint64{0, uint64((numOfFrames - 1) * interval * ptsFreq)}
|
|
|
|
if got != want {
|
|
|
|
t.Errorf("did not get expected result.\n Got: %v\n Want: %v\n", got, want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// writePSI is a helper function write the PSI found at the start of a clip.
|
2019-05-10 11:17:48 +03:00
|
|
|
func writePSI(b *bytes.Buffer) error {
|
2019-05-10 11:08:22 +03:00
|
|
|
// Write PAT.
|
2019-05-10 10:52:14 +03:00
|
|
|
pat := Packet{
|
|
|
|
PUSI: true,
|
|
|
|
PID: PatPid,
|
|
|
|
CC: 0,
|
|
|
|
AFC: HasPayload,
|
|
|
|
Payload: psi.AddPadding(patTable),
|
|
|
|
}
|
2019-05-10 11:08:22 +03:00
|
|
|
_, err := b.Write(pat.Bytes(nil))
|
2019-05-10 10:52:14 +03:00
|
|
|
if err != nil {
|
2019-05-10 11:08:22 +03:00
|
|
|
return err
|
2019-05-10 10:52:14 +03:00
|
|
|
}
|
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
// Write PMT.
|
2019-05-10 10:52:14 +03:00
|
|
|
pmt := Packet{
|
|
|
|
PUSI: true,
|
|
|
|
PID: PmtPid,
|
|
|
|
CC: 0,
|
|
|
|
AFC: HasPayload,
|
|
|
|
Payload: psi.AddPadding(pmtTable),
|
|
|
|
}
|
2019-05-10 11:08:22 +03:00
|
|
|
_, err = b.Write(pmt.Bytes(nil))
|
2019-05-10 10:52:14 +03:00
|
|
|
if err != nil {
|
2019-05-10 11:08:22 +03:00
|
|
|
return err
|
2019-05-10 10:52:14 +03:00
|
|
|
}
|
2019-05-10 11:08:22 +03:00
|
|
|
return nil
|
|
|
|
}
|
2019-05-10 10:52:14 +03:00
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
// writeFrame is a helper function used to form a PES packet from a frame, and
|
|
|
|
// then fragment this across MPEGTS packets where they are then written to the
|
|
|
|
// given buffer.
|
2019-05-10 11:17:48 +03:00
|
|
|
func writeFrame(b *bytes.Buffer, frame []byte, pts uint64) error {
|
2019-05-10 11:08:22 +03:00
|
|
|
// Prepare PES data.
|
|
|
|
pesPkt := pes.Packet{
|
|
|
|
StreamID: videoStreamID,
|
|
|
|
PDI: hasPTS,
|
|
|
|
PTS: pts,
|
|
|
|
Data: frame,
|
|
|
|
HeaderLength: 5,
|
2019-05-10 10:52:14 +03:00
|
|
|
}
|
2019-05-10 11:08:22 +03:00
|
|
|
buf := pesPkt.Bytes(nil)
|
2019-05-10 10:52:14 +03:00
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
// Write PES data acroos MPEGTS packets.
|
|
|
|
pusi := true
|
|
|
|
for len(buf) != 0 {
|
|
|
|
pkt := Packet{
|
|
|
|
PUSI: pusi,
|
|
|
|
PID: videoPid,
|
|
|
|
RAI: pusi,
|
|
|
|
CC: 0,
|
|
|
|
AFC: hasAdaptationField | hasPayload,
|
|
|
|
PCRF: pusi,
|
|
|
|
}
|
|
|
|
n := pkt.FillPayload(buf)
|
|
|
|
buf = buf[n:]
|
2019-05-10 10:52:14 +03:00
|
|
|
|
2019-05-10 11:08:22 +03:00
|
|
|
pusi = false
|
|
|
|
_, err := b.Write(pkt.Bytes(nil))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-05-10 10:52:14 +03:00
|
|
|
}
|
2019-05-10 11:08:22 +03:00
|
|
|
return nil
|
2019-05-10 10:52:14 +03:00
|
|
|
}
|