Files
engine/common/frame.go
2022-02-12 12:44:09 +08:00

196 lines
4.4 KiB
Go

package common
import (
"net"
"time"
"github.com/Monibuca/engine/v4/codec"
"github.com/pion/rtp"
"github.com/sirupsen/logrus"
)
type NALUSlice net.Buffers
// type H264Slice NALUSlice
// type H265Slice NALUSlice
// type H264NALU []H264Slice
// type H265NALU []H265Slice
type AudioSlice []byte
// type AACSlice AudioSlice
// type G711Slice AudioSlice
// 裸数据片段
type RawSlice interface {
~[][]byte | ~[]byte
}
// func (nalu *H264NALU) Append(slice ...NALUSlice) {
// *nalu = append(*nalu, slice...)
// }
func (nalu NALUSlice) H264Type() (naluType codec.H264NALUType) {
return naluType.Parse(nalu[0][0])
}
func (nalu NALUSlice) RefIdc() byte {
return nalu[0][0] & 0x60
}
func (nalu NALUSlice) H265Type() (naluType codec.H265NALUType) {
return naluType.Parse(nalu[0][0])
}
func (nalu NALUSlice) Bytes() (b []byte) {
for _, slice := range nalu {
b = append(b, slice...)
}
return
}
func (nalu *NALUSlice) Reset() *NALUSlice{
if len(*nalu) > 0 {
*nalu = (*nalu)[:0]
}
return nalu
}
func (nalu *NALUSlice) Append(b ...[]byte) {
*nalu = append(*nalu, b...)
}
// func (nalu *H265NALU) Append(slice ...NALUSlice) {
// *nalu = append(*nalu, slice...)
// }
// func (nalu H265NALU) IFrame() bool {
// switch H265Slice(nalu[0]).Type() {
// case codec.NAL_UNIT_CODED_SLICE_BLA,
// codec.NAL_UNIT_CODED_SLICE_BLANT,
// codec.NAL_UNIT_CODED_SLICE_BLA_N_LP,
// codec.NAL_UNIT_CODED_SLICE_IDR,
// codec.NAL_UNIT_CODED_SLICE_IDR_N_LP,
// codec.NAL_UNIT_CODED_SLICE_CRA:
// return true
// }
// return false
// }
type AVCCFrame []byte // 一帧AVCC格式的数据
type AnnexBFrame []byte // 一帧AnnexB格式数据
type RTPFrame struct {
rtp.Packet
Raw []byte // 序列化后的数据,避免反复序列化
}
func (rtp *RTPFrame) H264Type() (naluType codec.H264NALUType) {
return naluType.Parse(rtp.Payload[0])
}
func (rtp *RTPFrame) H265Type() (naluType codec.H265NALUType) {
return naluType.Parse(rtp.Payload[0])
}
func (rtp *RTPFrame) Marshal() *RTPFrame {
rtp.Raw, _ = rtp.Packet.Marshal()
return rtp
}
func (rtp *RTPFrame) Unmarshal(raw []byte) *RTPFrame {
rtp.Raw = raw
if err := rtp.Packet.Unmarshal(raw); err != nil {
logrus.Errorln(err)
return nil
}
return rtp
}
type BaseFrame struct {
DeltaTime uint32 // 相对上一帧时间戳,毫秒
SeqInStream uint32 //在一个流中的总序号
SeqInTrack uint32 //在一个Track中的序号
BytesIn int // 输入字节数用于计算BPS
}
type DataFrame[T any] struct {
Timestamp time.Time // 写入时间
BaseFrame
Value T
}
type AVFrame[T RawSlice] struct {
BaseFrame
IFrame bool
PTS uint32
DTS uint32
FLV net.Buffers // 打包好的FLV Tag
AVCC net.Buffers // 打包好的AVCC格式
RTP []*RTPFrame
Raw []T //裸数据
canRead bool
}
func (av *AVFrame[T]) AppendRaw(raw ...T) {
av.Raw = append(av.Raw, raw...)
}
func (av *AVFrame[T]) FillFLV(t byte, ts uint32) {
av.FLV = codec.VideoAVCC2FLV(av.AVCC, ts)
av.FLV[0][0] = t
}
func (av *AVFrame[T]) AppendAVCC(avcc ...[]byte) {
av.AVCC = append(av.AVCC, avcc...)
}
func (av *AVFrame[T]) AppendRTP(rtp ...*RTPFrame) {
av.RTP = append(av.RTP, rtp...)
}
func (av *AVFrame[T]) Reset() {
av.FLV = nil
av.AVCC = nil
av.RTP = nil
av.Raw = nil
}
func (avcc AVCCFrame) IsIDR() bool {
return avcc[0]>>4 == 1
}
func (avcc AVCCFrame) IsSequence() bool {
return avcc[1] == 0
}
func (avcc AVCCFrame) CTS() uint32 {
return uint32(avcc[2])<<24 | uint32(avcc[3])<<8 | uint32(avcc[4])
}
func (avcc AVCCFrame) VideoCodecID() byte {
return avcc[0] & 0x0F
}
func (avcc AVCCFrame) AudioCodecID() byte {
return avcc[0] >> 4
}
// func (annexb AnnexBFrame) ToSlices() (ret []NALUSlice) {
// for len(annexb) > 0 {
// before, after, found := bytes.Cut(annexb, codec.NALU_Delimiter1)
// if !found {
// return append(ret, NALUSlice{annexb})
// }
// if len(before) > 0 {
// ret = append(ret, NALUSlice{before})
// }
// annexb = after
// }
// return
// }
// func (annexb AnnexBFrame) ToNALUs() (ret [][]NALUSlice) {
// for len(annexb) > 0 {
// before, after, found := bytes.Cut(annexb, codec.NALU_Delimiter1)
// if !found {
// return append(ret, annexb.ToSlices())
// }
// if len(before) > 0 {
// ret = append(ret, AnnexBFrame(before).ToSlices())
// }
// annexb = after
// }
// return
// }
type DecoderConfiguration[T RawSlice] struct {
PayloadType byte
AVCC T
Raw T
FLV net.Buffers
}