Hi!
What is a value that method ‘getPackageLoss’ return? Because it’s not equal to the percentage that Zoom Application displays.
How can I convert this value to the percentage?
let statistics = ZoomSDK.shared()?.getSettingService()?.getStatisticsSetting()
let video = statistics?.getVideoASStatisticsInfo(true)
let videoPackageLoss = video?.getPackageLoss(false, max: true)
let share = statistics?.getVideoASStatisticsInfo(false)
let sharePackageLoss = share?.getPackageLoss(false, max: true)
Thanks!