/**
* @brief Creates thumbnail info handle.
- * @since_tizen 2.4
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
* @remarks You must release @a thumb info using thumbnail_util_destroy().
*
* @param[in] thumb The handle to thumbnail info
* @details This function extracts the thumbnail for given media item and calls registered
* callback function for completion of extracting the thumbnail.\n
*
- * @since_tizen 2.4
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
*
* @remarks You must release @a request_id using free(). \n
* http://tizen.org/privilege/mediastorage is needed if input or output path are relevant to media storage. \n
/**
* @brief Sets the path of original media file.
- * @since_tizen 2.4
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
*
* @param[in] thumb The thumbnail info handle
* @param[in] path The path of the original media file
/**
* @brief Sets the size of thumbnail to be extracted.
- * @since_tizen 2.4
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
* @remarks If you don't set the size, the thumbnail size will be set default size. Default size is 320x240. \n
* If the set width is not a multiple of 8, it can be changed by inner process. the width will be a multiple of 8 greater than the set value.
*
/**
* @brief Cancels the thumbnail extraction request for the given media.
- * @since_tizen 2.4
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
* @remarks If there is no item you want to cancel, this API return MEDIA_CONTENT_ERROR_INVALID_OPERATION
*
* @param[in] thumb The media thumbnail info handle
/**
* @brief Cancels all thumbnail extraction requests associated with the given thumbnail info handle.
- * @since_tizen 2.4
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
* @remarks If there is no item you want to cancel, this API return MEDIA_CONTENT_ERROR_INVALID_OPERATION
*
* @param[in] thumb The media thumbnail info handle
* can no longer be used to perform any operation. New thumbnail info handle has to
* be created before the next usage.
*
- * @since_tizen 2.4
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
*
* @param[in] thumb The thumbnail info handle
*
/**
* @ingroup CAPI_MEDIA_THUMBNAIL_UTIL_MODULE
* @brief Enumeration for a thumbnail util error.
- * @since_tizen 2.4
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
*/
typedef enum
{
/**
* @ingroup CAPI_MEDIA_THUMBNAIL_UTIL_MODULE
* @brief The structure type for the thumbnail info handle.
- * @since_tizen 2.4
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
*/
typedef struct thumbnail_s *thumbnail_h;
/**
* @ingroup CAPI_MEDIA_THUMBNAIL_UTIL_MODULE
* @brief Called when creating the thumbnail.
- * @since_tizen 2.4
+ * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
* @remarks Color space of the generated thumbnail is BGRA.
*
* @details This callback is called for completion of generating the thumbnail.