-
Notifications
You must be signed in to change notification settings - Fork 996
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
Fix bug that would cause VP9/AV1 simulcast not to be routed properly after a switch. #2101
Fix bug that would cause VP9/AV1 simulcast not to be routed properly after a switch. #2101
Conversation
@@ -228,6 +228,9 @@ class Av1DDAdaptiveSourceProjectionContext( | |||
|
|||
private fun frameIsNewSsrc(frame: Av1DDFrame): Boolean = lastAv1FrameProjection.av1Frame?.matchesSSRC(frame) != true | |||
|
|||
private fun frameIsProjectable(frame: Av1DDFrame): Boolean = | |||
frameIsProjectable(frame) || frame.index >= lastFrameNumberIndexResumption |
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.
Is this supposed to be frameIsNewSsrc instead to frameIsProjectable?
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.
You are right, thank you!
@@ -228,6 +228,9 @@ class Av1DDAdaptiveSourceProjectionContext( | |||
|
|||
private fun frameIsNewSsrc(frame: Av1DDFrame): Boolean = lastAv1FrameProjection.av1Frame?.matchesSSRC(frame) != true | |||
|
|||
private fun frameIsProjectable(frame: Av1DDFrame): Boolean = | |||
frameIsProjectable(frame) || frame.index >= lastFrameNumberIndexResumption |
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.
This doesn't seem right. Does it need to call frameIsNewSsrc
like vp9?
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.
Damian also caught this...autocomplete error.
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #2101 +/- ##
============================================
- Coverage 44.23% 44.23% -0.01%
- Complexity 1927 1931 +4
============================================
Files 340 340
Lines 18823 18826 +3
Branches 2580 2580
============================================
+ Hits 8327 8328 +1
Misses 9639 9639
- Partials 857 859 +2
Continue to review full report in Codecov by Sentry.
|
No description provided.