Fixed compile error
This commit is contained in:
parent
0fc138598b
commit
83a4c6c0f4
1 changed files with 3 additions and 2 deletions
|
@ -127,8 +127,9 @@ export class RtpVideoConnection implements VideoConnection {
|
||||||
return this.broadcasts[type] ? this.broadcasts[type].state : VideoBroadcastState.Stopped;
|
return this.broadcasts[type] ? this.broadcasts[type].state : VideoBroadcastState.Stopped;
|
||||||
}
|
}
|
||||||
|
|
||||||
getBroadcastStatistics(type: VideoBroadcastType): Promise<VideoBroadcastStatistics | undefined> {
|
async getBroadcastStatistics(type: VideoBroadcastType): Promise<VideoBroadcastStatistics | undefined> {
|
||||||
return this.rtcConnection.getVideoBroadcastStatistics(type === "camera" ? "video" : "video-screen");
|
/* TODO! */
|
||||||
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
getBroadcastingSource(type: VideoBroadcastType): VideoSource | undefined {
|
getBroadcastingSource(type: VideoBroadcastType): VideoSource | undefined {
|
||||||
|
|
Loading…
Add table
Reference in a new issue