2023-01-05 11:54:00 +00:00
|
|
|
package formatprocessor //nolint:dupl
|
2022-12-13 20:26:35 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2023-04-01 16:39:12 +00:00
|
|
|
"github.com/bluenviron/gortsplib/v3/pkg/formats"
|
|
|
|
"github.com/bluenviron/gortsplib/v3/pkg/formats/rtpvp8"
|
2022-12-13 20:26:35 +00:00
|
|
|
"github.com/pion/rtp"
|
2023-05-04 18:16:41 +00:00
|
|
|
|
2023-05-16 14:14:20 +00:00
|
|
|
"github.com/bluenviron/mediamtx/internal/logger"
|
2022-12-13 20:26:35 +00:00
|
|
|
)
|
|
|
|
|
2023-03-10 11:44:59 +00:00
|
|
|
// UnitVP8 is a VP8 data unit.
|
|
|
|
type UnitVP8 struct {
|
2023-01-05 11:54:00 +00:00
|
|
|
RTPPackets []*rtp.Packet
|
|
|
|
NTP time.Time
|
|
|
|
PTS time.Duration
|
|
|
|
Frame []byte
|
2022-12-13 20:26:35 +00:00
|
|
|
}
|
|
|
|
|
2023-03-10 11:44:59 +00:00
|
|
|
// GetRTPPackets implements Unit.
|
|
|
|
func (d *UnitVP8) GetRTPPackets() []*rtp.Packet {
|
2023-01-05 11:54:00 +00:00
|
|
|
return d.RTPPackets
|
2022-12-13 20:26:35 +00:00
|
|
|
}
|
|
|
|
|
2023-03-10 11:44:59 +00:00
|
|
|
// GetNTP implements Unit.
|
|
|
|
func (d *UnitVP8) GetNTP() time.Time {
|
2023-01-05 11:54:00 +00:00
|
|
|
return d.NTP
|
2022-12-13 20:26:35 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 23:50:47 +00:00
|
|
|
type formatProcessorVP8 struct {
|
2023-03-31 09:53:49 +00:00
|
|
|
udpMaxPayloadSize int
|
2023-04-01 16:39:12 +00:00
|
|
|
format *formats.VP8
|
2023-03-31 09:53:49 +00:00
|
|
|
encoder *rtpvp8.Encoder
|
|
|
|
decoder *rtpvp8.Decoder
|
2022-12-13 20:26:35 +00:00
|
|
|
}
|
|
|
|
|
2023-01-05 11:54:00 +00:00
|
|
|
func newVP8(
|
2023-03-31 09:53:49 +00:00
|
|
|
udpMaxPayloadSize int,
|
2023-04-01 16:39:12 +00:00
|
|
|
forma *formats.VP8,
|
2023-05-04 18:16:41 +00:00
|
|
|
generateRTPPackets bool,
|
|
|
|
log logger.Writer,
|
2022-12-15 23:50:47 +00:00
|
|
|
) (*formatProcessorVP8, error) {
|
|
|
|
t := &formatProcessorVP8{
|
2023-03-31 09:53:49 +00:00
|
|
|
udpMaxPayloadSize: udpMaxPayloadSize,
|
|
|
|
format: forma,
|
2022-12-13 20:26:35 +00:00
|
|
|
}
|
|
|
|
|
2023-05-04 18:16:41 +00:00
|
|
|
if generateRTPPackets {
|
2023-04-25 16:13:51 +00:00
|
|
|
t.encoder = &rtpvp8.Encoder{
|
|
|
|
PayloadMaxSize: t.udpMaxPayloadSize - 12,
|
|
|
|
PayloadType: forma.PayloadTyp,
|
|
|
|
}
|
|
|
|
t.encoder.Init()
|
2022-12-13 20:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return t, nil
|
|
|
|
}
|
|
|
|
|
2023-03-10 11:44:59 +00:00
|
|
|
func (t *formatProcessorVP8) Process(unit Unit, hasNonRTSPReaders bool) error { //nolint:dupl
|
|
|
|
tunit := unit.(*UnitVP8)
|
2022-12-13 20:26:35 +00:00
|
|
|
|
2023-03-10 11:44:59 +00:00
|
|
|
if tunit.RTPPackets != nil {
|
|
|
|
pkt := tunit.RTPPackets[0]
|
2022-12-13 20:26:35 +00:00
|
|
|
|
|
|
|
// remove padding
|
|
|
|
pkt.Header.Padding = false
|
|
|
|
pkt.PaddingSize = 0
|
|
|
|
|
2023-03-31 09:53:49 +00:00
|
|
|
if pkt.MarshalSize() > t.udpMaxPayloadSize {
|
2022-12-13 20:26:35 +00:00
|
|
|
return fmt.Errorf("payload size (%d) is greater than maximum allowed (%d)",
|
2023-03-31 09:53:49 +00:00
|
|
|
pkt.MarshalSize(), t.udpMaxPayloadSize)
|
2022-12-13 20:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// decode from RTP
|
2023-05-14 12:18:03 +00:00
|
|
|
if hasNonRTSPReaders || t.decoder != nil {
|
2022-12-13 20:26:35 +00:00
|
|
|
if t.decoder == nil {
|
|
|
|
t.decoder = t.format.CreateDecoder()
|
|
|
|
}
|
|
|
|
|
2023-03-14 17:24:33 +00:00
|
|
|
frame, pts, err := t.decoder.Decode(pkt)
|
2022-12-13 20:26:35 +00:00
|
|
|
if err != nil {
|
2022-12-15 23:50:47 +00:00
|
|
|
if err == rtpvp8.ErrMorePacketsNeeded {
|
|
|
|
return nil
|
|
|
|
}
|
2022-12-13 20:26:35 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-03-10 11:44:59 +00:00
|
|
|
tunit.Frame = frame
|
2023-03-14 17:24:33 +00:00
|
|
|
tunit.PTS = pts
|
2022-12-13 20:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// route packet as is
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-04-25 16:13:51 +00:00
|
|
|
// encode into RTP
|
2023-03-10 11:44:59 +00:00
|
|
|
pkts, err := t.encoder.Encode(tunit.Frame, tunit.PTS)
|
2022-12-15 23:50:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-03-10 11:44:59 +00:00
|
|
|
tunit.RTPPackets = pkts
|
2023-04-25 16:13:51 +00:00
|
|
|
|
2022-12-15 23:50:47 +00:00
|
|
|
return nil
|
2022-12-13 20:26:35 +00:00
|
|
|
}
|
2023-05-14 12:18:03 +00:00
|
|
|
|
|
|
|
func (t *formatProcessorVP8) UnitForRTPPacket(pkt *rtp.Packet, ntp time.Time) Unit {
|
|
|
|
return &UnitVP8{
|
|
|
|
RTPPackets: []*rtp.Packet{pkt},
|
|
|
|
NTP: ntp,
|
|
|
|
}
|
|
|
|
}
|