summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller/algorithm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipa/raspberrypi/controller/algorithm.cpp')
-rw-r--r--src/ipa/raspberrypi/controller/algorithm.cpp56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/ipa/raspberrypi/controller/algorithm.cpp b/src/ipa/raspberrypi/controller/algorithm.cpp
deleted file mode 100644
index a957fde5..00000000
--- a/src/ipa/raspberrypi/controller/algorithm.cpp
+++ /dev/null
@@ -1,56 +0,0 @@
-/* SPDX-License-Identifier: BSD-2-Clause */
-/*
- * Copyright (C) 2019, Raspberry Pi Ltd
- *
- * algorithm.cpp - ISP control algorithms
- */
-
-#include "algorithm.h"
-
-using namespace RPiController;
-
-int Algorithm::read([[maybe_unused]] const libcamera::YamlObject &params)
-{
- return 0;
-}
-
-void Algorithm::initialise()
-{
-}
-
-void Algorithm::switchMode([[maybe_unused]] CameraMode const &cameraMode,
- [[maybe_unused]] Metadata *metadata)
-{
-}
-
-void Algorithm::prepare([[maybe_unused]] Metadata *imageMetadata)
-{
-}
-
-void Algorithm::process([[maybe_unused]] StatisticsPtr &stats,
- [[maybe_unused]] Metadata *imageMetadata)
-{
-}
-
-/* For registering algorithms with the system: */
-
-namespace {
-
-std::map<std::string, AlgoCreateFunc> &algorithms()
-{
- static std::map<std::string, AlgoCreateFunc> algorithms;
- return algorithms;
-}
-
-} /* namespace */
-
-std::map<std::string, AlgoCreateFunc> const &RPiController::getAlgorithms()
-{
- return algorithms();
-}
-
-RegisterAlgorithm::RegisterAlgorithm(char const *name,
- AlgoCreateFunc createFunc)
-{
- algorithms()[std::string(name)] = createFunc;
-}