av/stream/mts/encoder.go

238 lines
4.7 KiB
Go
Raw Normal View History

/*
NAME
2018-08-19 14:09:57 +03:00
encoder.go
DESCRIPTION
See Readme.md
AUTHOR
Dan Kortschak <dan@ausocean.org>
2018-02-28 16:46:59 +03:00
Saxon Nelson-Milton <saxon@ausocean.org>
LICENSE
2018-08-19 14:09:57 +03:00
encoder.go is Copyright (C) 2017-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 http://www.gnu.org/licenses.
*/
package mts
import (
"io"
2018-08-18 06:51:50 +03:00
"time"
2018-08-20 01:19:02 +03:00
"bitbucket.org/ausocean/av/stream/mts/pes"
"bitbucket.org/ausocean/av/stream/mts/psi"
)
const (
psiSndCnt = 7
)
2018-04-17 08:20:23 +03:00
type MetaData struct {
time uint64
location string
}
var metaData = MetaData{time: 0, location: ""}
func SetTimeStamp(t uint64) {
metaData.time = t
}
func SetLocation(g string) {
metaData.location = g
}
var (
patTable = psi.StdPat.Bytes()
pmtTable = psi.StdPmtTimeLocation.Bytes()
)
2018-02-28 17:42:00 +03:00
2018-01-16 08:49:18 +03:00
const (
sdtPid = 17
patPid = 0
pmtPid = 4096
videoPid = 256
streamID = 0xe0 // First video stream ID.
)
// Time related constants.
const (
// ptsOffset is the offset added to the clock to determine
// the current presentation timestamp,
2018-08-18 06:51:50 +03:00
ptsOffset = 700 * time.Millisecond
// pcrFreq is the base Program Clock Reference frequency.
pcrFreq = 90000 // Hz
2018-01-16 08:49:18 +03:00
)
2018-08-19 14:09:57 +03:00
// Encoder encapsulates properties of an mpegts generator.
type Encoder struct {
dst io.Writer
2018-08-18 07:06:14 +03:00
clock time.Duration
frameInterval time.Duration
ptsOffset time.Duration
2018-12-27 05:55:51 +03:00
tsSpace [PktLen]byte
2018-12-27 06:06:38 +03:00
pesSpace [pes.MaxPesLen]byte
2018-08-18 07:06:14 +03:00
psiCount int
2018-08-18 07:06:14 +03:00
continuity map[int]byte
2017-12-13 09:52:18 +03:00
}
2018-08-19 14:09:57 +03:00
// NewEncoder returns an Encoder with the specified frame rate.
func NewEncoder(dst io.Writer, fps float64) *Encoder {
2018-08-19 14:09:57 +03:00
return &Encoder{
dst: dst,
2018-08-18 07:06:14 +03:00
frameInterval: time.Duration(float64(time.Second) / fps),
ptsOffset: ptsOffset,
continuity: map[int]byte{
2018-08-18 05:36:34 +03:00
patPid: 0,
pmtPid: 0,
videoPid: 0,
},
}
2018-01-08 04:12:26 +03:00
}
const (
hasPayload = 0x1
hasAdaptationField = 0x2
)
const (
hasDTS = 0x1
hasPTS = 0x2
)
2018-02-28 17:42:00 +03:00
// generate handles the incoming data and generates equivalent mpegts packets -
// sending them to the output channel
func (e *Encoder) Encode(nalu []byte) error {
// Prepare PES data.
pesPkt := pes.Packet{
StreamID: streamID,
PDI: hasPTS,
PTS: e.pts(),
Data: nalu,
HeaderLength: 5,
}
buf := pesPkt.Bytes(e.pesSpace[:pes.MaxPesLen])
pusi := true
for len(buf) != 0 {
pkt := Packet{
PUSI: pusi,
PID: videoPid,
RAI: pusi,
CC: e.ccFor(videoPid),
AFC: hasAdaptationField | hasPayload,
PCRF: pusi,
}
n := pkt.FillPayload(buf)
buf = buf[n:]
if pusi {
// If the packet has a Payload Unit Start Indicator
// flag set then we need to write a PCR.
pkt.PCR = e.pcr()
pusi = false
}
if e.psiCount <= 0 {
err := e.writePSI()
if err != nil {
return err
}
}
e.psiCount--
2018-12-27 05:55:51 +03:00
_, err := e.dst.Write(pkt.Bytes(e.tsSpace[:PktLen]))
if err != nil {
return err
}
}
e.tick()
return nil
2017-12-13 09:52:18 +03:00
}
2018-12-14 09:16:36 +03:00
// writePSI creates mpegts with pat and pmt tables - with pmt table having updated
// location and time data.
func (e *Encoder) writePSI() error {
// Write PAT
patPkt := Packet{
PUSI: true,
PID: patPid,
CC: e.ccFor(patPid),
AFC: hasPayload,
Payload: patTable,
}
2018-12-27 05:55:51 +03:00
_, err := e.dst.Write(patPkt.Bytes(e.tsSpace[:PktLen]))
if err != nil {
return err
}
// Update pmt table time and location
err = psi.UpdateTime(pmtTable, metaData.time)
if err != nil {
return err
}
err = psi.UpdateLocation(pmtTable, metaData.location)
if err != nil {
return nil
}
// Create mts packet from pmt table
pmtPkt := Packet{
PUSI: true,
PID: pmtPid,
CC: e.ccFor(pmtPid),
AFC: hasPayload,
Payload: pmtTable,
}
2018-12-27 05:55:51 +03:00
_, err = e.dst.Write(pmtPkt.Bytes(e.tsSpace[:PktLen]))
if err != nil {
return err
}
e.psiCount = psiSndCnt
return nil
}
2018-08-18 07:06:14 +03:00
// tick advances the clock one frame interval.
2018-08-19 14:09:57 +03:00
func (e *Encoder) tick() {
e.clock += e.frameInterval
2018-08-18 07:06:14 +03:00
}
// pts retuns the current presentation timestamp.
2018-08-19 14:09:57 +03:00
func (e *Encoder) pts() uint64 {
return uint64((e.clock + e.ptsOffset).Seconds() * pcrFreq)
}
2018-08-18 07:06:14 +03:00
// pcr returns the current program clock reference.
2018-08-19 14:09:57 +03:00
func (e *Encoder) pcr() uint64 {
return uint64(e.clock.Seconds() * pcrFreq)
}
// ccFor returns the next continuity counter for pid.
2018-08-19 14:09:57 +03:00
func (e *Encoder) ccFor(pid int) byte {
cc := e.continuity[pid]
// Continuity counter mask
const ccMask = 0xf
e.continuity[pid] = (cc + 1) & ccMask
return cc
}