From 22e712af5a651dfb5505455e4b2c44def7470b80 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 22 Jan 2019 20:55:58 -0800 Subject: [PATCH] Add v-sync text to stats overlay --- app/streaming/video/ffmpeg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/streaming/video/ffmpeg.cpp b/app/streaming/video/ffmpeg.cpp index 5357c150..a925c5df 100644 --- a/app/streaming/video/ffmpeg.cpp +++ b/app/streaming/video/ffmpeg.cpp @@ -283,7 +283,7 @@ void FFmpegVideoDecoder::stringifyVideoStats(VIDEO_STATS& stats, char* output) "Average receive time: %.2f ms\n" "Average decoding time: %.2f ms\n" "Average frame queue delay: %.2f ms\n" - "Average rendering time: %.2f ms\n", + "Average rendering time (including monitor V-sync latency): %.2f ms\n", (float)stats.networkDroppedFrames / stats.totalFrames * 100, (float)stats.pacerDroppedFrames / stats.decodedFrames * 100, (float)stats.totalReassemblyTime / stats.receivedFrames,