summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller/focus_status.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipa/raspberrypi/controller/focus_status.h')
-rw-r--r--src/ipa/raspberrypi/controller/focus_status.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/ipa/raspberrypi/controller/focus_status.h b/src/ipa/raspberrypi/controller/focus_status.h
deleted file mode 100644
index ace2fe2c..00000000
--- a/src/ipa/raspberrypi/controller/focus_status.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/* SPDX-License-Identifier: BSD-2-Clause */
-/*
- * Copyright (C) 2020, Raspberry Pi (Trading) Limited
- *
- * focus_status.h - focus measurement status
- */
-#pragma once
-
-#include <linux/bcm2835-isp.h>
-
-// The focus algorithm should post the following structure into the image's
-// "focus.status" metadata. Recall that it's only reporting focus (contrast)
-// measurements, it's not driving any kind of auto-focus algorithm!
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-struct FocusStatus {
- unsigned int num;
- uint32_t focus_measures[FOCUS_REGIONS];
-};
-
-#ifdef __cplusplus
-}
-#endif