forked from Github/frigate
Avoid divide by zero in shm_frame_count (#14750)
This commit is contained in:
@@ -512,6 +512,9 @@ class FrigateApp:
|
||||
1,
|
||||
)
|
||||
|
||||
if cam_total_frame_size == 0.0:
|
||||
return 0
|
||||
|
||||
shm_frame_count = min(50, int(available_shm / (cam_total_frame_size)))
|
||||
|
||||
logger.debug(
|
||||
|
||||
Reference in New Issue
Block a user