Remove profile tag
[platform/core/api/media-content.git] / include / media_video.h
index c969990..75756b5 100755 (executable)
@@ -40,7 +40,7 @@ extern "C" {
  * @brief Clones the video metadata.
  * @details This function copies the video metadata handle from a source to destination.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a dst should be released using video_meta_destroy().
  *
@@ -64,7 +64,7 @@ int video_meta_clone(video_meta_h *dst, video_meta_h src);
  *          no longer can be used to perform any operations. A new handle has to
  *          be created before the next use.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] video The handle to the video metadata
  *
@@ -82,7 +82,7 @@ int video_meta_destroy(video_meta_h video);
 
 /**
  * @brief Gets the ID of the media of the given video metadata.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a media_id should be released using free().
  *
@@ -103,7 +103,7 @@ int video_meta_get_media_id(video_meta_h video, char **media_id);
  * @details If the value is an empty string, the method returns "Unknown". \n
  *          Since 3.0, if the media content has no album info, the method returns empty string.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a album should be released using free().
  *
@@ -124,7 +124,7 @@ int video_meta_get_album(video_meta_h video, char **album);
  * @details If the value is an empty string, the method returns "Unknown". \n
  *          Since 3.0, if the media content has no artist info, the method returns empty string.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a artist should be released using free().
  *
@@ -145,7 +145,7 @@ int video_meta_get_artist(video_meta_h video, char **artist);
  * @details If the value is an empty string, the method returns "Unknown". \n
  *          Since 3.0, if the media content has no album artist info, the method returns empty string.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a album_artist should be released using free().
  *
@@ -166,7 +166,7 @@ int video_meta_get_album_artist(video_meta_h video, char **album_artist);
  * @details If the value is an empty string, the method returns "Unknown". \n
  *          Since 3.0, if the media content has no genre info, the method returns empty string.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a genre should be released using free().
  *
@@ -187,7 +187,7 @@ int video_meta_get_genre(video_meta_h video, char **genre);
  * @details If the value is an empty string, the method returns "Unknown". \n
  *          Since 3.0, if the media content has no composer info, the method returns empty string.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a composer should be released using free().
  *
@@ -208,7 +208,7 @@ int video_meta_get_composer(video_meta_h video, char **composer);
  * @details If the value is an empty string, the method returns "Unknown". \n
  *          Since 3.0, if the media content has no year info, the method returns empty string.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a year should be released using free().
  *
@@ -229,7 +229,7 @@ int video_meta_get_year(video_meta_h video, char **year);
  * @details The format of the recorded date may vary depending on the file format. \n
  *          For more details on the recorded date format, refer to the file format specification.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a recorded_date should be released using free().
  *
@@ -250,7 +250,7 @@ int video_meta_get_recorded_date(video_meta_h video, char **recorded_date);
  * @details If the value is an empty string, the method returns "Unknown". \n
  *          Since 3.0, if the media content has no copyright info, the method returns empty string.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a copyright should be released using free().
  *
@@ -271,7 +271,7 @@ int video_meta_get_copyright(video_meta_h video, char **copyright);
  * @details If the value is an empty string, the method returns "Unknown". \n
  *          Since 3.0, if the media content has no track info, the method returns empty string.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks The @a track_num should be released using free().
  *
@@ -289,7 +289,7 @@ int video_meta_get_track_num(video_meta_h video, char **track_num);
 
 /**
  * @brief Gets the bitrate of the given video metadata in bitrate per second.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] video The handle to the video metadata
  * @param[out] bit_rate The video bit rate in bit per second [bps]
@@ -304,7 +304,7 @@ int video_meta_get_bit_rate(video_meta_h video, int *bit_rate);
 
 /**
  * @brief Gets the track duration of the given video metadata.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] video The handle to the video metadata
  * @param[out] duration The video duration in milliseconds
@@ -319,7 +319,7 @@ int video_meta_get_duration(video_meta_h video, int *duration);
 
 /**
  * @brief Gets the width of the given video metadata.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] video The handle to the video metadata
  * @param[out] width The video width in pixels
@@ -334,7 +334,7 @@ int video_meta_get_width(video_meta_h video, int *width);
 
 /**
  * @brief Gets the height of the given video metadata.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] video The handle to the video metadata
  * @param[out] height The video height in pixels