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
5
trunk/3rdparty/srs-bench/vendor/github.com/pion/rtcp/packet.go
generated
vendored
5
trunk/3rdparty/srs-bench/vendor/github.com/pion/rtcp/packet.go
generated
vendored
|
@ -87,6 +87,8 @@ func unmarshal(rawData []byte) (packet Packet, bytesprocessed int, err error) {
|
|||
packet = new(RapidResynchronizationRequest)
|
||||
case FormatTCC:
|
||||
packet = new(TransportLayerCC)
|
||||
case FormatCCFB:
|
||||
packet = new(CCFeedbackReport)
|
||||
default:
|
||||
packet = new(RawPacket)
|
||||
}
|
||||
|
@ -105,6 +107,9 @@ func unmarshal(rawData []byte) (packet Packet, bytesprocessed int, err error) {
|
|||
packet = new(RawPacket)
|
||||
}
|
||||
|
||||
case TypeExtendedReport:
|
||||
packet = new(ExtendedReport)
|
||||
|
||||
default:
|
||||
packet = new(RawPacket)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue