Add warning if no key frames can be received in 10 seconds

This commit is contained in:
Cameron Gutman
2020-08-29 21:21:46 -07:00
parent e445989ec7
commit bf437669fb
2 changed files with 6 additions and 1 deletions

View File

@@ -258,6 +258,11 @@
message = @"No video received from host. Check the host PC's firewall and port forwarding rules.";
break;
case ML_ERROR_NO_VIDEO_FRAME:
title = @"Connection Error";
message = @"Your network connection isn't performing well. Reduce your video bitrate setting or try a faster connection.";
break;
default:
title = @"Connection Terminated";
message = @"The connection was terminated";