From 911920dc719e1d99d22f58e6bbb18eb36b131550 Mon Sep 17 00:00:00 2001 From: stan Date: Sun, 11 Nov 2007 15:57:54 +0000 Subject: [PATCH] Fixed issue with single frame streaming not working. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2234 e3e1d417-86f3-4887-817a-d78f3d33393f --- src/zm_monitor.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/zm_monitor.cpp b/src/zm_monitor.cpp index 5e5188eb4..8653b99d3 100644 --- a/src/zm_monitor.cpp +++ b/src/zm_monitor.cpp @@ -2899,6 +2899,13 @@ void MonitorStream::sendFrame( Image *image, struct timeval *timestamp ) void MonitorStream::runStream() { + if ( type == STREAM_SINGLE ) + { + // Not yet migrated over to stream class + monitor->SingleImage( scale ); + return; + } + openComms(); checkInitialised();