From a9379e5813ef5598dfbdeb5462fda063fe8872d7 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Fri, 10 Sep 2021 10:58:06 -0400 Subject: [PATCH] Need to increase frame_count or else frame_count%frame_mod will never == 0 --- src/zm_monitorstream.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/zm_monitorstream.cpp b/src/zm_monitorstream.cpp index 4e5e96f4a..067946eb7 100644 --- a/src/zm_monitorstream.cpp +++ b/src/zm_monitorstream.cpp @@ -751,6 +751,8 @@ void MonitorStream::runStream() { } // end if actual_delta_time > 5 } // end if change in zoom } // end if paused or not + } else { + frame_count++; } // end if should send frame if (buffered_playback && !paused) {