From f2d83de3d55bc85e798f15d5fe4d8593ed0d6a49 Mon Sep 17 00:00:00 2001 From: Bobie Date: Tue, 2 Apr 2024 11:15:37 +0800 Subject: [PATCH] fix path of yuv Signed-off-by: Bobie --- common/src/utils/dcamera_utils_tools.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/utils/dcamera_utils_tools.cpp b/common/src/utils/dcamera_utils_tools.cpp index c809cc6d..32ac7c1c 100644 --- a/common/src/utils/dcamera_utils_tools.cpp +++ b/common/src/utils/dcamera_utils_tools.cpp @@ -29,9 +29,9 @@ namespace OHOS { namespace DistributedHardware { namespace { #if (defined(__aarch64__) || defined(__x86_64__)) -const std::string YUV_LIB_PATH = "/system/lib64/public/libyuv.z.so"; +const std::string YUV_LIB_PATH = "/system/lib64/chipset-pub-sdk/libyuv.z.so"; #else -const std::string YUV_LIB_PATH = "/system/lib/public/libyuv.z.so"; +const std::string YUV_LIB_PATH = "/system/lib/chipset-pub-sdk/libyuv.z.so"; #endif const std::string GET_IMAGE_CONVERTER_FUNC = "GetImageConverter"; } -- Gitee