From c397f2dcdc399b43cf150f8000e711fc20613deb Mon Sep 17 00:00:00 2001 From: deva Date: Wed, 15 Jun 2005 08:41:49 +0000 Subject: *** empty log message *** --- src/mainwindow.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/mainwindow.cc b/src/mainwindow.cc index 2845830..1493506 100644 --- a/src/mainwindow.cc +++ b/src/mainwindow.cc @@ -31,6 +31,9 @@ /* * $Log$ + * Revision 1.32 2005/06/15 08:41:49 deva + * *** empty log message *** + * * Revision 1.31 2005/06/15 08:34:28 deva * *** empty log message *** * @@ -319,7 +322,7 @@ void MainWindow::taskbar_update() watchdog++; if(recording) { - if((watchdog % 300 == 0) || ((camera->getQueueLength() > 1000) && (watchdog % 10 == 0))) + if((watchdog % 300 == 0) || ((camera->getQueueLength() > 1000) && (watchdog % 50 == 0))) info->log("Queue length: %d (active)", camera->getQueueLength()); gettimeofday(&time, NULL); @@ -331,7 +334,7 @@ void MainWindow::taskbar_update() m = s / 60; s -= m * 60; } else { - if(watchdog % 300 == 0) + if((camera->getQueueLength() > 0) && (watchdog % 50 == 0)) info->log("Queue length: %d (passive)", camera->getQueueLength()); gettimeofday(&starttime, NULL); } -- cgit v1.2.3