-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Worker: RtpStreamSend, do not send duplicated RTP packets #1683
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Fixes #1675 If the packet is already present in the retransmission buffer then discard it. Also fix a bug where we were sending packets higher than the MTU size.
There is nowhere specified we should do it.
ibc
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without looking at the code, should we also do this check in RtxStream::ReceivePacket()? In other words: are we checking if packets received via RTX are duplicated?
It does not apply. When receiving a RTX packet and calling |
What do you mean? |
The duplicated packet will reach |
True, now I got it |
Fixes #1675
If the packet is already present in the retransmission buffer then discard it.