mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
TEST: Upgrade pion to v3.2.9. (#3567)
------ Co-authored-by: chundonglinlin <chundonglinlin@163.com>
This commit is contained in:
parent
104cf14d68
commit
df854339ea
1383 changed files with 118469 additions and 41421 deletions
6
trunk/3rdparty/srs-bench/vendor/github.com/pion/rtcp/header.go
generated
vendored
6
trunk/3rdparty/srs-bench/vendor/github.com/pion/rtcp/header.go
generated
vendored
|
@ -16,6 +16,7 @@ const (
|
|||
TypeApplicationDefined PacketType = 204 // RFC 3550, 6.7 (unimplemented)
|
||||
TypeTransportSpecificFeedback PacketType = 205 // RFC 4585, 6051
|
||||
TypePayloadSpecificFeedback PacketType = 206 // RFC 4585, 6.3
|
||||
TypeExtendedReport PacketType = 207 // RFC 3611
|
||||
|
||||
)
|
||||
|
||||
|
@ -26,9 +27,10 @@ const (
|
|||
FormatFIR uint8 = 4
|
||||
FormatTLN uint8 = 1
|
||||
FormatRRR uint8 = 5
|
||||
FormatCCFB uint8 = 11
|
||||
FormatREMB uint8 = 15
|
||||
|
||||
//https://tools.ietf.org/html/draft-holmer-rmcat-transport-wide-cc-extensions-01#page-5
|
||||
// https://tools.ietf.org/html/draft-holmer-rmcat-transport-wide-cc-extensions-01#page-5
|
||||
FormatTCC uint8 = 15
|
||||
)
|
||||
|
||||
|
@ -48,6 +50,8 @@ func (p PacketType) String() string {
|
|||
return "TSFB"
|
||||
case TypePayloadSpecificFeedback:
|
||||
return "PSFB"
|
||||
case TypeExtendedReport:
|
||||
return "XR"
|
||||
default:
|
||||
return string(p)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue