From e25b7c0cae04ddacc462f1acddb44a46f454cdee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=95=E5=85=89=E8=80=80?= Date: Fri, 5 Sep 2025 15:37:03 +0800 Subject: [PATCH 1/2] modify_log_20250905 update001 Signed-off-by heguangyao MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 何光耀 --- frameworks/innerkitsimpl/codec/src/image_source.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/frameworks/innerkitsimpl/codec/src/image_source.cpp b/frameworks/innerkitsimpl/codec/src/image_source.cpp index 66307c1de..ae4d673f0 100644 --- a/frameworks/innerkitsimpl/codec/src/image_source.cpp +++ b/frameworks/innerkitsimpl/codec/src/image_source.cpp @@ -1049,10 +1049,11 @@ unique_ptr ImageSource::CreatePixelMapExtended(uint32_t index, const D NotifyDecodeEvent(decodeListeners_, DecodeEvent::EVENT_COMPLETE_DECODE, nullptr); } if ("image/gif" != sourceInfo_.encodedFormat && "image/webp" != sourceInfo_.encodedFormat) { - IMAGE_LOGD("CreatePixelMapExtended success, imageId:%{public}lu, desiredSize: (%{public}d, %{public}d)," - "imageSize: (%{public}d, %{public}d), hdrType : %{public}d, cost %{public}lu us", - static_cast(imageId_), opts.desiredSize.width, opts.desiredSize.height, info.size.width, - info.size.height, context.hdrType, static_cast(GetNowTimeMicroSeconds() - decodeStartTime)); + IMAGE_LOGI("CreatePixelmap success, id:%{public}lu, dstSize: (%{public}d, %{public}d), srcSize: " + "(%{public}d, %{public}d), dstHdr: %{public}d, srcHdr: %{public}d, memType: %{public}d, " + "cost %{public}lu us", static_cast(imageId_), opts.desiredSize.width, + opts.desiredSize.height, info.size.width, info.size.height, opts.desiredDynamicRange, context.hdrType, + pixelMap->GetAllocatorType(), static_cast(GetNowTimeMicroSeconds() - decodeStartTime)); } { -- Gitee From a47da90f721392118912fd411aed17919f644f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=95=E5=85=89=E8=80=80?= Date: Fri, 5 Sep 2025 15:40:16 +0800 Subject: [PATCH 2/2] modify_log_20250905 update002 Signed-off-by heguangyao MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 何光耀 --- frameworks/innerkitsimpl/codec/src/image_source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/innerkitsimpl/codec/src/image_source.cpp b/frameworks/innerkitsimpl/codec/src/image_source.cpp index ae4d673f0..68f077254 100644 --- a/frameworks/innerkitsimpl/codec/src/image_source.cpp +++ b/frameworks/innerkitsimpl/codec/src/image_source.cpp @@ -1049,7 +1049,7 @@ unique_ptr ImageSource::CreatePixelMapExtended(uint32_t index, const D NotifyDecodeEvent(decodeListeners_, DecodeEvent::EVENT_COMPLETE_DECODE, nullptr); } if ("image/gif" != sourceInfo_.encodedFormat && "image/webp" != sourceInfo_.encodedFormat) { - IMAGE_LOGI("CreatePixelmap success, id:%{public}lu, dstSize: (%{public}d, %{public}d), srcSize: " + IMAGE_LOGI("CreatePixelMap success, id:%{public}lu, dstSize: (%{public}d, %{public}d), srcSize: " "(%{public}d, %{public}d), dstHdr: %{public}d, srcHdr: %{public}d, memType: %{public}d, " "cost %{public}lu us", static_cast(imageId_), opts.desiredSize.width, opts.desiredSize.height, info.size.width, info.size.height, opts.desiredDynamicRange, context.hdrType, -- Gitee