Merge branch 'master' of github.com:ZoneMinder/zoneminder
This commit is contained in:
commit
bc6ba0a772
|
@ -174,7 +174,7 @@ Image::Image(int p_width, int p_height, int p_colours, int p_subpixelorder, uint
|
|||
} else {
|
||||
AllocImgBuffer(size);
|
||||
}
|
||||
if (!subpixelorder) {
|
||||
if (!subpixelorder and colours>1) {
|
||||
// Default to RGBA when no subpixelorder is specified.
|
||||
subpixelorder = ZM_SUBPIX_ORDER_RGBA;
|
||||
}
|
||||
|
@ -205,7 +205,7 @@ Image::Image(int p_width, int p_linesize, int p_height, int p_colours, int p_sub
|
|||
} else {
|
||||
AllocImgBuffer(size);
|
||||
}
|
||||
if (!subpixelorder) {
|
||||
if (!subpixelorder and colours>1) {
|
||||
// Default to RGBA when no subpixelorder is specified.
|
||||
subpixelorder = ZM_SUBPIX_ORDER_RGBA;
|
||||
}
|
||||
|
|
|
@ -252,6 +252,7 @@ int main(int argc, char *argv[]) {
|
|||
monitor->Id());
|
||||
zmDbDo(sql);
|
||||
|
||||
int sleep_time = 0;
|
||||
while (monitor->PrimeCapture() <= 0) {
|
||||
if (prime_capture_log_count % 60) {
|
||||
logPrintf(Logger::ERROR+monitor->Importance(),
|
||||
|
@ -261,7 +262,8 @@ int main(int argc, char *argv[]) {
|
|||
}
|
||||
prime_capture_log_count ++;
|
||||
if (zm_terminate) break;
|
||||
sleep(1);
|
||||
if (sleep_time < 60) sleep_time++;
|
||||
sleep(sleep_time);
|
||||
}
|
||||
if (zm_terminate) break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue