mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 10:40:05 +08:00
删除多余代码逻辑
This commit is contained in:
parent
df4989cc38
commit
4d1a0e47c8
@ -445,11 +445,6 @@ void RtspPlayer::onWholeRtspPacket(Parser &parser) {
|
||||
}
|
||||
|
||||
void RtspPlayer::onRtpPacket(const char *data, uint64_t len) {
|
||||
if(len > 1600){
|
||||
//没有大于MTU的包
|
||||
WarnL << "大于MTU的RTP包:" << len << ",来自:" << get_peer_ip();
|
||||
return;
|
||||
}
|
||||
int trackIdx = -1;
|
||||
uint8_t interleaved = data[1];
|
||||
if(interleaved %2 ==0){
|
||||
|
@ -186,11 +186,7 @@ void RtspSession::onRtpPacket(const char *data, uint64_t len) {
|
||||
if(!_pushSrc){
|
||||
return;
|
||||
}
|
||||
if(len > 1600){
|
||||
//没有大于MTU的包
|
||||
WarnL << "大于MTU的RTP包:" << len << ",来自:" << get_peer_ip();
|
||||
return;
|
||||
}
|
||||
|
||||
int trackIdx = -1;
|
||||
uint8_t interleaved = data[1];
|
||||
if(interleaved %2 == 0){
|
||||
|
Loading…
Reference in New Issue
Block a user