diff options
-rw-r--r-- | src/ipa/rkisp1/algorithms/af.cpp | 1 | ||||
-rw-r--r-- | src/ipa/rkisp1/algorithms/af.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/ipa/rkisp1/algorithms/af.cpp b/src/ipa/rkisp1/algorithms/af.cpp index a0d914e0..e2769e69 100644 --- a/src/ipa/rkisp1/algorithms/af.cpp +++ b/src/ipa/rkisp1/algorithms/af.cpp @@ -128,6 +128,7 @@ void Af::updateCurrentWindow(const Rectangle &window) { currentWindow_ = window; updateAfwindow_ = true; + setFramesToSkip(kWindowWaitFrames); } REGISTER_IPA_ALGORITHM(Af, "Af") diff --git a/src/ipa/rkisp1/algorithms/af.h b/src/ipa/rkisp1/algorithms/af.h index 36d0c9b0..b2da4890 100644 --- a/src/ipa/rkisp1/algorithms/af.h +++ b/src/ipa/rkisp1/algorithms/af.h @@ -38,6 +38,7 @@ private: bool updateAfwindow_ = false; static constexpr uint32_t kFLensWaitFrames = 2; + static constexpr uint32_t kWindowWaitFrames = 1; }; } /* namespace libcamera::ipa::rkisp1::algorithms */ |