From dd9b67ec9f92759b4fe005a527704fbc632b8b65 Mon Sep 17 00:00:00 2001 From: baosiyuan Date: Thu, 19 Jun 2025 14:53:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8E=A5=E5=8F=A3=E4=B8=8D?= =?UTF-8?q?=E4=B8=80=E8=87=B4=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: baosiyuan Change-Id: Ie943d9f6b5cdb0963e67d9ba15a7ee68c69fad20 --- .../include/image/image_packer_native.h | 2 +- .../include/image/image_source_native.h | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/multimedia/image_framework/include/image/image_packer_native.h b/multimedia/image_framework/include/image/image_packer_native.h index 7149c5fd80d..14ba9ee6af7 100644 --- a/multimedia/image_framework/include/image/image_packer_native.h +++ b/multimedia/image_framework/include/image/image_packer_native.h @@ -489,7 +489,7 @@ Image_ErrorCode OH_ImagePackerNative_Release(OH_ImagePackerNative *imagePacker); * {@link IMAGE_PACKER_INVALID_PARAMETER} if supportedFormats or length is empty. * @since 20 */ -Image_ErrorCode OH_ImagePackerNative_GetSupportedFormats(Image_MimeType **supportedFormats, size_t *length); +Image_ErrorCode OH_ImagePackerNative_GetSupportedFormats(Image_MimeType** supportedFormats, size_t* length); #ifdef __cplusplus }; diff --git a/multimedia/image_framework/include/image/image_source_native.h b/multimedia/image_framework/include/image/image_source_native.h index e4b854960bf..588718d156a 100644 --- a/multimedia/image_framework/include/image/image_source_native.h +++ b/multimedia/image_framework/include/image/image_source_native.h @@ -378,22 +378,22 @@ Image_ErrorCode OH_DecodingOptions_SetDesiredDynamicRange(OH_DecodingOptions *op * @brief Obtains the color space set in the decoding options. * * @param options Pointer to the decoding options. - * @param colorSpace Pointer to the color space, {@link ColorSpaceName}. + * @param colorSpace Pointer to the color space. * @return Returns one of the following result codes: - * {@link IMAGE_SUCCESS}: if the execution is successful. - * {@link IMAGE_SOURCE_INVALID_PARAMETER}: if options or colorSpace is null pointer. + * {@link IMAGE_SUCCESS} if the execution is successful. + * {@link IMAGE_SOURCE_INVALID_PARAMETER} if options or colorSpace is null pointer. * @since 20 */ Image_ErrorCode OH_DecodingOptions_GetDesiredColorSpace(OH_DecodingOptions *options, int32_t *colorSpace); /** - * @brief Sets desired color space for decoding options. + * @brief Sets the desired color space for the decoding options. * * @param options Pointer to the decoding options. - * @param colorSpace Desired color space, {@link ColorSpaceName}. + * @param colorSpace Desired color space. * @return Returns one of the following result codes: - * {@link IMAGE_SUCCESS}: if the execution is successful. - * {@link IMAGE_SOURCE_INVALID_PARAMETER}: if options is a null pointer or colorSpace is not supported. + * {@link IMAGE_SUCCESS} if the execution is successful. + * {@link IMAGE_SOURCE_INVALID_PARAMETER} if options is a null pointer or colorSpace is not supported. * @since 20 */ Image_ErrorCode OH_DecodingOptions_SetDesiredColorSpace(OH_DecodingOptions *options, int32_t colorSpace); @@ -695,7 +695,7 @@ Image_ErrorCode OH_DecodingOptionsForPicture_Release(OH_DecodingOptionsForPictur * {@link IMAGE_SOURCE_INVALID_PARAMETER} if supportedFormats or length is empty. * @since 20 */ -Image_ErrorCode OH_ImageSourceNative_GetSupportedFormats(Image_MimeType **supportedFormats, size_t *length); +Image_ErrorCode OH_ImageSourceNative_GetSupportedFormats(Image_MimeType** supportedFormats, size_t* length); #ifdef __cplusplus }; #endif -- Gitee