mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
修复rtp two byte ext解析相关bug: #1631
This commit is contained in:
parent
301cbf0a83
commit
7e58d91a57
@ -189,7 +189,7 @@ map<uint8_t/*id*/, RtpExt/*data*/> RtpExt::getExtValue(const RtpHeader *header)
|
|||||||
appendExt<RtpExtOneByte>(ret, ptr, end);
|
appendExt<RtpExtOneByte>(ret, ptr, end);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
if ((reserved & 0xFFF0) >> 4 == kTwoByteHeader) {
|
if (reserved & 0xFFF0 == kTwoByteHeader) {
|
||||||
appendExt<RtpExtTwoByte>(ret, ptr, end);
|
appendExt<RtpExtTwoByte>(ret, ptr, end);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user