Fixed compile error

This commit is contained in:
WolverinDEV 2020-11-22 16:24:53 +01:00
parent 0fc138598b
commit 83a4c6c0f4

View file

@ -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 {