From: minje.ahn Date: Tue, 5 Dec 2023 07:42:14 +0000 (+0900) Subject: Remove profile tag X-Git-Tag: accepted/tizen/unified/20231206.151818^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b3d54896e6d46870694aac30de3faf69231f1243;p=platform%2Fcore%2Fapi%2Fimage-util.git Remove profile tag Change-Id: If11bd3b89a5af8384df59a4d7ee132cca9155504 Signed-off-by: minje.ahn --- diff --git a/include/image_util.h b/include/image_util.h index 140a14d..d55c4a3 100644 --- a/include/image_util.h +++ b/include/image_util.h @@ -39,7 +39,7 @@ extern "C" /** * @deprecated Deprecated since 5.5. * @brief Calculates the size of the image buffer for the specified resolution and colorspace. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * @param[in] width The image width * @param[in] height The image height @@ -91,7 +91,7 @@ int image_util_extract_color_from_memory(const unsigned char *image_buffer, int /** * @brief Creates a handle of image util transform. * @details This function creates a handle of image util transform. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * @remarks The @a handle should be released using image_util_transform_destroy(). * @@ -113,7 +113,7 @@ int image_util_transform_create(transformation_h *handle); * @deprecated Deprecated since 5.0. * @brief Sets the image util's accurate mode. * @details This function set if you use hardware acceleration or not. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * * @remarks The value returned will be #IMAGE_UTIL_ERROR_NOT_SUPPORTED, if H/W acceleration doesn't support on the device. @@ -139,7 +139,7 @@ int image_util_transform_set_hardware_acceleration(transformation_h handle, bool /** * @brief Sets the information of the converting. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * @param[in] handle The handle for transforming an image * @param[in] colorspace The colorspace of the image buffer @@ -162,7 +162,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 +* @since_tizen 2.3 * * @remarks image_util_transform_set_resolution() and image_util_transform_set_crop_area() can't do that at the same time. * @@ -187,7 +187,7 @@ int image_util_transform_set_resolution(transformation_h handle, unsigned int wi /** * @brief Sets the information of the rotating. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * @param[in] handle The handle for transforming an image * @param[in] rotation The rotation value of image buffer @@ -209,7 +209,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 +* @since_tizen 2.3 * * @remarks image_util_transform_set_resolution() and image_util_transform_set_crop_area() can't do that at the same time. * @@ -236,7 +236,7 @@ int image_util_transform_set_crop_area(transformation_h handle, unsigned int sta /** * @brief Gets the colorspace of the image buffer. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * @param[in] handle The handle for transforming an image * @param[in,out] colorspace The colorspace of the image buffer @@ -259,7 +259,7 @@ int image_util_transform_get_colorspace(transformation_h handle, image_util_colo /** * @brief Gets the resolution of the image buffer. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * @param[in] handle The handle for transforming an image * @param[in,out] width The width of source image buffer @@ -282,7 +282,7 @@ int image_util_transform_get_resolution(transformation_h handle, unsigned int *w /** * @brief Gets the information of the rotating. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * @param[in] handle The handle for transforming an image * @param[in,out] rotation The rotation value of image buffer @@ -304,7 +304,7 @@ int image_util_transform_get_rotation(transformation_h handle, image_util_rotati /** * @brief Gets the information of the cropping. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * @param[in] handle The handle for transforming an image * @param[in,out] start_x The start x position of cropped source image buffer @@ -331,7 +331,7 @@ int image_util_transform_get_crop_area(transformation_h handle, unsigned int *st * @brief Transforms the image for given image util handle. * @details The function execute asynchronously, which contains complete callback \n * If you set more than two transforming, the order of running is crop or resolution, colorspace converting, rotation. \n -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * @remarks If H/W acceleration is not set, transformation is done via S/W acceleration. * @@ -424,7 +424,7 @@ int image_util_transform_run2_async(transformation_h handle, image_util_image_h * @details The function frees all resources related to the image util handle. The image util * handle no longer can be used to perform any operations. A new image util handle * has to be created before the next usage. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * @param[in] handle The handle for transforming an image * diff --git a/include/image_util_type.h b/include/image_util_type.h index 1632afc..8b0e2ea 100644 --- a/include/image_util_type.h +++ b/include/image_util_type.h @@ -28,7 +28,7 @@ extern "C" /** * @brief Definition for Metadata extractor Error Class. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * */ #define IMAGE_UTIL_ERROR_CLASS TIZEN_ERROR_IMAGE_UTIL @@ -45,7 +45,7 @@ extern "C" /** * @brief Enumeration for error. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef enum { IMAGE_UTIL_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */ @@ -60,7 +60,7 @@ typedef enum { /** * @brief Enumeration for colorspace. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef enum { IMAGE_UTIL_COLORSPACE_YV12, /**< YV12 - YCrCb planar format */ @@ -100,7 +100,7 @@ typedef void *image_util_image_h; /** * @brief Enumeration for rotation. - * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif + * @since_tizen 2.3 */ typedef enum { IMAGE_UTIL_ROTATION_NONE = 0, /**< None */ @@ -114,14 +114,14 @@ typedef enum { /** * @ingroup CAPI_MEDIA_IMAGE_UTIL_TRANSFORM_MODULE * @brief Image util handle. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 */ typedef struct transformation_s *transformation_h; /** * @ingroup CAPI_MEDIA_IMAGE_UTIL_TRANSFORM_MODULE * @brief Called when transform is finished just before returning the output. -* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif +* @since_tizen 2.3 * * @remarks The @a dst should be released using media_packet_destroy(). \n * The callback is called in a separate thread(not in the main loop). @@ -187,7 +187,7 @@ typedef enum { /** * @brief Enumeration for scale decoding. - * @since_tizen @if WEARABLE 3.0 @else 2.4 @endif + * @since_tizen 2.4 */ typedef enum { IMAGE_UTIL_DOWNSCALE_1_1, /**< 1/1 downscale */