mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-10-07 08:31:02 +08:00

Fixes #1103 gortsplib/v2 supports multiple formats inside a single track (media). This allows to apply the resizing algorithm to single formats inside medias. For instance, if a media contains a a proprietary format and an H264 format, and the latter has oversized packets, they can now be resized.
23 lines
511 B
Go
23 lines
511 B
Go
package core
|
|
|
|
import (
|
|
"github.com/aler9/gortsplib/v2/pkg/format"
|
|
)
|
|
|
|
type formatProcessor interface {
|
|
process(data, bool) error
|
|
}
|
|
|
|
func newFormatProcessor(forma format.Format, generateRTPPackets bool) (formatProcessor, error) {
|
|
switch forma := forma.(type) {
|
|
case *format.H264:
|
|
return newFormatProcessorH264(forma, generateRTPPackets)
|
|
|
|
case *format.MPEG4Audio:
|
|
return newFormatProcessorMPEG4Audio(forma, generateRTPPackets)
|
|
|
|
default:
|
|
return newFormatProcessorGeneric(forma, generateRTPPackets)
|
|
}
|
|
}
|