Fix inaccurate pacer drop and network drop percentages and add total FPS stat

This commit is contained in:
Cameron Gutman
2019-01-21 17:43:15 -08:00
parent c064f87889
commit 58b77cf589
2 changed files with 18 additions and 10 deletions

View File

@@ -12,12 +12,14 @@ typedef struct _VIDEO_STATS {
uint32_t receivedFrames;
uint32_t decodedFrames;
uint32_t renderedFrames;
uint32_t totalFrames;
uint32_t networkDroppedFrames;
uint32_t pacerDroppedFrames;
uint32_t totalReassemblyTime;
uint32_t totalDecodeTime;
uint32_t totalPacerTime;
uint32_t totalRenderTime;
float totalFps;
float receivedFps;
float decodedFps;
float renderedFps;