av/generator/mpegts_generator.go

188 lines
4.5 KiB
Go
Raw Normal View History

/*
NAME
mpegts_generator.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
mpegts_generator.go is Copyright (C) 2017 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 generator
import (
2018-08-18 06:51:50 +03:00
"time"
2018-03-13 08:15:42 +03:00
"bitbucket.org/ausocean/av/mpegts"
"bitbucket.org/ausocean/av/pes"
)
2018-08-17 18:30:51 +03:00
const psiPacketSize = 184
2018-04-17 08:20:23 +03:00
2018-02-28 17:42:00 +03:00
// TODO: really need to finish the at and pmt stuff - this is too hacky
2018-01-16 08:49:18 +03:00
var (
2018-08-17 18:18:13 +03:00
patTable = []byte{0, 0, 176, 13, 0, 1, 193, 0, 0, 0, 1, 240, 0, 42, 177, 4, 178}
pmtTable = []byte{0, 2, 176, 18, 0, 1, 193, 0, 0, 0xE1, 0x00, 0xF0, 0, 0x1B, 0xE1, 0, 0xF0, 0, 0x15, 0xBD, 0x4D, 0x56}
2018-01-16 08:49:18 +03:00
)
func init() {
2018-08-17 18:30:51 +03:00
for len(patTable) < psiPacketSize {
patTable = append(patTable, 0xff)
2018-02-28 17:42:00 +03:00
}
2018-08-17 18:30:51 +03:00
for len(pmtTable) < psiPacketSize {
pmtTable = append(pmtTable, 0xff)
2018-02-28 17:42:00 +03:00
}
}
2018-01-16 08:49:18 +03:00
const (
2018-08-18 05:36:34 +03:00
sdtPid = 17
patPid = 0
pmtPid = 4096
videoPid = 256
streamID = 0xe0
2018-08-18 06:51:50 +03:00
ptsOffset = 700 * time.Millisecond
ptsFreq = 90000 // Hz
maxCC = 0xf
2018-01-16 08:49:18 +03:00
)
2018-02-28 17:42:00 +03:00
// tsGenerator encapsulates properties of an mpegts generator.
2018-01-10 04:32:16 +03:00
type tsGenerator struct {
outputChan chan []byte
nalInputChan chan []byte
2018-08-18 06:51:50 +03:00
currentPtsTime time.Duration
currentPcrTime time.Duration
frameInterval time.Duration
continuity map[int]byte
isGenerating bool
2017-12-13 09:52:18 +03:00
}
2018-02-28 17:42:00 +03:00
// NewTsGenerator returns an instance of the tsGenerator struct
func NewTsGenerator(fps float64) (g *tsGenerator) {
return &tsGenerator{
outputChan: make(chan []byte, 1),
nalInputChan: make(chan []byte, 1),
2018-08-18 06:51:50 +03:00
frameInterval: time.Duration(float64(time.Second) / fps),
currentPtsTime: 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
}
2018-02-28 17:42:00 +03:00
// Start is called when we would like generation to begin, i.e. we would like
// the generator to start taking input data and creating mpegts packets
2018-02-28 16:46:59 +03:00
func (g *tsGenerator) Start() {
2018-01-24 07:12:22 +03:00
go g.generate()
}
func (g *tsGenerator) Stop() {}
// InputChan returns a handle to the nalInputChan (inputChan) so that nal units
// can be passed to the generator and processed
func (g *tsGenerator) InputChan() chan []byte {
return g.nalInputChan
2018-05-06 10:32:51 +03:00
}
// OutputChan returns a handle to the generator output chan where the mpegts
// packets will show up once ready to go
func (g *tsGenerator) OutputChan() <-chan []byte {
return g.outputChan
2018-02-28 17:42:00 +03:00
}
// generate handles the incoming data and generates equivalent mpegts packets -
// sending them to the output channel
2018-01-24 07:12:22 +03:00
func (g *tsGenerator) generate() {
2018-01-17 06:48:47 +03:00
for {
nalu := <-g.nalInputChan
pesPkt := pes.Packet{
StreamID: streamID,
PDI: 2,
PTS: g.pts(),
Data: nalu,
HeaderLength: 5,
}
buf := pesPkt.Bytes()
pusi := true
for len(buf) != 0 {
pkt := mpegts.Packet{
PUSI: pusi,
PID: videoPid,
RAI: pusi,
CC: g.ccFor(videoPid),
AFC: 3,
PCRF: pusi,
}
n := pkt.FillPayload(buf)
buf = buf[n:]
// TODO: create consts for AFC parameters
if pusi {
// Create pat table
patPkt := mpegts.Packet{
PUSI: pusi,
2018-08-18 05:36:34 +03:00
PID: patPid,
CC: g.ccFor(patPid),
AFC: 1,
Payload: patTable,
2018-01-08 04:12:26 +03:00
}
g.outputChan <- patPkt.Bytes()
// Create pmt table
pmtPkt := mpegts.Packet{
PUSI: pusi,
PID: pmtPid,
CC: g.ccFor(pmtPid),
AFC: 1,
Payload: pmtTable,
}
g.outputChan <- pmtPkt.Bytes()
// If pusi then we need to gen a pcr
pkt.PCR = g.pcr()
pusi = false
}
g.outputChan <- pkt.Bytes()
}
}
2017-12-13 09:52:18 +03:00
}
// pts retuns the next presentation timestamp.
func (g *tsGenerator) pts() uint64 {
2018-08-18 06:51:50 +03:00
pts := uint64(g.currentPtsTime.Seconds() * ptsFreq)
g.currentPtsTime += g.frameInterval
return pts
}
// pcr returns the next program clock reference.
func (g *tsGenerator) pcr() uint64 {
2018-08-18 06:51:50 +03:00
pcr := uint64(g.currentPcrTime.Seconds() * ptsFreq)
g.currentPcrTime += g.frameInterval
return pcr
}
// ccFor returns the next continuity counter for pid.
func (g *tsGenerator) ccFor(pid int) byte {
cc := g.continuity[pid]
g.continuity[pid] = (cc + 1) & maxCC
return cc
}