2018-11-16 12:05:19 +03:00
|
|
|
/*
|
|
|
|
NAME
|
|
|
|
encoder.go
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
See Readme.md
|
|
|
|
|
|
|
|
AUTHOR
|
|
|
|
Saxon Nelson-Milton (saxon@ausocean.org)
|
|
|
|
|
|
|
|
LICENSE
|
|
|
|
encoder.go is Copyright (C) 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 rtp
|
2018-11-17 10:13:04 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2018-11-17 15:47:08 +03:00
|
|
|
"math/rand"
|
2018-11-17 10:13:04 +03:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2018-11-17 15:47:08 +03:00
|
|
|
yes = 1
|
|
|
|
no = 0
|
|
|
|
defaultPktType = 1
|
|
|
|
timestampFreq = 90000 // Hz
|
2018-11-17 10:13:04 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type Encoder struct {
|
2018-11-17 15:47:08 +03:00
|
|
|
dst io.Writer
|
|
|
|
ssrc uint32
|
|
|
|
seqNo uint16
|
2018-11-17 10:13:04 +03:00
|
|
|
clock time.Duration
|
|
|
|
frameInterval time.Duration
|
|
|
|
}
|
|
|
|
|
2018-11-17 15:47:08 +03:00
|
|
|
// NewEncoder returns a new Encoder type given an io.Writer - the destination
|
|
|
|
// after encoding and the desired fps
|
2018-11-17 10:13:04 +03:00
|
|
|
func NewEncoder(dst io.Writer, fps float64) *Encoder {
|
|
|
|
return &Encoder{
|
|
|
|
dst: dst,
|
2018-11-17 15:47:08 +03:00
|
|
|
ssrc: rand.Uint32(),
|
2018-11-17 10:13:04 +03:00
|
|
|
frameInterval: time.Duration(float64(time.Second) / fps),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-17 15:47:08 +03:00
|
|
|
// Encode takes a nalu unit and encodes it into an rtp packet and
|
|
|
|
// writes to the io.Writer given in NewEncoder
|
2018-11-17 10:13:04 +03:00
|
|
|
func (e *Encoder) Encode(nalu []byte) error {
|
|
|
|
pkt := Pkt{
|
2018-11-17 15:47:08 +03:00
|
|
|
V: rtpVer, // version
|
|
|
|
P: no, // padding
|
|
|
|
X: no, // header extension
|
|
|
|
CC: no, // CSRC count
|
|
|
|
M: no, // NOTE: need to check if this works (decoders should ignore this)
|
|
|
|
PT: defaultPktType, // NOTE: 1-23 according to rtp-h264 specs (don't think we need this)
|
|
|
|
SN: e.nxtSeqNo(), // sequence number
|
|
|
|
TS: e.nxtTimestamp(), // timestamp
|
|
|
|
SSRC: e.ssrc, // source identifier
|
|
|
|
Payload: nalu,
|
|
|
|
Padding: no,
|
2018-11-17 10:13:04 +03:00
|
|
|
}
|
2018-11-17 15:47:08 +03:00
|
|
|
|
2018-11-17 10:13:04 +03:00
|
|
|
_, err := e.dst.Write(pkt.Bytes())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
e.tick()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// tick advances the clock one frame interval.
|
|
|
|
func (e *Encoder) tick() {
|
|
|
|
e.clock += e.frameInterval
|
|
|
|
}
|
|
|
|
|
2018-11-17 15:47:08 +03:00
|
|
|
// nxtTimestamp gets the next timestamp
|
|
|
|
func (e *Encoder) nxtTimestamp() uint32 {
|
|
|
|
return uint32(e.clock.Seconds() * timestampFreq)
|
2018-11-17 10:13:04 +03:00
|
|
|
}
|
|
|
|
|
2018-11-17 15:47:08 +03:00
|
|
|
// nxtSeqNo gets the next rtp packet sequence number
|
|
|
|
func (e *Encoder) nxtSeqNo() uint16 {
|
|
|
|
e.seqNo += 1
|
|
|
|
return e.seqNo - 1
|
2018-11-17 10:13:04 +03:00
|
|
|
}
|