mirror of
https://github.com/pion/webrtc.git
synced 2025-10-05 15:16:52 +08:00
20 lines
458 B
Go
20 lines
458 B
Go
package webrtc
|
|
|
|
const (
|
|
// Unknown defines default public constant to use for "enum" like struct
|
|
// comparisons when no value was defined.
|
|
Unknown = iota
|
|
unknownStr = "unknown"
|
|
ssrcStr = "ssrc"
|
|
|
|
// Equal to UDP MTU
|
|
receiveMTU = 1460
|
|
|
|
// simulcastProbeCount is the amount of RTP Packets
|
|
// that handleUndeclaredSSRC will read and try to dispatch from
|
|
// mid and rid values
|
|
simulcastProbeCount = 10
|
|
|
|
mediaSectionApplication = "application"
|
|
)
|