golanggohlsrtmpwebrtcmedia-serverobs-studiortcprtmp-proxyrtmp-serverrtprtsprtsp-proxyrtsp-relayrtsp-serversrtstreamingwebrtc-proxy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.5 KiB
61 lines
1.5 KiB
// Package formatprocessor contains code to cleanup and normalize streams. |
|
package formatprocessor |
|
|
|
import ( |
|
"time" |
|
|
|
"github.com/bluenviron/gortsplib/v3/pkg/formats" |
|
"github.com/pion/rtp" |
|
|
|
"github.com/bluenviron/mediamtx/internal/logger" |
|
) |
|
|
|
const ( |
|
maxKeyFrameInterval = 10 * time.Second |
|
) |
|
|
|
// Processor cleans and normalizes streams. |
|
type Processor interface { |
|
// cleans and normalizes a data unit. |
|
Process(Unit, bool) error |
|
|
|
// returns an unit for the given RTP packet. |
|
UnitForRTPPacket(pkt *rtp.Packet, ntp time.Time) Unit |
|
} |
|
|
|
// New allocates a Processor. |
|
func New( |
|
udpMaxPayloadSize int, |
|
forma formats.Format, |
|
generateRTPPackets bool, |
|
log logger.Writer, |
|
) (Processor, error) { |
|
switch forma := forma.(type) { |
|
case *formats.H264: |
|
return newH264(udpMaxPayloadSize, forma, generateRTPPackets, log) |
|
|
|
case *formats.H265: |
|
return newH265(udpMaxPayloadSize, forma, generateRTPPackets, log) |
|
|
|
case *formats.VP8: |
|
return newVP8(udpMaxPayloadSize, forma, generateRTPPackets, log) |
|
|
|
case *formats.VP9: |
|
return newVP9(udpMaxPayloadSize, forma, generateRTPPackets, log) |
|
|
|
case *formats.AV1: |
|
return newAV1(udpMaxPayloadSize, forma, generateRTPPackets, log) |
|
|
|
case *formats.MPEG2Audio: |
|
return newMPEG2Audio(udpMaxPayloadSize, forma, generateRTPPackets, log) |
|
|
|
case *formats.MPEG4Audio: |
|
return newMPEG4Audio(udpMaxPayloadSize, forma, generateRTPPackets, log) |
|
|
|
case *formats.Opus: |
|
return newOpus(udpMaxPayloadSize, forma, generateRTPPackets, log) |
|
|
|
default: |
|
return newGeneric(udpMaxPayloadSize, forma, generateRTPPackets, log) |
|
} |
|
}
|
|
|