summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller/pdaf_data.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipa/raspberrypi/controller/pdaf_data.h')
-rw-r--r--src/ipa/raspberrypi/controller/pdaf_data.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/src/ipa/raspberrypi/controller/pdaf_data.h b/src/ipa/raspberrypi/controller/pdaf_data.h
index 03c00d72..470510f2 100644
--- a/src/ipa/raspberrypi/controller/pdaf_data.h
+++ b/src/ipa/raspberrypi/controller/pdaf_data.h
@@ -2,20 +2,23 @@
/*
* Copyright (C) 2022, Raspberry Pi Ltd
*
- * pdaf_data.h - PDAF Metadata; for now this is
- * largely based on IMX708's PDAF "Type 1" output.
+ * pdaf_data.h - PDAF Metadata
*/
#pragma once
#include <stdint.h>
-#define PDAF_DATA_ROWS 12
-#define PDAF_DATA_COLS 16
+#include "region_stats.h"
-struct PdafData {
- /* Confidence values, in raster order, in arbitrary units */
- uint16_t conf[PDAF_DATA_ROWS][PDAF_DATA_COLS];
+namespace RPiController {
- /* Phase error, in raster order, in s11 Q4 format (S.6.4) */
- int16_t phase[PDAF_DATA_ROWS][PDAF_DATA_COLS];
+struct PdafData {
+ /* Confidence, in arbitrary units */
+ uint16_t conf;
+ /* Phase error, in s16 Q4 format (S.11.4) */
+ int16_t phase;
};
+
+using PdafRegions = RegionStats<PdafData>;
+
+} /* namespace RPiController */