Add "frame" to shm frame names to avoid camera name issues (#15615)

This commit is contained in:
Josh Hawkins
2024-12-20 08:46:40 -06:00
committed by GitHub
parent ddfe8f3921
commit 78a013d63a
2 changed files with 2 additions and 2 deletions

View File

@@ -437,7 +437,7 @@ class FrigateApp:
# pre-create shms
for i in range(shm_frame_count):
frame_size = config.frame_shape_yuv[0] * config.frame_shape_yuv[1]
self.frame_manager.create(f"{config.name}_{i}", frame_size)
self.frame_manager.create(f"{config.name}_frame{i}", frame_size)
capture_process = util.Process(
target=capture_camera,