av/revid/revid.go

715 lines
18 KiB
Go
Raw Normal View History

2017-09-13 08:00:26 +03:00
/*
NAME
revid - a testbed for re-muxing and re-directing video streams as MPEG-TS over various protocols.
DESCRIPTION
See Readme.md
AUTHOR
Alan Noble <anoble@gmail.com>
LICENSE
revid is Copyright (C) 2017 Alan Noble.
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
2017-09-20 14:57:01 +03:00
along with revid in gpl.txt. If not, see [GNU licenses](http://www.gnu.org/licenses).
2017-09-13 08:00:26 +03:00
*/
2017-09-20 14:57:01 +03:00
// revid is a testbed for re-muxing and re-directing video streams as MPEG-TS over various protocols.
2017-09-13 08:00:26 +03:00
package main
import (
"bufio"
"bytes"
"crypto/md5"
2017-09-13 08:00:26 +03:00
"encoding/binary"
"encoding/hex"
2017-09-13 08:00:26 +03:00
"flag"
"fmt"
"image"
2017-09-13 08:00:26 +03:00
"io"
"io/ioutil"
"log"
"math"
2017-09-13 08:00:26 +03:00
"math/rand"
"net"
"net/http"
"os"
2017-09-13 08:00:26 +03:00
"os/exec"
"runtime"
2017-09-13 08:00:26 +03:00
"strconv"
2017-09-20 14:57:01 +03:00
"strings"
2017-09-13 08:00:26 +03:00
"time"
2017-09-20 14:57:01 +03:00
2017-12-02 19:12:47 +03:00
"../ringbuffer"
2017-09-20 14:57:01 +03:00
"github.com/Comcast/gots/packet"
"github.com/Comcast/gots/packet/adaptationfield"
"github.com/Comcast/gots/psi"
2017-09-13 08:00:26 +03:00
)
2017-09-20 14:57:01 +03:00
// defaults and networking consts
const (
clipDuration = 1 // s
defaultPID = 256
defaultFrameRate = 25
defaultHTTPOutput = "http://localhost:8080?"
defaultUDPOutput = "udp://0.0.0.0:16384"
defaultRTPOutput = "rtp://0.0.0.0:16384"
mp2tPacketSize = 188 // MPEG-TS packet size
mp2tMaxPackets = 2016*clipDuration // # first multiple of 7 and 8 greater than 2000
udpPackets = 7 // # of UDP packets per ethernet frame (8 is the max)
rtpPackets = 7 // # of RTP packets per ethernet frame (7 is the max)
rtpHeaderSize = 12
rtpSSRC = 1 // any value will do
bufferSize = 1000/clipDuration
bitrateOutputDelay = 60 // s
httpTimeOut = 5 // s
2017-12-07 06:33:55 +03:00
motionThreshold = "0.0025"
2017-09-20 14:57:01 +03:00
)
2017-09-13 08:00:26 +03:00
// flag values
2017-09-13 08:00:26 +03:00
const (
2017-09-20 14:57:01 +03:00
filterFixPTS = 0x0001
filterDropAudio = 0x0002
filterScale640 = 0x0004
filterScale320 = 0x0008
filterFixContinuity = 0x0010
filterEdgeDetection = 0x0020
filterMotionDetect = 0x0040
2017-09-20 14:57:01 +03:00
dumpProgramInfo = 0x0100 // 256
dumpPacketStats = 0x0200 // 512
dumpPacketHeader = 0x0400 // 1024
dumpPacketPayload = 0x0800 // 2048
2017-09-13 08:00:26 +03:00
)
// globals
2017-09-20 14:57:01 +03:00
var (
sendClip = sendClipToRTP
packetsPerFrame = rtpPackets
2017-09-20 14:57:01 +03:00
clipCount int
expectCC int
dumpCC int
dumpPCRBase uint64
2017-09-21 07:08:57 +03:00
rtpSequenceNum uint16
conn net.Conn
ffmpegPath string
tempDir string
inputErrChan chan error
outputErrChan chan error
2017-12-04 07:06:23 +03:00
ringBuffer ringbuffer.RingBuffer
2017-09-20 14:57:01 +03:00
)
2017-09-13 08:00:26 +03:00
// command-line flags
var (
inputURL = flag.String("i", "", "Input RTSP URL")
outputURL = flag.String("o", "", "Output URL (HTTP, UDP or RTP)")
mode = flag.String("m", "r", "Mode: one of f,h,u,r or d")
flags = flag.Int("f", 0, "Flags: see readme for explanation")
frameRate = flag.Int("r", defaultFrameRate, "Input video frame rate (25fps by default)")
selectedPID = flag.Int("p", defaultPID, "Select packets with this packet ID (PID)")
)
2017-09-13 08:00:26 +03:00
func main() {
setUpDirs()
2017-09-20 14:57:01 +03:00
flag.Parse()
2017-09-13 08:00:26 +03:00
if *inputURL == "" {
2017-09-20 14:57:01 +03:00
log.Fatal("Input (-i) required\n")
}
switch *mode {
case "f":
sendClip = sendClipToFile
case "h":
sendClip = sendClipToHTTP
if *outputURL == "" {
*outputURL = defaultHTTPOutput
2017-09-20 14:57:01 +03:00
}
case "u":
sendClip = sendClipToUDP
packetsPerFrame = udpPackets
if *outputURL == "" {
*outputURL = defaultUDPOutput
2017-09-20 14:57:01 +03:00
}
case "r":
sendClip = sendClipToRTP
packetsPerFrame = rtpPackets
if *outputURL == "" {
*outputURL = defaultRTPOutput
2017-09-13 08:00:26 +03:00
}
2017-09-20 14:57:01 +03:00
case "d":
sendClip = sendClipToStdout
default:
log.Fatalf("Invalid mode %s\n", *mode)
2017-09-13 08:00:26 +03:00
}
2017-09-20 14:57:01 +03:00
if *flags&filterFixContinuity != 0 && *flags&dumpProgramInfo != 0 {
log.Fatal("Cannot combine filterFixContinuity and dumpProgramInfo flags\n")
}
2017-12-04 07:06:23 +03:00
ringBuffer = ringbuffer.NewRingBuffer(bufferSize, mp2tPacketSize*mp2tMaxPackets)
inputErrChan = make(chan error, 10)
outputErrChan = make(chan error, 10)
go input(*inputURL, *outputURL)
go output(*outputURL)
// Sit in here once we execute the go routines and handle errors that may
// appear in the error channels
2017-09-20 14:57:01 +03:00
for {
select {
default:
case err := <-inputErrChan:
fmt.Fprintln(os.Stderr, err)
fmt.Fprintln(os.Stderr, "Trying again in 10s")
2017-12-07 06:33:55 +03:00
time.Sleep(10 * time.Second)
go input(*inputURL, *outputURL)
case err := <-outputErrChan:
fmt.Fprintln(os.Stderr, err)
fmt.Fprintln(os.Stderr, "Attempting to write again!")
}
2017-09-20 14:57:01 +03:00
}
2017-09-13 08:00:26 +03:00
}
// setUpDirs sets directories based on the OS that Revid is running on
func setUpDirs() {
switch runtime.GOOS {
case "windows":
ffmpegPath = "C:/ffmpeg/ffmpeg"
tempDir = "tmp/"
case "darwin":
ffmpegPath = "/usr/local/bin/ffmpeg"
tempDir = "/tmp/"
default:
ffmpegPath = "/usr/bin/ffmpeg"
tempDir = "/tmp/"
}
}
// input handles the reading from the specified input
func input(input string, output string) {
2017-09-20 14:57:01 +03:00
fmt.Printf("Reading video from %s\n", input)
2017-09-20 14:57:01 +03:00
// (re)initialize globals
clipCount = 0
expectCC = -1
dumpCC = -1
dumpPCRBase = 0
2017-09-21 07:08:57 +03:00
rtpSequenceNum = uint16(rand.Intn(1 << 15))
2017-09-20 14:57:01 +03:00
var err error
2017-09-20 14:57:01 +03:00
// for UDP and RTP only dial once
if strings.HasPrefix(output, "udp://") || strings.HasPrefix(output, "rtp://") {
2017-09-20 14:57:01 +03:00
conn, err = net.Dial("udp", output[6:])
2017-09-13 08:00:26 +03:00
if err != nil {
inputErrChan <- err
return
2017-09-13 08:00:26 +03:00
}
}
var br *bufio.Reader
if *flags&filterEdgeDetection != 0{
args := []string{
"-r", "25",
"-i", input,
"-pix_fmt", "gray",
"-vf", "edgedetect",
"-f", "mpegts", "-",
}
fmt.Printf("Executing: %s %s\n", ffmpegPath, strings.Join(args, " "))
cmd := exec.Command(ffmpegPath, args...)
stdout, _ := cmd.StdoutPipe()
err := cmd.Start()
if err != nil {
inputErrChan <- err
return
}
br = bufio.NewReader(stdout)
}else{
if *flags&filterMotionDetect != 0{
args := []string{
"-i", input,
2017-12-07 06:33:55 +03:00
"-vf", "select=gt(scene\\,"+motionThreshold+"),setpts=N/(FRAME_RATE*TB)",
"-f", "mpegts", "-",
}
fmt.Printf("Executing: %s %s\n", ffmpegPath, strings.Join(args, " "))
cmd := exec.Command(ffmpegPath, args...)
2017-12-07 05:45:02 +03:00
stdout, err := cmd.StdoutPipe()
if err != nil {
inputErrChan <- err
return
}
err = cmd.Start()
if err != nil {
inputErrChan <- err
return
}
br = bufio.NewReader(stdout)
2017-12-07 06:18:30 +03:00
}else{
args := []string{
"-r", strconv.Itoa(*frameRate),
"-i", input,
}
if *flags&(filterFixPTS|filterScale640|filterScale320) == 0 {
args = append(args, "-vcodec", "copy")
} else {
vfArg := []string{}
if *flags&filterFixPTS != 0 {
vfArg = append(vfArg, "setpts='PTS-STARTPTS'") // start counting PTS from zero
}
if *flags&filterScale640 != 0 {
vfArg = append(vfArg, "scale=640:352")
} else if *flags&filterScale320 != 0 {
vfArg = append(vfArg, "scale=320:176")
}
args = append(args, "-vf", strings.Join(vfArg, ","))
}
if *flags&filterDropAudio == 0 {
args = append(args, "-acodec", "copy")
} else {
args = append(args, "-an")
}
args = append(args, "-f", "mpegts", "-")
fmt.Printf("Executing: %s %s\n", ffmpegPath, strings.Join(args, " "))
cmd := exec.Command(ffmpegPath, args...)
stdout, err := cmd.StdoutPipe()
if err != nil {
inputErrChan <- err
return
}
err = cmd.Start()
if err != nil {
inputErrChan <- err
return
}
br = bufio.NewReader(stdout)
}
}
clipStore(br,input)
}
func clipStore(br *bufio.Reader, input string){
2017-09-20 14:57:01 +03:00
clipSize := 0
packetCount := 0
now := time.Now()
prevTime := now
2017-09-20 14:57:01 +03:00
fmt.Printf("Looping\n")
for {
if clip, err := ringBuffer.Get(); err != nil {
inputErrChan <- err
return
} else {
for {
upperBound := clipSize + mp2tPacketSize
2017-12-07 05:45:02 +03:00
_, err := io.ReadFull(br, clip[clipSize:upperBound])
2017-12-07 05:45:02 +03:00
if err != nil {
inputErrChan <- err
return
}
if *flags&filterFixContinuity != 0 && mp2tFixContinuity(clip[clipSize:upperBound], uint16(*selectedPID)) {
fmt.Printf("Packet #%d.%d fixed\n", clipCount, packetCount)
}
packetCount++
clipSize += mp2tPacketSize
// send if (1) our buffer is full or (2) 1 second has elapsed and we have % packetsPerFrame
now = time.Now()
if (packetCount == mp2tMaxPackets) ||
(now.Sub(prevTime) > clipDuration*time.Second && packetCount%packetsPerFrame == 0) {
clipCount++
if err := ringBuffer.DoneWriting(clipSize); err != nil {
inputErrChan <- err
return
}
clipSize = 0
packetCount = 0
prevTime = now
break
}
}
}
}
}
2017-09-13 08:00:26 +03:00
func printGray(img *image.Gray) {
shade := []string{" ", "█"}
for i, p := range img.Pix {
x := 0
if p > 20 {
x = 1
}
fmt.Print(shade[x])
if (i+1)%640 == 0 {
fmt.Print("\n")
}
}
}
func checkSlice(a,b *image.Gray){
for i , _ := range a.Pix{
fmt.Printf("%v - %v = %v\n", a.Pix[i], b.Pix[i], a.Pix[i]-b.Pix[i])
}
}
func FastCompare(img1, img2 *image.Gray) (float64, error) {
if img1.Bounds() != img2.Bounds() {
return 0, fmt.Errorf("image bounds not equal: %+v, %+v", img1.Bounds(), img2.Bounds())
}
accumError := float64(0)
for i := 0; i < len(img1.Pix); i+= 20 {
accumError += float64((img1.Pix[i] - img2.Pix[i]) * (img1.Pix[i] - img2.Pix[i]))
}
return math.Sqrt(accumError), nil
}
// output handles the writing to specified output
func output(output string) {
elapsedTime := time.Duration(0)
now := time.Now()
prevTime := now
2017-09-13 08:00:26 +03:00
for {
if clip, err := ringBuffer.Read(); err == nil {
now := time.Now()
err := sendClip(clip, output, conn)
for err != nil {
outputErrChan <- err
err = sendClip(clip, output, conn)
}
2017-11-24 03:43:24 +03:00
deltaTime := now.Sub(prevTime)
elapsedTime += deltaTime
if elapsedTime > bitrateOutputDelay*time.Second {
noOfBits := float64(len(clip)*8) / 1024.0 // convert bytes to kilobits
fmt.Printf("Bitrate: %d kbps\n", int64(noOfBits/float64(deltaTime/1e9)))
elapsedTime = time.Duration(0)
2017-09-13 08:00:26 +03:00
}
prevTime = now
if err := ringBuffer.DoneReading(); err != nil {
outputErrChan <- err
}
2017-09-20 14:57:01 +03:00
}
}
}
// sendClipToFile writes a video clip to a /tmp file.
func sendClipToFile(clip []byte, _ string, _ net.Conn) error {
filename := fmt.Sprintf(tempDir+"vid%03d.ts", clipCount)
2017-09-20 14:57:01 +03:00
fmt.Printf("Writing %s (%d bytes)\n", filename, len(clip))
err := ioutil.WriteFile(filename, clip, 0644)
if err != nil {
return fmt.Errorf("Error writing file %s: %s", filename, err)
2017-09-20 14:57:01 +03:00
}
return nil
}
// sendClipToHTPP posts a video clip via HTTP, using a new TCP connection each time.
func sendClipToHTTP(clip []byte, output string, _ net.Conn) error {
timeout := time.Duration(httpTimeOut * time.Second)
client := http.Client{
Timeout: timeout,
}
hash := md5.Sum(clip)
url := output + strconv.Itoa(len(clip)) + "." + hex.EncodeToString(hash[:]) // NB: append size.digest to output
fmt.Printf("Posting %s (%d bytes)\n", url, len(clip))
resp, err := client.Post(url, "video/mp2t", bytes.NewReader(clip)) // lighter than NewBuffer
2017-09-20 14:57:01 +03:00
if err != nil {
return fmt.Errorf("Error posting to %s: %s", output, err)
2017-09-20 14:57:01 +03:00
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err == nil {
fmt.Printf("%s\n", body)
2017-09-20 14:57:01 +03:00
}
return err
}
// sendClipToUDP sends a video clip over UDP.
func sendClipToUDP(clip []byte, _ string, conn net.Conn) error {
size := udpPackets * mp2tPacketSize
2017-09-20 14:57:01 +03:00
fmt.Printf("Sending %d UDP packets of size %d (%d bytes)\n", len(clip)/size, size, len(clip))
for offset := 0; offset < len(clip); offset += size {
pkt := clip[offset : offset+size]
2017-09-20 14:57:01 +03:00
_, err := conn.Write(pkt)
if err != nil {
return fmt.Errorf("UDP write error %s. Is your player listening?", err)
2017-09-13 08:00:26 +03:00
}
2017-09-20 14:57:01 +03:00
}
return nil
}
2017-09-13 08:00:26 +03:00
2017-09-20 14:57:01 +03:00
// sendClipToRTP sends a video clip over RTP.
func sendClipToRTP(clip []byte, _ string, conn net.Conn) error {
size := rtpPackets * mp2tPacketSize
2017-09-20 14:57:01 +03:00
fmt.Printf("Sending %d RTP packets of size %d (%d bytes)\n",
len(clip)/size, size+rtpHeaderSize, len(clip))
pkt := make([]byte, rtpHeaderSize+rtpPackets*mp2tPacketSize)
2017-09-20 14:57:01 +03:00
for offset := 0; offset < len(clip); offset += size {
rtpEncapsulate(clip[offset:offset+size], pkt)
2017-09-20 14:57:01 +03:00
_, err := conn.Write(pkt)
2017-09-13 08:00:26 +03:00
if err != nil {
return fmt.Errorf("RTP write error %s. Is your player listening?", err)
2017-09-20 14:57:01 +03:00
}
}
return nil
}
// checkContinuityCounts checks that the continuity of the clip is correct
func checkContinuityCounts(clip []byte) error {
for offset := 0; offset < len(clip); offset += mp2tPacketSize {
dumpCC = -1
pkt := clip[offset : offset+mp2tPacketSize]
cc := int(pkt[3] & 0xf)
if dumpCC != -1 && cc != dumpCC {
return fmt.Errorf("Continuity count out of order. Expected %v, Got: %v.", dumpCC, cc)
}
dumpCC = (cc + 1) % 16
}
return nil
}
2017-09-20 14:57:01 +03:00
// sendClipToStdout dumps video stats to stdout.
func sendClipToStdout(clip []byte, _ string, _ net.Conn) error {
fmt.Printf("Dumping clip (%d bytes)\n", len(clip))
if *flags&dumpProgramInfo != 0 {
return mp2tDumpProgram(clip)
}
packetCount := 0
discontinuities := 0
var cc int
for offset := 0; offset < len(clip); offset += mp2tPacketSize {
packetCount++
pkt := clip[offset : offset+mp2tPacketSize]
2017-09-20 14:57:01 +03:00
pktPID, err := packet.Pid(pkt)
2017-09-20 14:57:01 +03:00
if err != nil {
return err
}
if pktPID != uint16(*selectedPID) {
2017-09-13 08:00:26 +03:00
continue
}
2017-09-20 14:57:01 +03:00
if *flags&(dumpPacketHeader|dumpPacketPayload) != 0 {
fmt.Printf("Packet #%d.%d\n", clipCount, packetCount)
}
2017-09-20 14:57:01 +03:00
hasPayload := pkt[3]&0x10 != 0
2017-09-13 08:00:26 +03:00
if !hasPayload {
continue // nothing to do
}
2017-09-20 14:57:01 +03:00
// extract interesting info from header
tei := pkt[1] & 0x80 >> 7
pusi := pkt[1] & 0x40 >> 6
tp := pkt[1] & 0x20 >> 5
tcs := pkt[3] & 0xc0 >> 6
afc := pkt[3] & 0x30 >> 4
cc = int(pkt[3] & 0xf)
di := pkt[5]&0x80
2017-09-20 14:57:01 +03:00
if dumpCC != -1 && cc != dumpCC {
discontinuities++
fmt.Printf("Warning: Packet #%d.%d continuity counter out of order! Got %d, expected %d.\n",
clipCount, packetCount, cc, dumpCC)
2017-09-13 08:00:26 +03:00
}
2017-09-20 14:57:01 +03:00
dumpCC = (cc + 1) % 16
2017-09-13 08:00:26 +03:00
2017-09-20 14:57:01 +03:00
if *flags&dumpPacketHeader != 0 {
2017-09-13 08:00:26 +03:00
fmt.Printf("\t\tTEI=%d, PUSI=%d, TP=%d, TSC=%d, AFC=%d, CC=%d\n", tei, pusi, tp, tcs, afc, cc)
}
if afc == 3 {
// adaptation field, followed by payload
afl := adaptationfield.Length(pkt)
if adaptationfield.HasPCR(pkt) {
pcrBase, pcrExt, _ := mp2tGetPCR(pkt)
2017-09-20 14:57:01 +03:00
if *flags&dumpPacketHeader != 0 {
fmt.Printf("\t\tAFL=%d, PCRbase=%d, PCRext=%d, DI=%v\n", afl, pcrBase, pcrExt, di)
2017-09-13 08:00:26 +03:00
}
if pcrBase < dumpPCRBase {
2017-09-13 08:00:26 +03:00
fmt.Printf("Warning: PCRbase went backwards!\n")
}
dumpPCRBase = pcrBase
2017-09-20 14:57:01 +03:00
} else if *flags&dumpPacketHeader != 0 {
fmt.Printf("\t\tAFL=%d, DI=%v\n", afl, di)
2017-09-13 08:00:26 +03:00
}
}
2017-09-20 14:57:01 +03:00
if *flags&dumpPacketPayload != 0 {
2017-09-13 08:00:26 +03:00
fmt.Printf("\t\tPayload=%x\n", pkt)
}
}
2017-09-20 14:57:01 +03:00
if *flags&dumpPacketStats != 0 {
2017-09-13 08:00:26 +03:00
fmt.Printf("%d packets of size %d bytes (%d bytes, %d discontinuites)\n",
packetCount, packet.PacketSize, packetCount*packet.PacketSize, discontinuities)
}
2017-09-20 14:57:01 +03:00
return nil
2017-09-13 08:00:26 +03:00
}
2017-09-20 14:57:01 +03:00
// mp2tDumpProgram dumps MPEG-TS Program Association Table (PAT) and Program Map Tables (PMT).
func mp2tDumpProgram(clip []byte) error {
// NB: Comcast API requires a buffered reader
2017-09-20 14:57:01 +03:00
reader := bufio.NewReader(bytes.NewReader(clip))
_, err := packet.Sync(reader)
if err != nil {
return fmt.Errorf("Error reading sync byte: %s", err)
2017-09-20 14:57:01 +03:00
}
pat, err := psi.ReadPAT(reader)
2017-09-13 08:00:26 +03:00
if err != nil {
return fmt.Errorf("Error reading PAT: %s", err)
2017-09-20 14:57:01 +03:00
}
mp2tDumpPat(pat)
var pmts []psi.PMT
pm := pat.ProgramMap()
for pn, pid := range pm {
pmt, err := psi.ReadPMT(reader, pid)
if err != nil {
return fmt.Errorf("Error reading PMT: %s", err)
2017-09-20 14:57:01 +03:00
}
pmts = append(pmts, pmt)
mp2tDumpPmt(pn, pmt)
}
return nil
}
func mp2tDumpPat(pat psi.PAT) {
fmt.Printf("Pat\n")
fmt.Printf("\tPMT PIDs %v\n", pat.ProgramMap())
fmt.Printf("\tNumber of Programs %v\n", pat.NumPrograms())
}
func mp2tDumpPmt(pn uint16, pmt psi.PMT) {
// pn = program number
fmt.Printf("Program #%v PMT\n", pn)
fmt.Printf("\tPIDs %v\n", pmt.Pids())
fmt.Printf("\tElementary Streams")
for _, es := range pmt.ElementaryStreams() {
fmt.Printf("\t\tPID %v : StreamType %v\n", es.ElementaryPid(), es.StreamType())
2017-09-20 14:57:01 +03:00
for _, d := range es.Descriptors() {
fmt.Printf("\t\t\t%+v\n", d)
}
}
}
// Mp2tFixContinuity fixes discontinous MPEG-TS continuity counts (CC)
func mp2tFixContinuity(pkt []byte, pid uint16) bool {
2017-09-20 14:57:01 +03:00
hasPayload, err := packet.ContainsPayload(pkt)
if err != nil {
fmt.Printf("Warning: Packet bad.\n")
2017-09-13 08:00:26 +03:00
return false
}
if !hasPayload {
2017-09-20 14:57:01 +03:00
return false
2017-09-13 08:00:26 +03:00
}
if pktPID, _ := packet.Pid(pkt); pktPID != pid {
2017-09-20 14:57:01 +03:00
return false
2017-09-13 08:00:26 +03:00
}
fixed := false
// extract continuity counter from 2nd nibble of 4th byte of header
2017-09-20 14:57:01 +03:00
cc := int(pkt[3] & 0xf)
if expectCC == -1 {
expectCC = cc
} else if cc != expectCC {
fmt.Println("Have to fix")
2017-09-20 14:57:01 +03:00
pkt[3] = pkt[3]&0xf0 | byte(expectCC&0xf)
fixed = true
2017-09-13 08:00:26 +03:00
}
2017-09-20 14:57:01 +03:00
expectCC = (expectCC + 1) % 16
2017-09-13 08:00:26 +03:00
return fixed
}
func resetContinuityCount(pkt []byte) (bool){
if afc := pkt[3] & 0x30 >> 4; afc == 3{
pkt[5] = pkt[5] | byte(1 << 7)
}
return true
}
// Mp2tGetPCR extracts the Program Clock Reference (PCR) from an MPEG-TS packet (if any)
func mp2tGetPCR(pkt []byte) (uint64, uint32, bool) {
2017-09-20 14:57:01 +03:00
if !adaptationfield.HasPCR(pkt) {
return 0, 0, false
}
pcrBytes, _ := adaptationfield.PCR(pkt) // 6 bytes
// first 33 bits are PCR base, next 6 bits are reserved, final 9 bits are PCR extension.
pcrBase := uint64(binary.BigEndian.Uint32(pcrBytes[:4]))<<1 | uint64(pcrBytes[4]&0x80>>7)
pcrExt := uint32(pcrBytes[4]&0x01)<<1 | uint32(pcrBytes[5])
return pcrBase, pcrExt, true
2017-09-13 08:00:26 +03:00
}
// rtpEncapsulate encapsulates MPEG-TS packets within an RTP header,
// setting the payload type accordingly (to 33) and incrementing the RTP sequence number.
func rtpEncapsulate(mp2tPacket []byte, pkt []byte) {
2017-09-13 08:00:26 +03:00
// RTP packet encapsulates the MP2T
// first 12 bytes is the header
// byte 0: version=2, padding=0, extension=0, cc=0
2017-09-20 14:57:01 +03:00
pkt[0] = 0x80 // version (2)
2017-09-13 08:00:26 +03:00
// byte 1: marker=0, pt = 33 (MP2T)
2017-09-20 14:57:01 +03:00
pkt[1] = 33
2017-09-13 08:00:26 +03:00
// bytes 2 & 3: sequence number
2017-09-21 07:08:57 +03:00
binary.BigEndian.PutUint16(pkt[2:4], rtpSequenceNum)
if rtpSequenceNum == ^uint16(0) {
rtpSequenceNum = 0
2017-09-13 08:00:26 +03:00
} else {
2017-09-21 07:08:57 +03:00
rtpSequenceNum++
2017-09-13 08:00:26 +03:00
}
// bytes 4,5,6&7: timestamp
2017-09-20 14:57:01 +03:00
timestamp := uint32(time.Now().UnixNano() / 1e6) // ms timestamp
binary.BigEndian.PutUint32(pkt[4:8], timestamp)
2017-09-13 08:00:26 +03:00
// bytes 8,9,10&11: SSRC
binary.BigEndian.PutUint32(pkt[8:12], rtpSSRC)
2017-09-13 08:00:26 +03:00
// payload follows
copy(pkt[rtpHeaderSize:rtpHeaderSize+rtpPackets*mp2tPacketSize], mp2tPacket)
2017-09-13 08:00:26 +03:00
}