Minor video stats improvements

This commit is contained in:
Cameron Gutman
2020-11-01 14:09:05 -06:00
parent 0eac28a74f
commit 8ffee9e10f
2 changed files with 11 additions and 2 deletions

View File

@@ -142,12 +142,11 @@
}
float interval = stats.endTime - stats.startTime;
return [NSString stringWithFormat:@"Video stream: %dx%d %.2f FPS (Codec: %@)\nIncoming frame rate from network: %.2f FPS\nFrames dropped by your network connection: %.2f%%\n",
return [NSString stringWithFormat:@"Video stream: %dx%d %.2f FPS (Codec: %@)\nFrames dropped by your network connection: %.2f%%\n",
_config.width,
_config.height,
stats.totalFrames / interval,
[_connection getActiveCodecName],
stats.receivedFrames / interval,
stats.networkDroppedFrames / interval];
}