From 5bf88cfe9607ad8cc42d59162823994b91ac4e11 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 20 Aug 2018 18:57:11 -0700 Subject: [PATCH] Fix Mac build --- .../video/ffmpeg-renderers/pacer/displaylinkvsyncsource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/streaming/video/ffmpeg-renderers/pacer/displaylinkvsyncsource.cpp b/app/streaming/video/ffmpeg-renderers/pacer/displaylinkvsyncsource.cpp index 17a89b8c..da8491bd 100644 --- a/app/streaming/video/ffmpeg-renderers/pacer/displaylinkvsyncsource.cpp +++ b/app/streaming/video/ffmpeg-renderers/pacer/displaylinkvsyncsource.cpp @@ -34,7 +34,7 @@ DisplayLinkVsyncSource::displayLinkOutputCallback( // interval, even if many ms prior, we can safely use the current host time // and get a consistent callback for each v-sync. This reduces video latency // by at least 1 frame vs. rendering with the actual vsyncTime. - me->m_Pacer->vsyncCallback(500 / m_DisplayFps); + me->m_Pacer->vsyncCallback(500 / me->m_DisplayFps); return kCVReturnSuccess; }