diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cc | 7 | 
1 files 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);    }  | 
