Skip to content

Commit

Permalink
Fix netcam high resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Dave committed Aug 1, 2024
1 parent f48a59f commit 1117aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/motion_loop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ int mlp_cam_next(ctx_dev *cam, ctx_image_data *img_data)
retcd = cam->netcam->next(img_data);
if ((retcd == CAPTURE_SUCCESS) &&
(cam->netcam_high != nullptr)) {
retcd = cam->netcam->next(img_data);
retcd = cam->netcam_high->next(img_data);
}
cam->rotate->process(img_data);
} else if (cam->camera_type == CAMERA_TYPE_V4L2) {
Expand Down

0 comments on commit 1117aff

Please sign in to comment.