From 4c660d64f64ae32384f6a163fa01639e26d54eae Mon Sep 17 00:00:00 2001 From: zhouxubo Date: Thu, 12 Jun 2025 15:22:18 +0800 Subject: [PATCH] add IsSupported interface Signed-off-by: zhouxubo --- framework/algorithm/common/algorithm_video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/algorithm/common/algorithm_video.cpp b/framework/algorithm/common/algorithm_video.cpp index 7a8422f..26ac275 100644 --- a/framework/algorithm/common/algorithm_video.cpp +++ b/framework/algorithm/common/algorithm_video.cpp @@ -63,7 +63,7 @@ bool VpeVideo::IsSupported(uint32_t type, const Format& parameter) return it->second(parameter); } -bool DetailEnhancerVideoFwk::IsSupported(void) +bool VpeVideo::IsSupported(void) { return true; }