Remove profile tag 01/302301/1 accepted/tizen/unified/20231206.151811 accepted/tizen/unified/riscv/20231211.234034
authorminje.ahn <minje.ahn@samsung.com>
Tue, 5 Dec 2023 07:43:56 +0000 (16:43 +0900)
committerminje.ahn <minje.ahn@samsung.com>
Tue, 5 Dec 2023 07:43:56 +0000 (16:43 +0900)
Change-Id: I0aaf4212b631b31d8721f010f128f5d8d876f477
Signed-off-by: minje.ahn <minje.ahn@samsung.com>
include/metadata_editor.h
include/metadata_editor_type.h

index 91d230f140615eaa8680e82f9140312efe85cd1b..4109ef282494cfa77e064e071503f81711ce7f41 100755 (executable)
@@ -38,7 +38,7 @@ extern "C" {
 
 /**
  * @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().
  *
@@ -54,7 +54,7 @@ int metadata_editor_create(metadata_editor_h *metadata);
 
 /**
  * @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.
@@ -77,7 +77,7 @@ int metadata_editor_set_path(metadata_editor_h metadata, const char *path);
 
 /**
  * @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
@@ -105,7 +105,7 @@ int metadata_editor_get_metadata(metadata_editor_h metadata, metadata_editor_att
  * @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().
@@ -133,7 +133,7 @@ int metadata_editor_set_metadata(metadata_editor_h metadata, metadata_editor_att
 /**
  * @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.
@@ -156,7 +156,7 @@ int metadata_editor_update_metadata(metadata_editor_h metadata);
  * @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
@@ -182,7 +182,7 @@ int metadata_editor_get_picture(metadata_editor_h metadata, int index, void **pi
 
 /**
  * @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
@@ -211,7 +211,7 @@ int metadata_editor_append_picture(metadata_editor_h metadata, const char *pictu
 
 /**
  * @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
@@ -235,7 +235,7 @@ int metadata_editor_remove_picture(metadata_editor_h metadata, int index);
 
 /**
  * @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
index 9612c34924dac1fb02d42e560cfaa4d0d9f98b86..4c5b0cc87fc738a458ab5601773d563e31e79ed1 100755 (executable)
@@ -34,7 +34,7 @@ extern "C" {
 
 /**
 * @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
@@ -42,7 +42,7 @@ extern "C" {
 /**
  * @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 */
@@ -59,7 +59,7 @@ typedef enum {
 /**
  * @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*/
@@ -80,7 +80,7 @@ typedef enum {
 /**
  * @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;