mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
修复pt覆盖失败的bug
This commit is contained in:
parent
e495dfca64
commit
33da2e28ec
@ -244,7 +244,7 @@ namespace RTC
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::memcpy(EncryptBuffer, *data, *len);
|
std::memcpy(EncryptBuffer, *data, *len);
|
||||||
EncryptBuffer[1] |= (pt & 0x7F);
|
EncryptBuffer[1] = (pt & 0x7F) | (EncryptBuffer[1] & 0x80);
|
||||||
|
|
||||||
srtp_err_status_t err =
|
srtp_err_status_t err =
|
||||||
srtp_protect(this->session, static_cast<void*>(EncryptBuffer), reinterpret_cast<int*>(len));
|
srtp_protect(this->session, static_cast<void*>(EncryptBuffer), reinterpret_cast<int*>(len));
|
||||||
|
Loading…
Reference in New Issue
Block a user