Update API version description 84/63084/1
authorMinje Ahn <minje.ahn@samsung.com>
Tue, 22 Mar 2016 05:15:34 +0000 (14:15 +0900)
committerMinje Ahn <minje.ahn@samsung.com>
Tue, 22 Mar 2016 05:15:34 +0000 (14:15 +0900)
Change-Id: I5d0fa5f9e07b3f7e136dbdf221fc272549b04a2f
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
include/thumbnail_util.h
include/thumbnail_util_type.h

index 5c69288..383072a 100755 (executable)
@@ -36,7 +36,7 @@ extern "C" {
 
 /**
  * @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
@@ -56,7 +56,7 @@ int thumbnail_util_create(thumbnail_h *thumb);
  * @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
@@ -86,7 +86,7 @@ int thumbnail_util_extract(thumbnail_h thumb, thumbnail_extracted_cb callback, v
 
 /**
  * @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
@@ -106,7 +106,7 @@ int thumbnail_util_set_path(thumbnail_h thumb, const char *path);
 
 /**
  * @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.
  *
@@ -129,7 +129,7 @@ int thumbnail_util_set_size(thumbnail_h thumb, int width, int height);
 
 /**
  * @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
@@ -148,7 +148,7 @@ int thumbnail_util_cancel(thumbnail_h thumb, const char *request_id);
 
 /**
  * @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
@@ -170,7 +170,7 @@ int thumbnail_util_cancel_all(thumbnail_h thumb);
  *          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
  *
index c486355..269d652 100755 (executable)
@@ -44,7 +44,7 @@ extern "C" {
 /**
  * @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
 {
@@ -60,7 +60,7 @@ extern "C" {
 /**
  * @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;
 
@@ -68,7 +68,7 @@ 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.