mirror of
https://github.com/aler9/gortsplib
synced 2025-10-13 02:43:53 +08:00
11 lines
251 B
Go
11 lines
251 B
Go
// Package rtph264 contains a RTP/H264 decoder and encoder.
|
|
package rtph264
|
|
|
|
const (
|
|
rtpVersion = 0x02
|
|
rtpClockRate = 90000 // h264 always uses 90khz
|
|
|
|
// with a 250 Mbps H264 video, the maximum NALU size is 2.2MB
|
|
maxNALUSize = 3 * 1024 * 1024
|
|
)
|