transport(output): fix high CPU usage with camera_out_enabled and no images

This commit is contained in:
Aleix Conchillo Flaqué
2024-05-30 10:18:43 -07:00
parent a5d42a526c
commit aecb9f5816
2 changed files with 6 additions and 0 deletions

View File

@@ -252,6 +252,8 @@ class BaseOutputTransport(FrameProcessor):
image = next(self._camera_images)
self._draw_image(image)
time.sleep(1.0 / self._params.camera_out_framerate)
else:
time.sleep(1.0 / self._params.camera_out_framerate)
except queue.Empty:
pass
except Exception as e: