Add METADATA_360_STITCHED type in __extract_meta
[platform/core/api/metadata-extractor.git] / include / metadata_extractor.h
old mode 100755 (executable)
new mode 100644 (file)
index 650203d..548b140
@@ -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__ */
-
-