-
Notifications
You must be signed in to change notification settings - Fork 995
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
Add support for the VLA RTP header extension #2263
Conversation
bgrozev
commented
Dec 12, 2024
- feat: Add BitReader utilities and tests.
- feat: Add a parser for the VLA RTP header extension.
- ref: Remove unused function.
- feat: Update layers with info found in VLA.
- feat: Add an option to use targetBitrate instead of measured bitrate for allocation
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'll want to make sure the VLA is forwarded by HeaderExtStripper on Octo links, but probably it's not needed to be sent down to endpoints?
) | ||
) | ||
} | ||
context("VP9 SVC (witt resolutions)") { |
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.
Typo, "witt"
) | ||
} | ||
context("Invalid VLAs") { | ||
parse(0x00) shouldBe emptyList() |
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.
Do we want to do anything to log about invalid VLAs?
if (layer.height > 0 && layer.height != res.height) { | ||
logger.warn("Updating layer height from ${layer.height} to ${res.height}") | ||
} | ||
if (layer.frameRate > 0.0 && layer.frameRate != res.maxFramerate.toDouble()) { |
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.
I feel like this one's likely to trigger a lot in practice, have you looked for it?