From 579ca4c2b1da989989a10c2209024c3ff2a181d5 Mon Sep 17 00:00:00 2001 From: Bobie Date: Wed, 13 Mar 2024 11:39:38 +0800 Subject: [PATCH] modify the library 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 81080233..3cf52726 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/libyuv.z.so"; +const std::string YUV_LIB_PATH = "/system/lib64/platformsdk/libyuv.z.so"; #else -const std::string YUV_LIB_PATH = "/system/lib/libyuv.z.so"; +const std::string YUV_LIB_PATH = "/system/lib/platformsdk/libyuv.z.so"; #endif const std::string GET_IMAGE_CONVERTER_FUNC = "GetImageConverter"; } -- Gitee