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.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/ipa/raspberrypi/controller/pdaf_data.h b/src/ipa/raspberrypi/controller/pdaf_data.h
deleted file mode 100644
index 470510f2..00000000
--- a/src/ipa/raspberrypi/controller/pdaf_data.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/* SPDX-License-Identifier: BSD-2-Clause */
-/*
- * Copyright (C) 2022, Raspberry Pi Ltd
- *
- * pdaf_data.h - PDAF Metadata
- */
-#pragma once
-
-#include <stdint.h>
-
-#include "region_stats.h"
-
-namespace RPiController {
-
-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 */