From 6149d4be6500c436fa03b852546ab204bbb8dd52 Mon Sep 17 00:00:00 2001 From: "minje.ahn" Date: Tue, 5 Dec 2023 16:43:56 +0900 Subject: [PATCH] Remove profile tag Change-Id: I0aaf4212b631b31d8721f010f128f5d8d876f477 Signed-off-by: minje.ahn --- include/metadata_editor.h | 18 +++++++++--------- include/metadata_editor_type.h | 8 ++++---- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/include/metadata_editor.h b/include/metadata_editor.h index 91d230f..4109ef2 100755 --- a/include/metadata_editor.h +++ b/include/metadata_editor.h @@ -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 diff --git a/include/metadata_editor_type.h b/include/metadata_editor_type.h index 9612c34..4c5b0cc 100755 --- a/include/metadata_editor_type.h +++ b/include/metadata_editor_type.h @@ -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; -- 2.34.1