Fix typo. tranform to transform 40/319340/1
authorJiyong <jiyong.min@samsung.com>
Mon, 21 Oct 2024 22:36:42 +0000 (07:36 +0900)
committerJiyong <jiyong.min@samsung.com>
Mon, 21 Oct 2024 22:36:42 +0000 (07:36 +0900)
Change-Id: I2bbbc501b7527e2c256a2adb16eb8e0eb8e79df7

include/image_util.h

index 9a2a6faf3a66577b6986222476f55d03bf470e99..8fc42674cd8683b0c5cbf46730ea765dd39f02aa 100644 (file)
@@ -75,7 +75,7 @@ int image_util_extract_color_from_memory(const unsigned char *image_buffer, int
 *
 * @remarks The @a handle should be released using image_util_transform_destroy().
 *
-* @param[out] handle The handle of image util tranform
+* @param[out] handle The handle of image util transform
 *
 * @return @c 0 on success,
 *               otherwise a negative error value
@@ -139,7 +139,7 @@ int image_util_transform_set_resolution(transformation_h handle, unsigned int wi
 * @brief Sets the information of the rotation to transform.
 * @since_tizen 2.3
 *
-* @param[in] handle The handle of image util tranform
+* @param[in] handle The handle of image util transform
 * @param[in] rotation The rotation to transform
 *
 * @return @c 0 on success,
@@ -162,7 +162,7 @@ int image_util_transform_set_rotation(transformation_h handle, image_util_rotati
 *
 * @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 tranform
+* @param[in] handle The handle of image util transform
 * @param[in] start_x The start x position to transform
 * @param[in] start_y The start y position to transform
 * @param[in] end_x The end x position to transform
@@ -186,7 +186,7 @@ int image_util_transform_set_crop_area(transformation_h handle, unsigned int sta
 * @brief Gets the colorspace of the image buffer.
 * @since_tizen 2.3
 *
-* @param[in] handle The handle of image util tranform
+* @param[in] handle The handle of image util transform
 * @param[in,out] colorspace The colorspace to transform
 *
 * @return @c 0 on success,
@@ -208,7 +208,7 @@ int image_util_transform_get_colorspace(transformation_h handle, image_util_colo
 * @brief Gets the resolution of the image buffer.
 * @since_tizen 2.3
 *
-* @param[in] handle The handle of image util tranform
+* @param[in] handle The handle of image util transform
 * @param[in,out] width The width to transform
 * @param[in,out] height The height to transform
 *
@@ -230,7 +230,7 @@ int image_util_transform_get_resolution(transformation_h handle, unsigned int *w
 * @brief Gets the information of the rotating.
 * @since_tizen 2.3
 *
-* @param[in] handle The handle of image util tranform
+* @param[in] handle The handle of image util transform
 * @param[in,out] rotation The rotation to transform
 *
 * @return @c 0 on success,
@@ -252,7 +252,7 @@ int image_util_transform_get_rotation(transformation_h handle, image_util_rotati
 * @brief Gets the information of the cropping.
 * @since_tizen 2.3
 *
-* @param[in] handle The handle of image util tranform
+* @param[in] handle The handle of image util transform
 * @param[in,out] start_x The start x position to transform
 * @param[in,out] start_y The start y position to transform
 * @param[in,out] end_x The end x position to transform
@@ -279,7 +279,7 @@ int image_util_transform_get_crop_area(transformation_h handle, unsigned int *st
 *          If you set more than two transforming, the order of running is crop or resolution, colorspace converting, and rotation.
 * @since_tizen 2.3
 *
-* @param[in] handle The handle of image util tranform
+* @param[in] handle The handle of image util transform
 * @param[in] src The handle of a source media packet
 * @param[in] callback The callback function to be invoked
 * @param[in] user_data The user data to be passed to the callback function
@@ -305,7 +305,7 @@ int image_util_transform_run(transformation_h handle, media_packet_h src, image_
 * @remarks If transforming is failed, the @a dst will be null.
 *               The @a dst should be released using image_util_destroy_image().
 *
-* @param[in] handle The handle of image util tranform
+* @param[in] handle The handle of image util transform
 * @param[in] src The handle of a source image
 * @param[out] dst The transformed image
 *
@@ -332,7 +332,7 @@ int image_util_transform_run2(transformation_h handle, image_util_image_h src, i
 *
 * @remarks If transforming is failed, the dst of callback parameter will be null.
 *
-* @param[in] handle The handle of image util tranform
+* @param[in] handle The handle of image util transform
 * @param[in] src The handle of a source image
 * @param[in] callback The callback function to be invoked
 * @param[in] user_data The user data to be passed to the callback function
@@ -361,7 +361,7 @@ int image_util_transform_run2_async(transformation_h handle, image_util_image_h
 *               A new image util handle has to be created before the next usage.
 * @since_tizen 2.3
 *
-* @param[in] handle The handle of image util tranform
+* @param[in] handle The handle of image util transform
 *
 * @return @c 0 on success,
 *               otherwise a negative error value