Remove profile tag 02/302302/1 accepted/tizen_unified_riscv accepted/tizen/unified/20231206.151814 accepted/tizen/unified/riscv/20231211.234036
authorminje.ahn <minje.ahn@samsung.com>
Tue, 5 Dec 2023 07:44:25 +0000 (16:44 +0900)
committerminje.ahn <minje.ahn@samsung.com>
Tue, 5 Dec 2023 07:44:25 +0000 (16:44 +0900)
Change-Id: I86465d9503d7638b1e074d0a37a8ea5a36ee6029
Signed-off-by: minje.ahn <minje.ahn@samsung.com>
include/metadata_extractor.h
include/metadata_extractor_type.h

index 650203d..548b140 100755 (executable)
@@ -39,7 +39,7 @@ extern "C" {
 
 /**
  * @brief Creates metadata.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  * @remarks The @a metadata should be released using metadata_extractor_destroy().
  *
  * @param[in] metadata The handle to metadata
@@ -55,7 +55,7 @@ int metadata_extractor_create(metadata_extractor_h *metadata);
 
 /**
  * @brief Sets the file path to extract.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] metadata The handle to metadata
  * @param[in] path The path to extract metadata
@@ -74,7 +74,7 @@ int metadata_extractor_set_path(metadata_extractor_h metadata, const char *path)
 
 /**
  * @brief Sets the buffer to extract.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] metadata The handle to metadata
  * @param[in] buffer The buffer to extract metadata
@@ -93,7 +93,7 @@ int metadata_extractor_set_buffer(metadata_extractor_h metadata, const void *buf
 
 /**
  * @brief Destroys metadata.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] metadata The handle to metadata
  *
@@ -109,7 +109,7 @@ int metadata_extractor_destroy(metadata_extractor_h metadata);
 
 /**
  * @brief Gets metadata.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a value 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
@@ -134,7 +134,7 @@ int metadata_extractor_get_metadata(metadata_extractor_h metadata, metadata_extr
 
 /**
  * @brief Gets the artwork image in a media file.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a artwork 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
@@ -160,7 +160,7 @@ int metadata_extractor_get_artwork(metadata_extractor_h metadata, void **artwork
 
 /**
  * @brief Gets the frame of a video media file.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a frame should be released using free().
  *                   In case of accessing specific path in internal storage or external storage, you may add the privilege for accessing the path. \n
@@ -185,7 +185,7 @@ int metadata_extractor_get_frame(metadata_extractor_h metadata, void **frame, in
 
 /**
  * @brief Gets the synclyrics of a media file.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a lyrics should be released using free().
  *                   In case of accessing specific path in internal storage or external storage, you may add the privilege for accessing the path. \n
@@ -211,7 +211,7 @@ int metadata_extractor_get_synclyrics(metadata_extractor_h metadata, int index,
 
 /**
  * @brief Gets the frame of a video media.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a frame should be released using free().
  *                   In case of accessing specific path in internal storage or external storage, you may add the privilege for accessing the path. \n
@@ -247,5 +247,3 @@ int metadata_extractor_get_frame_at_time(metadata_extractor_h metadata, unsigned
 #endif /* __cplusplus */
 
 #endif /* __TIZEN_MULTIMEDIA_METADATA_EXTRACTOR_H__ */
-
-
index 78a0b69..5798163 100755 (executable)
@@ -34,7 +34,7 @@ extern "C" {
 
 /**
 * @brief Definition for Metadata extractor Error Class.
-* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+* @since_tizen 2.3
 *
 */
 #define METADATA_EXTRACTOR_ERROR_CLASS                         TIZEN_ERROR_METADATA_EXTRACTOR
@@ -42,7 +42,7 @@ extern "C" {
 /**
  * @ingroup CAPI_METADATA_EXTRACTOR_MODULE
  * @brief Enumeration for metadata extractor error.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef enum {
        METADATA_EXTRACTOR_ERROR_NONE = TIZEN_ERROR_NONE,         /**< Successful */
@@ -57,7 +57,7 @@ typedef enum {
 /**
  * @ingroup CAPI_METADATA_EXTRACTOR_MODULE
  * @brief Enumeration for attribute.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef enum {
        METADATA_DURATION       = 0,                    /**< Duration */
@@ -100,7 +100,7 @@ typedef enum {
 /**
  * @ingroup CAPI_METADATA_EXTRACTOR_MODULE
  * @brief The metadata extractor handle.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef struct metadata_extractor_s *metadata_extractor_h;