From 2fe325efe71e67a41763d81fc95864337475d045 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 11 Jan 2021 13:38:22 -0500 Subject: [PATCH] further disable rtsp_server --- src/zmc.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/zmc.cpp b/src/zmc.cpp index c23c7a4d4..a95bb48b5 100644 --- a/src/zmc.cpp +++ b/src/zmc.cpp @@ -397,9 +397,11 @@ int main(int argc, char *argv[]) { analysis_threads[i]->stop(); } #if HAVE_RTSP_SERVER +#if 0 if ( rtsp_server_threads ) { rtsp_server_threads[i]->stop(); } +#endif #endif } @@ -416,6 +418,7 @@ int main(int argc, char *argv[]) { } // end foreach monitor delete [] analysis_threads; #if HAVE_RTSP_SERVER +#if 0 if ( rtsp_server_threads ) { for ( int i = 0; i < n_monitors; i++ ) { rtsp_server_threads[i]->join();; @@ -426,8 +429,7 @@ int main(int argc, char *argv[]) { rtsp_server_threads = nullptr; } #endif - - +#endif delete [] alarm_capture_delays; delete [] capture_delays; delete [] last_capture_times;