From: jiyong.min Date: Mon, 13 May 2019 00:59:59 +0000 (+0900) Subject: Fix typo X-Git-Tag: submit/tizen/20190529.045235~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=58d42a6a960e973091c08f36793c5aad464683f2;p=platform%2Fcore%2Fapi%2Fimage-util.git Fix typo Change-Id: I7436100bf9eefe5543e94a2e09f999ffe0fa8093 --- diff --git a/include/image_util.h b/include/image_util.h old mode 100755 new mode 100644 index fb1bfde..c55ba7b --- a/include/image_util.h +++ b/include/image_util.h @@ -116,7 +116,7 @@ int image_util_transform_create(transformation_h *handle); * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * * -* @remarks The value returned will be IMAGE_UTIL_ERROR_NOT_SUPPORTED, if H/W acceleration doesn't support on the device. +* @remarks The value returned will be #IMAGE_UTIL_ERROR_NOT_SUPPORTED, if H/W acceleration doesn't support on the device. * * @param[in] handle The handle of image util * @param[in] mode Set @c true, user can use the hardware acceleration\n @@ -164,7 +164,7 @@ int image_util_transform_set_colorspace(transformation_h handle, image_util_colo * @brief Sets the information of the resizing. * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * -* @remarks image_util_transform_set_resolution and image_util_transform_set_crop_area can't do that at the same time. +* @remarks image_util_transform_set_resolution() and image_util_transform_set_crop_area() can't do that at the same time. * * @param[in] handle The handle of image util transform * @param[in] width The width of image buffer @@ -211,7 +211,7 @@ int image_util_transform_set_rotation(transformation_h handle, image_util_rotati * @brief Sets the information of the cropping. * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif * -* @remarks image_util_transform_set_resolution and image_util_transform_set_crop_area can't do that at the same time. +* @remarks image_util_transform_set_resolution() and image_util_transform_set_crop_area() can't do that at the same time. * * @param[in] handle The handle of image util transform * @param[in] start_x The start x position of cropped image buffer diff --git a/include/image_util_decode.h b/include/image_util_decode.h old mode 100755 new mode 100644 index 0db466d..3fa32e5 --- a/include/image_util_decode.h +++ b/include/image_util_decode.h @@ -125,8 +125,8 @@ int image_util_decode_set_input_buffer(image_util_decode_h handle, const unsigne * @since_tizen 3.0 * * @remarks Either image_util_decode_set_input_path() or image_util_decode_set_input_buffer() should be set.\n -* By default the decoded output buffer colorspace will be IMAGE_UTIL_COLORSPACE_RGBA8888. -* Use image_util_decode_set_colorspace to change the colorspace. +* By default the decoded output buffer colorspace will be #IMAGE_UTIL_COLORSPACE_RGBA8888. +* Use image_util_decode_set_colorspace() to change the colorspace. * @a dst_buffer should be released after @c image_util_decode_run() or @c image_util_decode_run_async(). * * @param[in] handle The handle of image util decoding @@ -157,7 +157,7 @@ int image_util_decode_set_output_buffer(image_util_decode_h handle, unsigned cha * @brief Sets the decoded image colorspace format. * @since_tizen 3.0 * -* @remarks The default colorspace is IMAGE_UTIL_COLORSPACE_RGBA8888.\n +* @remarks The default colorspace is #IMAGE_UTIL_COLORSPACE_RGBA8888.\n * Use image_util_foreach_supported_colorspace to get supported colorspaces for each image format.\n * Errors would be returned if not supported. * @@ -226,7 +226,7 @@ int image_util_decode_set_jpeg_downscale(image_util_decode_h handle, image_util_ * * @remarks The output will be stored in the pointer set using image_util_decode_set_output_buffer().\n * The function executes synchronously.\n -* When any of the @pre functions are not called, IMAGE_UTIL_ERROR_INVALID_PARAMETER is returned. +* When any of the pre-condition are not called, IMAGE_UTIL_ERROR_INVALID_PARAMETER is returned. * * @param[in] handle The handle of image util decoding * @param[out] width Width of the decoded image @@ -261,7 +261,7 @@ int image_util_decode_run(image_util_decode_h handle, unsigned long *width, unsi * * @remarks The output will be stored in the pointer set using image_util_decode_set_output_buffer().\n * The function executes asynchronously, which contains complete callback.\n -* When any of the @pre functions are not called, IMAGE_UTIL_ERROR_INVALID_PARAMETER is returned. +* When any of the pre-condition are not called, #IMAGE_UTIL_ERROR_INVALID_PARAMETER is returned. * * @param[in] handle The handle of image util decoding * @param[in] callback The callback function to be invoked