-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Skip padding packet for simulcast probe #2655
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #2655 +/- ##
=======================================
Coverage 76.37% 76.37%
=======================================
Files 87 87
Lines 9895 9905 +10
=======================================
+ Hits 7557 7565 +8
- Misses 1866 1868 +2
Partials 472 472
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Skip padding packet for simulcast probe Fix rtx attributes panic for nil map
519c332
to
0e70684
Compare
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.
lgtm!
especially fixing that panic! I guess no one's using this path :)
PayloadType: 96, | ||
Padding: true, | ||
}, | ||
Payload: []byte{0x00, 0x02}, |
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.
@cnderrauber Sorry, missed this. This has two byte payload, but the check for padding only checks for Padding == true
&& payload length is zero. Here it is not. I am guessing this is not fulfilling rids because the extension is not set.
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.
Oops, please ignore me. The payload last byte is padding size. My bad. Sorry about the fake news.
Skip padding packet for simulcast probe
Fix rtx attributes panic for nil map