Group calling: tell RingRTC about our rendered resolutions for perf
This commit is contained in:
parent
b30b83ed57
commit
d1866a0e5d
16 changed files with 211 additions and 7 deletions
|
@ -84,6 +84,13 @@ export interface GroupCallRemoteParticipantType {
|
|||
videoAspectRatio: number;
|
||||
}
|
||||
|
||||
// Similar to RingRTC's `VideoRequest` but without the `framerate` property.
|
||||
export interface GroupCallVideoRequest {
|
||||
demuxId: number;
|
||||
width: number;
|
||||
height: number;
|
||||
}
|
||||
|
||||
// Should match RingRTC's VideoFrameSource
|
||||
export interface VideoFrameSource {
|
||||
receiveVideoFrame(buffer: ArrayBuffer): [number, number] | undefined;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue