diff --git a/Classes/CallSideMenuView.m b/Classes/CallSideMenuView.m index c7b702f16..32a769338 100644 --- a/Classes/CallSideMenuView.m +++ b/Classes/CallSideMenuView.m @@ -145,6 +145,11 @@ [result appendString:[NSString stringWithFormat:@"Upload bandwidth: %1.1f kbits/s", linphone_call_stats_get_upload_bandwidth(stats)]]; [result appendString:@"\n"]; + if (stream == LinphoneStreamTypeVideo) { + [result appendString:[NSString stringWithFormat:@"Estimated download bandwidth: %1.1f kbits/s", + linphone_call_stats_get_estimated_download_bandwidth(stats)]]; + [result appendString:@"\n"]; + } [result appendString:[NSString stringWithFormat:@"ICE state: %@", [self.class iceToString:linphone_call_stats_get_ice_state(stats)]]];