Remove profile tag
[platform/core/api/media-content.git] / include / media_audio.h
index 9ab5009..abfe6b8 100755 (executable)
@@ -40,7 +40,7 @@ extern "C" {
  * @brief Clones the audio metadata.
  * @details This function copies the audio 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 audio_meta_destroy().
  *
@@ -64,7 +64,7 @@ int audio_meta_clone(audio_meta_h *dst, audio_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] audio The handle to the audio metadata
  *
@@ -82,7 +82,7 @@ int audio_meta_destroy(audio_meta_h audio);
 
 /**
  * @brief Gets the ID of the media of the given audio 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 audio_meta_get_media_id(audio_meta_h audio, 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 audio_meta_get_album(audio_meta_h audio, 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 audio_meta_get_artist(audio_meta_h audio, 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 audio_meta_get_album_artist(audio_meta_h audio, 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 audio_meta_get_genre(audio_meta_h audio, 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 audio_meta_get_composer(audio_meta_h audio, 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 audio_meta_get_year(audio_meta_h audio, 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().
  *
@@ -249,7 +249,7 @@ int audio_meta_get_recorded_date(audio_meta_h audio, char **recorded_date);
  * @brief Gets the copyright notice of the given audio metadata.
  * @details 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().
  *
@@ -270,7 +270,7 @@ int audio_meta_get_copyright(audio_meta_h audio, 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().
  *
@@ -288,7 +288,7 @@ int audio_meta_get_track_num(audio_meta_h audio, char **track_num);
 
 /**
  * @brief Gets the bitrate of the given audio metadata in bitrate per second.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] audio The handle to the audio metadata
  * @param[out] bit_rate The audio bitrate in bit per second [bps]
@@ -303,7 +303,7 @@ int audio_meta_get_bit_rate(audio_meta_h audio, int *bit_rate);
 
 /**
  * @brief Gets bit per sample of the given audio metadata.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] audio The handle to the audio metadata
  * @param[out] bitpersample The audio bit per sample
@@ -318,7 +318,7 @@ int audio_meta_get_bitpersample(audio_meta_h audio, int *bitpersample);
 
 /**
  * @brief Gets the sample rate of the given audio metadata.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] audio The handle to the audio metadata
  * @param[out] sample_rate The audio sample rate[hz]
@@ -333,7 +333,7 @@ int audio_meta_get_sample_rate(audio_meta_h audio, int *sample_rate);
 
 /**
  * @brief Gets the channel of the given audio metadata.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] audio The handle to the audio metadata
  * @param[out] channel The channel of the audio
@@ -348,7 +348,7 @@ int audio_meta_get_channel(audio_meta_h audio, int *channel);
 
 /**
  * @brief Gets the track duration of the given audio metadata.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] audio The handle to the audio metadata
  * @param[out] duration The audio file duration