/**
* @brief Creates metadata.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*
* @remarks The @a metadata should be released using metadata_editor_destroy().
*
/**
* @brief Sets file path to read or write metadata.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*
* @remarks In case of accessing specific path in internal storage or external storage, you may add the privilege for accessing the path. \n
* For example, if you get the specific path by using storage_get_directory(). you should add privilege %http://tizen.org/privilege/mediastorage or %http://tizen.org/privilege/externalstorage.
/**
* @brief Gets the metadata corresponding to the attribute.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*
* @remarks The @a value should be released using free(). \n
* If the attribute value of the metadata is empty, return value is NULL. \n
* @brief Sets the attribute of the metadata.
* @details This function set the attribute of the metadata for updating the metadata. \n
* If @a attribute is #METADATA_EDITOR_ATTR_PICTURE_NUM, this function returns #METADATA_EDITOR_ERROR_INVALID_PARAMETER.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*
* @remarks The @a value should be released using free(). \n
* You must call metadata_editor_update_metadata() to apply metadata changes to the media file. Otherwise, the previous metadata will be returned when you call metadata_editor_get_metadata().
/**
* @brief Updates the modified metadata.
* @details This function update the metadata in the media file that is modified by metadata_editor_set_metadata().
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*
* @remarks In case of accessing specific path in internal storage or external storage, you may add the privilege for accessing the path. \n
* For example, if you get the specific path by using storage_get_directory(). you should add privilege %http://tizen.org/privilege/mediastorage or %http://tizen.org/privilege/externalstorage.
* @brief Gets the picture in the media file.
* @details If there is no picture or if the @a index is invalid, this function returns #METADATA_EDITOR_ERROR_INVALID_PARAMETER.\n
* You can get picture number by using metadata_editor_get_metadata() and index starts with 0.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*
* @remarks The @a picture and @a mime_type should be released using free(). \n
* In case of accessing specific path in internal storage or external storage, you may add the privilege for accessing the path. \n
/**
* @brief Appends the picture to the media file.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*
* @remarks You must call metadata_editor_update_metadata() to apply metadata changes to the media file. Otherwise, the previous metadata will be returned when you call metadata_editor_get_metadata(). \n
* Image type of the metadata supports jpeg and png. \n
/**
* @brief Removes artwork image from media file.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*
* @remarks You must call metadata_editor_update_metadata() to apply metadata changes to the media file. Otherwise, the previous metadata will be returned when you call metadata_editor_get_metadata(). \n
* In case of accessing specific path in internal storage or external storage, you may add the privilege for accessing the path. \n
/**
* @brief Destroys metadata.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*
* @param[in] metadata The handle to metadata
* @return 0 on success, otherwise a negative error value
/**
* @brief Definition for Metadata editor Error Class.
-* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+* @since_tizen 2.4
*
*/
#define METADATA_EDITOR_ERROR_CLASS TIZEN_ERROR_METADATA_EDITOR
/**
* @ingroup CAPI_MEDIA_METADATA_EDITOR_MODULE
* @brief The enumerations of media metadata error.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*/
typedef enum {
METADATA_EDITOR_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
/**
* @ingroup CAPI_MEDIA_METADATA_EDITOR_MODULE
* @brief The enumerations of attribute.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*/
typedef enum {
METADATA_EDITOR_ATTR_ARTIST, /**< Artist*/
/**
* @ingroup CAPI_MEDIA_METADATA_EDITOR_MODULE
* @brief The handle of media metadata.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
*/
typedef void * metadata_editor_h;