-
Notifications
You must be signed in to change notification settings - Fork 396
feat(plugin-meetings): add AV1 codec support and related constants #4816
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
base: next
Are you sure you want to change the base?
Changes from all commits
f7daf51
4e13054
f839cce
3f202df
c036a6f
62f347a
d677d63
f59d9fd
4b4f496
1de0d0d
1decb0d
9266e76
ee151d0
1010534
3d78c78
f3f1dc8
9c223e4
7e9d411
b2a31c6
cb39af8
0571d52
c9d9c38
8c55ea2
b81cfe3
01bb1db
1b0e493
1d951c2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| export const AV1_CODEC_PARAMETERS = { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does the
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It does not at 2.23.3 export type AV1EncodingParams = BaseVideoEncodingParams & {
levelIdx?: number;
tier?: number;
maxPicSize?: number;
maxDecodeRate?: number;
}; |
||
| '90p': { | ||
| levelIdx: 0, | ||
| tier: 0, | ||
| maxWidth: 160, | ||
| maxHeight: 90, | ||
| maxPicSize: 160 * 90, | ||
| maxDecodeRate: 5_529_600, | ||
| }, | ||
| '180p': { | ||
| levelIdx: 0, | ||
| tier: 0, | ||
| maxWidth: 320, | ||
| maxHeight: 180, | ||
| maxPicSize: 320 * 180, | ||
| maxDecodeRate: 5_529_600, | ||
| }, | ||
| '360p': { | ||
| levelIdx: 1, | ||
| tier: 0, | ||
| maxWidth: 640, | ||
| maxHeight: 360, | ||
| maxPicSize: 640 * 360, | ||
| maxDecodeRate: 10_454_400, | ||
| }, | ||
| '540p': { | ||
| levelIdx: 4, | ||
| tier: 0, | ||
| maxWidth: 960, | ||
| maxHeight: 540, | ||
| maxPicSize: 960 * 540, | ||
| maxDecodeRate: 24_969_600, | ||
| }, | ||
| '720p': { | ||
| levelIdx: 5, | ||
| tier: 0, | ||
| maxWidth: 1280, | ||
| maxHeight: 720, | ||
| maxPicSize: 1280 * 720, | ||
| maxDecodeRate: 39_938_400, | ||
| }, | ||
| '1080p': { | ||
| levelIdx: 8, | ||
| tier: 0, | ||
| maxWidth: 1920, | ||
| maxHeight: 1080, | ||
| maxPicSize: 1920 * 1080, | ||
| maxDecodeRate: 77_856_768, | ||
| }, | ||
| }; | ||
|
|
||
| export const H264_CODEC_PARAMETERS = { | ||
| maxFs: 8192, | ||
| maxFps: 3000, | ||
| maxMbps: 245760, | ||
| }; | ||
Uh oh!
There was an error while loading. Please reload this page.