From 9075f309adaaaf3e7205b3fc5ac2a23b2dee08e8 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 2 Oct 2018 20:12:53 -0700 Subject: [PATCH] Disable annoying stream stats prints --- 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 2a2b001c..068e9d7c 100644 --- a/app/streaming/video/ffmpeg.cpp +++ b/app/streaming/video/ffmpeg.cpp @@ -431,7 +431,7 @@ int FFmpegVideoDecoder::submitDecodeUnit(PDECODE_UNIT du) // Flip stats windows roughly every second if (m_ActiveWndVideoStats.receivedFrames == m_StreamFps) { -#ifdef QT_DEBUG +#if 0 VIDEO_STATS lastTwoWndStats = {}; addVideoStats(m_LastWndVideoStats, lastTwoWndStats); addVideoStats(m_ActiveWndVideoStats, lastTwoWndStats);