Fix Doxygen mistakes 86/167786/12
authorhj kim <backto.kim@samsung.com>
Mon, 22 Jan 2018 05:32:35 +0000 (14:32 +0900)
committerhj kim <backto.kim@samsung.com>
Tue, 23 Jan 2018 06:47:30 +0000 (15:47 +0900)
Change-Id: I505b0d7a02ed7de5af3f814f43d3223f485804f7

35 files changed:
include/media_audio.h
include/media_bookmark.h
include/media_content.h
include/media_content_internal.h
include/media_content_type.h
include/media_face.h
include/media_filter.h
include/media_folder.h
include/media_group.h
include/media_image.h
include/media_info.h
include/media_info_private.h
include/media_playlist.h
include/media_storage.h
include/media_tag.h
include/media_util_private.h
include/media_video.h
include_product/media_audio.h
include_product/media_bookmark.h
include_product/media_content.h
include_product/media_content_internal.h
include_product/media_content_product.h
include_product/media_content_type.h
include_product/media_face.h
include_product/media_filter.h
include_product/media_folder.h
include_product/media_group.h
include_product/media_image.h
include_product/media_info.h
include_product/media_info_private.h
include_product/media_playlist.h
include_product/media_storage.h
include_product/media_tag.h
include_product/media_util_private.h
include_product/media_video.h

index d39762a..c17d8d6 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_AUDIO_META_H__
-#define __TIZEN_AUDIO_META_H__
+#ifndef __TIZEN_CONTENT_MEDIA_AUDIO_H__
+#define __TIZEN_CONTENT_MEDIA_AUDIO_H__
 
 #include <media_content_type.h>
 
@@ -42,10 +42,10 @@ extern "C" {
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the destination handle using audio_meta_destroy().
+ * @remarks The @a dst should be released using audio_meta_destroy().
  *
  * @param[out] dst The destination handle to the audio metadata
- * @param[in]  src The source handle to the audio metadata
+ * @param[in] src The source handle to the audio metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -66,7 +66,7 @@ int audio_meta_clone(audio_meta_h *dst, audio_meta_h src);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] audio The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -84,10 +84,10 @@ 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
  *
- * @remarks You must release @a media_id using free().
+ * @remarks The @a media_id should be released using free().
  *
- * @param[in]  audio    The audio metadata handle
- * @param[out] media_id The ID of the audio
+ * @param[in] audio The handle to the audio metadata
+ * @param[out] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -105,9 +105,9 @@ int audio_meta_get_media_id(audio_meta_h audio, char **media_id);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album using free().
+ * @remarks The @a album should be released using free().
  *
- * @param[in]  audio The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] album The album of the audio metadata
  *
  * @return @c 0 on success,
@@ -126,9 +126,9 @@ int audio_meta_get_album(audio_meta_h audio, char **album);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a artist using free().
+ * @remarks The @a artist should be released using free().
  *
- * @param[in]  audio  The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] artist The artist of the audio metadata
  *
  * @return @c 0 on success,
@@ -147,9 +147,9 @@ int audio_meta_get_artist(audio_meta_h audio, char **artist);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album_artist using free().
+ * @remarks The @a album_artist should be released using free().
  *
- * @param[in]  audio        The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] album_artist The album artist of the audio metadata
  *
  * @return @c 0 on success,
@@ -168,9 +168,9 @@ int audio_meta_get_album_artist(audio_meta_h audio, char **album_artist);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a genre using free().
+ * @remarks The @a genre should be released using free().
  *
- * @param[in]  audio The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] genre The genre of the audio metadata
  *
  * @return @c 0 on success,
@@ -189,9 +189,9 @@ int audio_meta_get_genre(audio_meta_h audio, char **genre);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a composer using free().
+ * @remarks The @a composer should be released using free().
  *
- * @param[in]  audio    The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] composer The composer of the audio metadata
  *
  * @return @c 0 on success,
@@ -210,10 +210,10 @@ int audio_meta_get_composer(audio_meta_h audio, char **composer);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a year using free().
+ * @remarks The @a year should be released using free().
  *
- * @param[in]  audio The audio metadata handle
- * @param[out] year  The year of the audio metadata
+ * @param[in] audio The handle to the audio metadata
+ * @param[out] year The year of the audio metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -231,9 +231,9 @@ int audio_meta_get_year(audio_meta_h audio, char **year);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a recorded_date using free().
+ * @remarks The @a recorded_date should be released using free().
  *
- * @param[in]  audio         The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] recorded_date The recorded date of the audio metadata
  *
  * @return @c 0 on success,
@@ -251,9 +251,9 @@ int audio_meta_get_recorded_date(audio_meta_h audio, char **recorded_date);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a copyright using free().
+ * @remarks The @a copyright should be released using free().
  *
- * @param[in]  audio     The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] copyright The copyright of the audio metadata
  *
  * @return @c 0 on success,
@@ -272,9 +272,9 @@ int audio_meta_get_copyright(audio_meta_h audio, char **copyright);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a track_num using free().
+ * @remarks The @a track_num should be released using free().
  *
- * @param[in]  audio     The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] track_num The audio track number of the audio metadata
  *
  * @return @c 0 on success,
@@ -290,7 +290,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
  *
- * @param[in]  audio    The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] bit_rate The audio bitrate in bit per second [bps]
  *
  * @return @c 0 on success,
@@ -305,8 +305,8 @@ 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
  *
- * @param [in]  audio        The handle to the audio metadata
- * @param [out] bitpersample The audio bit per sample
+ * @param[in] audio The handle to the audio metadata
+ * @param[out] bitpersample The audio bit per sample
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -320,7 +320,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
  *
- * @param[in]  audio       The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] sample_rate The audio sample rate[hz]
  *
  * @return @c 0 on success,
@@ -335,7 +335,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
  *
- * @param[in]  audio   The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] channel The channel of the audio
  *
  * @return @c 0 on success,
@@ -350,7 +350,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
  *
- * @param[in]  audio    The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] duration The audio file duration
  *
  * @return @c 0 on success,
@@ -374,7 +374,7 @@ int audio_meta_get_duration(audio_meta_h audio, int *duration);
  *
  * @remarks Do not call this function in callback function of foreach function like media_info_foreach_media_from_db().
  *
- * @param[in] audio The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -402,4 +402,4 @@ int audio_meta_update_to_db(audio_meta_h audio) TIZEN_DEPRECATED_API;
 }
 #endif /* __cplusplus */
 
-#endif /*__TIZEN_AUDIO_META_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_AUDIO_H__*/
index e901e80..2c3e1ca 100755 (executable)
@@ -16,8 +16,8 @@
 
 
 
-#ifndef __TIZEN_MEDIA_BOOKMARK_H__
-#define __TIZEN_MEDIA_BOOKMARK_H__
+#ifndef __TIZEN_CONTENT_MEDIA_BOOKMARK_H__
+#define __TIZEN_CONTENT_MEDIA_BOOKMARK_H__
 
 #include <media_content_type.h>
 
@@ -44,8 +44,8 @@ extern "C" {
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] media_id       The media ID
- * @param[in] time           The bookmark time offset (in seconds)
+ * @param[in] media_id The media ID
+ * @param[in] time The bookmark time offset (in seconds)
  * @param[in] thumbnail_path The thumbnail path of video bookmark\ n
  *                           If the media type is audio, then thumbnail is null.
  *
@@ -74,7 +74,7 @@ int media_bookmark_insert_to_db(const char *media_id, time_t time, const char *t
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] bookmark_id The ID of media bookmark
+ * @param[in] bookmark_id The ID of the media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -98,7 +98,7 @@ int media_bookmark_delete_from_db(int bookmark_id);
  * @brief Gets the number of bookmarks with an optional filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter         The handle to the media filter
+ * @param[in] filter The handle to the media filter
  * @param[out] bookmark_count The count of the media bookmark
  *
  * @return @c 0 on success,
@@ -121,9 +121,9 @@ int media_bookmark_get_bookmark_count_from_db(filter_h filter, int *bookmark_cou
  *          If @c NULL is passed to the @a filter, then no filtering is applied.
  * @since_tizen 4.0
  *
- * @param[in] filter     The handle to the bookmark filter
- * @param[in] callback   The callback function to be invoked
- * @param[in] user_data  The user data to be passed to the callback function
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -151,10 +151,10 @@ int media_bookmark_foreach_bookmark_from_db(filter_h filter, media_bookmark_cb c
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks The destination handle must be released using media_bookmark_destroy().
+ * @remarks The @a dst should be released using media_bookmark_destroy().
  *
- * @param[out] dst The destination handle to media bookmark
- * @param[in]  src The source handle to media bookmark
+ * @param[out] dst The destination handle to the media bookmark
+ * @param[in] src The source handle to the media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -176,7 +176,7 @@ int media_bookmark_clone(media_bookmark_h *dst, media_bookmark_h src);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] bookmark The handle to media bookmark
+ * @param[in] bookmark The handle to the media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -194,8 +194,8 @@ int media_bookmark_destroy(media_bookmark_h bookmark);
  * @brief Gets the bookmark ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  bookmark    The handle to media bookmark
- * @param[out] bookmark_id The media bookmark ID
+ * @param[in] bookmark The handle to the media bookmark
+ * @param[out] bookmark_id The ID of the media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -212,7 +212,7 @@ int media_bookmark_get_bookmark_id(media_bookmark_h bookmark, int *bookmark_id);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  bookmark    The handle to media bookmark
+ * @param[in] bookmark The handle to the media bookmark
  * @param[out] marked_time The bookmark time offset (in seconds)
  *
  * @return @c 0 on success,
@@ -227,10 +227,10 @@ int media_bookmark_get_marked_time(media_bookmark_h bookmark, time_t *marked_tim
  * @brief Gets the media bookmark thumbnail.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a path using free().
+ * @remarks The @a path should be released using free().
  *
- * @param[in]  bookmark The handle to media bookmark
- * @param[out] path     The thumbnail path of media bookmark
+ * @param[in] bookmark The handle to the media bookmark
+ * @param[out] path The thumbnail path of media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -245,10 +245,10 @@ int media_bookmark_get_thumbnail_path(media_bookmark_h bookmark, char **path);
  * @brief Gets the media bookmark name which user set.
  * @since_tizen 4.0
  *
- * @remarks You must release @a name using free().
+ * @remarks The @a name should be released using free().
  *
- * @param[in] bookmark The handle to media bookmark
- * @param[out] name     The name of media bookmark. If name was not set, empty string is returned.
+ * @param[in] bookmark The handle to the media bookmark
+ * @param[out] name The name of media bookmark. If name was not set, empty string is returned.
  *                               If User set bookmark name to NULL, name will be empty string also.
  *
  * @return @c 0 on success,
@@ -264,8 +264,8 @@ int media_bookmark_get_name(media_bookmark_h bookmark, char **name);
  * @brief Sets the media bookmark name.
  * @since_tizen 4.0
  *
- * @param[in] bookmark The handle to media bookmark
- * @param[in] name     The name of media bookmark. Can be NULL, empty or non-empty string.
+ * @param[in] bookmark The handle to the media bookmark
+ * @param[in] name The name of media bookmark. Can be NULL, empty or non-empty string.
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -290,19 +290,19 @@ int media_bookmark_set_name(media_bookmark_h bookmark, const char *name);
  * @privilege %http://tizen.org/privilege/content.write
  *
  * @remarks Do not call this function in callback function of foreach function like media_info_foreach_bookmark_from_db().
- * @param[in] bookmark The handle to media bookmark
+ * @param[in] bookmark The handle to the media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
  *
- * @retval #MEDIA_CONTENT_ERROR_NONE                                   Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER      Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY          Out of memory
- * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION      Invalid operation
- * @retval #MEDIA_CONTENT_ERROR_DB_FAILED                              DB Operation failed
- * @retval #MEDIA_CONTENT_ERROR_DB_BUSY                                DB Operation busy
- * @retval #MEDIA_CONTENT_ERROR_NETWORK                                Network fail
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED      Permission denied when Application has no privilege
+ * @retval #MEDIA_CONTENT_ERROR_NONE Successful
+ * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION Invalid operation
+ * @retval #MEDIA_CONTENT_ERROR_DB_FAILED DB Operation failed
+ * @retval #MEDIA_CONTENT_ERROR_DB_BUSY DB Operation busy
+ * @retval #MEDIA_CONTENT_ERROR_NETWORK Network fail
+ * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied when Application has no privilege
  *
  * @pre This function requires opened connection to content service by media_content_connect().
  *
@@ -318,4 +318,4 @@ int media_bookmark_update_to_db(media_bookmark_h bookmark);
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
-#endif /*__TIZEN_MEDIA_BOOKMARK_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_BOOKMARK_H__*/
index a69091a..c558048 100755 (executable)
@@ -14,8 +14,8 @@
 * limitations under the License.
 */
 
-#ifndef __TIZEN_MEDIA_CONTENT_H__
-#define __TIZEN_MEDIA_CONTENT_H__
+#ifndef __TIZEN_CONTENT_MEDIA_CONTENT_H__
+#define __TIZEN_CONTENT_MEDIA_CONTENT_H__
 
 #include <media_audio.h>
 #include <media_content_type.h>
@@ -90,7 +90,7 @@ int media_content_disconnect(void);
  * @details This function requests to scan a media file to the media server.
  *          If media file is not registered to DB yet, that media file information will be added to the media DB. If it is already registered to the DB, then this tries to refresh information. \n
  *          If requested file does not exist on file system, information of the media file will be removed from the media DB. \n
- *          If file information does not exist in DB, this API will be return #MEDIA_CONTENT_ERROR_INVALID_PARAMETER.
+ *          If file information does not exist in DB, this function will be return #MEDIA_CONTENT_ERROR_INVALID_PARAMETER.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -100,8 +100,8 @@ int media_content_disconnect(void);
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using  this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  * @remarks Since 4.0, this function is related to the following feature:\n
  *              %http://tizen.org/feature/content.scanning.others\n
@@ -136,7 +136,7 @@ int media_content_scan_file(const char *path);
  *          After moving or renaming a folder in the filesystem, call this function on its source location
  *          (this will remove an entry from the database) and call this function again on its destination location
  *          (this will add a new entry to the database).\n
- *          Alternatively, you can call this API on any parent of source location and on any parent of destination location.\n
+ *          Alternatively, you can call this function on any parent of source location and on any parent of destination location.\n
  *          You can also call the function once, on a folder which is a parent of both source and destination.\n
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
@@ -147,15 +147,15 @@ int media_content_scan_file(const char *path);
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using  this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  *
- * @param[in] path         The folder path
+ * @param[in] path The folder path
  * @param[in] is_recursive Set @c true to scan recursively subdirectories,
  *                         otherwise @c false to scan only the current directory
- * @param[in] callback     The callback to be invoked when the scanning is finished
- * @param[in] user_data    The user data to be passed to the callback function
+ * @param[in] callback The callback to be invoked when the scanning is finished
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -167,6 +167,7 @@ int media_content_scan_file(const char *path);
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_DB_FAILED    DB Operation failed
  * @retval #MEDIA_CONTENT_ERROR_DB_BUSY    DB Operation busy
+ * @retval #MEDIA_CONTENT_ERROR_NETWORK   Network fail
  *
  * @pre This function requires opened connection to content service by media_content_connect().
  * @see media_scan_completed_cb()
@@ -178,7 +179,7 @@ int media_content_scan_folder(const char *path, bool is_recursive, media_scan_co
  * @brief Requests to cancel the media folder scanning.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in] path         The folder path
+ * @param[in] path The folder path
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -195,14 +196,14 @@ int media_content_cancel_scan_folder(const char *path);
  * @brief Subscribes notifications of the media DB change.
  * @details This function subscribes notifications of the media DB change which are published by the media server or other apps. \n
  *          media_content_db_update_cb() function will be called when notification of the media DB change is subscribed. \n
- *          Using this API, multiple callback is possible to register in one process.
+ *          Using this function, multiple callback is possible to register in one process.
  *
  * @since_tizen 3.0
  *
- * @remarks  To release the registered callback, you must use media_content_remove_db_updated_cb() API. \n
- *           If you set the same callback that you previously added, this API returns MEDIA_CONTENT_ERROR_INVALID_OPERATION error. \n
+ * @remarks The @a noti_handle should be released using media_content_remove_db_updated_cb(). \n
+ *           If you set the same callback that you previously added, this function returns MEDIA_CONTENT_ERROR_INVALID_OPERATION error. \n
  *
- * @param[in] callback  The callback to be invoked when the scanning is finished
+ * @param[in] callback The callback to be invoked when the scanning is finished
  * @param[in] user_data The user data to be passed to the callback function
  * @param[out] noti_handle The handle to db updated notification
  *
@@ -219,9 +220,8 @@ int media_content_cancel_scan_folder(const char *path);
  */
 int media_content_add_db_updated_cb(media_content_db_update_cb callback, void *user_data, media_content_noti_h *noti_handle);
 
-
 /**
- * @brief Unsubscribes notifications of the media DB change.
+ * @brief Removes notifications of the media DB change.
  * @details This function unsubscribes notifications of the media DB change which are published by the media server or other apps.
  *
  * @since_tizen 3.0
@@ -248,4 +248,4 @@ int media_content_remove_db_updated_cb(media_content_noti_h noti_handle);
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_CONTENT_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_CONTENT_H__ */
index e25db20..d4c6a91 100755 (executable)
@@ -16,8 +16,8 @@
 
 
 
-#ifndef __TIZEN_MEDIA_CONTENT_INTERNAL_H__
-#define __TIZEN_MEDIA_CONTENT_INTERNAL_H__
+#ifndef __TIZEN_CONTENT_MEDIA_CONTENT_INTERNAL_H__
+#define __TIZEN_CONTENT_MEDIA_CONTENT_INTERNAL_H__
 
 #include <media_content_type.h>
 
@@ -62,4 +62,4 @@ int media_content_connect_with_uid(uid_t uid);
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
-#endif /*__TIZEN_MEDIA_CONTENT_INTERNAL_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_CONTENT_INTERNAL_H__*/
index 43203cd..52e8ecd 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_CONTENT_TYPE_H__
-#define __TIZEN_MEDIA_CONTENT_TYPE_H__
+#ifndef __TIZEN_CONTENT_MEDIA_CONTENT_TYPE_H__
+#define __TIZEN_CONTENT_MEDIA_CONTENT_TYPE_H__
 
 #include <time.h>
 #include <tizen.h>
@@ -113,7 +113,7 @@ typedef enum {
 typedef enum {
        MEDIA_CONTENT_ORDER_ASC   = 0,      /**< Ascending order*/
        MEDIA_CONTENT_ORDER_DESC  = 1,      /**< Descending order*/
-       MEDIA_CONTENT_ORDER_OTHER = 2,          /** order by order key**/
+       MEDIA_CONTENT_ORDER_OTHER = 2,          /**< order by order key**/
 } media_content_order_e;
 
 /**
@@ -128,6 +128,12 @@ typedef enum {
        MEDIA_CONTENT_COLLATE_LOCALIZED = 3,        /**< Collation LOCALIZATION, NOCASE also applied */
 } media_content_collation_e;
 
+/**
+* @brief Error class.
+* @details Class for Media Content error
+* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+*
+*/
 #define MEDIA_CONTENT_ERROR_CLASS                              TIZEN_ERROR_MEDIA_CONTENT
 
 /**
@@ -281,10 +287,19 @@ typedef void *media_content_noti_h;
 /**
  * @ingroup CAPI_MEDIA_CONTENT_MODULE
  * @brief Called when the media scanning is finished.
+ * @details The following error codes can be received: \n
+ *             #MEDIA_CONTENT_ERROR_NONE : Success \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_PARAMETER : Invalid parameter \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_OPERATION : Invalid operation \n
+ *             #MEDIA_CONTENT_ERROR_PERMISSION_DENIED : Permission denied \n
+ *             #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY : Out of memory \n
+ *             #MEDIA_CONTENT_ERROR_DB_FAILED : DB Operation failed \n
+ *             #MEDIA_CONTENT_ERROR_DB_BUSY : DB Operation busy \n
+ *             #MEDIA_CONTENT_ERROR_NETWORK : Network fail \n
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] error     The error code
+ * @param[in] error The error code
  * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_content_scan_folder().
@@ -295,19 +310,21 @@ typedef void (*media_scan_completed_cb)(media_content_error_e error, void * user
 /**
  * @ingroup CAPI_MEDIA_CONTENT_MODULE
  * @brief Called when the notification of the media DB change is subscribed.
+ * @details The following error codes can be received: \n
+ *             #MEDIA_CONTENT_ERROR_NONE : Success \n
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] error       The error code
- * @param[in] pid         The PID which publishes notification
+ * @param[in] error The error code
+ * @param[in] pid The PID which publishes notification
  * @param[in] update_item The update item of notification
  * @param[in] update_type The update type of notification
- * @param[in] media_type  The type of the media content (#media_content_type_e)
- * @param[in] uuid        The UUID of media or directory, which is updated
- * @param[in] path        The path of the media or directory
- * @param[in] mime_type   The mime type of the media info
- * @param[in] user_data   The user data passed from the foreach function
+ * @param[in] media_type The type of the media content (#media_content_type_e)
+ * @param[in] uuid The UUID of media or directory, which is updated
+ * @param[in] path The path of the media or directory
+ * @param[in] mime_type The MIME of the media info
+ * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_content_add_db_updated_cb().
  * @see media_content_add_db_updated_cb()
@@ -333,7 +350,7 @@ typedef void (*media_content_db_update_cb)(
  * @remarks To use the @a media outside this function, copy the handle with media_info_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] media     The handle to the media info
+ * @param[in] media The handle to the media info
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -355,11 +372,21 @@ typedef bool (*media_info_cb)(media_info_h media, void *user_data);
 /**
  * @ingroup CAPI_CONTENT_MEDIA_INFO_MODULE
  * @brief Called when media items are inserted completely.
+ * @details The following error codes can be received: \n
+ *             #MEDIA_CONTENT_ERROR_NONE : Success \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_PARAMETER : Invalid parameter \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_OPERATION : Invalid operation \n
+ *             #MEDIA_CONTENT_ERROR_PERMISSION_DENIED : Permission denied \n
+ *             #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY : Out of memory \n
+ *             #MEDIA_CONTENT_ERROR_DB_FAILED : DB Operation failed \n
+ *             #MEDIA_CONTENT_ERROR_DB_BUSY : DB Operation busy \n
+ *             #MEDIA_CONTENT_ERROR_NETWORK : Network fail \n
+ *             #MEDIA_CONTENT_ERROR_NOT_SUPPORTED : Not supported \n
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] media     The handle to the media info
+ * @param[in] error The error code
  * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_info_insert_batch_to_db()
@@ -372,11 +399,20 @@ typedef void (*media_insert_completed_cb)(media_content_error_e error, void * us
  * @deprecated Deprecated since 4.0.
  * @ingroup CAPI_CONTENT_MEDIA_INFO_MODULE
  * @brief Called when the burst shot is inserted completely.
+ * @details The following error codes can be received: \n
+ *             #MEDIA_CONTENT_ERROR_NONE : Success \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_PARAMETER : Invalid parameter \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_OPERATION : Invalid operation \n
+ *             #MEDIA_CONTENT_ERROR_PERMISSION_DENIED : Permission denied \n
+ *             #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY : Out of memory \n
+ *             #MEDIA_CONTENT_ERROR_DB_FAILED : DB Operation failed \n
+ *             #MEDIA_CONTENT_ERROR_DB_BUSY : DB Operation busy \n
+ *             #MEDIA_CONTENT_ERROR_NETWORK : Network fail \n
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] media     The handle to the media info
+ * @param[in] error The error code
  * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_info_insert_burst_shot_to_db()
@@ -401,8 +437,8 @@ typedef void (*media_insert_burst_shot_completed_cb)(media_content_error_e error
  *
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] error     The error code
- * @param[in] path      The path of the thumbnail which is generated
+ * @param[in] error The error code
+ * @param[in] path The path of the thumbnail which is generated
  * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_info_create_thumbnail()
@@ -426,8 +462,8 @@ typedef void (*media_thumbnail_completed_cb)(media_content_error_e error, const
  *
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] error     The error code
- * @param[in] face_count      The number of all detected faces
+ * @param[in] error The error code
+ * @param[in] face_count The number of all detected faces
  * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_info_start_face_detection()
@@ -446,7 +482,7 @@ typedef void (*media_face_detection_completed_cb)(media_content_error_e error, c
  * @remarks To use the @a folder outside this function, copy the handle with the media_folder_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] folder    The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -468,7 +504,7 @@ typedef bool (*media_folder_cb)(media_folder_h folder, void *user_data);
  * @remarks To use the @a playlist outside this function, copy the handle with the media_playlist_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] playlist  The handle to the media playlist
+ * @param[in] playlist The handle to the media playlist
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -491,9 +527,9 @@ typedef bool (*media_playlist_cb)(media_playlist_h playlist, void *user_data);
  * @remarks To use the @a media outside this function, copy the handle with the media_info_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] playlist_member_id The ID to member of the playlist
- * @param[in] media              The handle to the media info
- * @param[in] user_data          The user data passed from the foreach function
+ * @param[in] playlist_member_id The ID of the playlist member
+ * @param[in] media The handle to the media info
+ * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
  *         otherwise @c false to break out of the loop
@@ -515,7 +551,7 @@ typedef bool (*playlist_member_cb)(int playlist_member_id, media_info_h media, v
  * @remarks To use the @a tag outside this function, copy the handle with the media_tag_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] tag       The handle to the media tag
+ * @param[in] tag The handle to the media tag
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -539,7 +575,7 @@ typedef bool (*media_tag_cb)(media_tag_h tag, void *user_data);
  * @remarks To use the @a bookmark outside this function, copy the handle with the media_bookmark_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] bookmark  The handle to the video bookmark
+ * @param[in] bookmark The handle to the media bookmark
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -560,7 +596,7 @@ typedef bool (*media_bookmark_cb)(media_bookmark_h bookmark, void *user_data);
  * @remarks To use the @a album outside this function, copy the handle with the media_album_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] album     The handle to the media album
+ * @param[in] album The handle to the media album
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -584,7 +620,7 @@ typedef bool (*media_album_cb)(media_album_h album, void *user_data);
  *                  The callback is called in the main loop.
  *
  * @param[in] group_name The name of the media group
- * @param[in] user_data  The user data passed from the foreach function
+ * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
  *         otherwise @c false to break out of the loop
@@ -604,8 +640,8 @@ typedef bool (*media_group_cb)(const char *group_name, void *user_data);
  * @remarks You should not destroy @a storage returned by this function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] storage     The handle of the media storage
- * @param[in] user_data  The user data passed from the foreach function
+ * @param[in] storage The handle of the media storage
+ * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
  *         otherwise @c false to break out of the loop
@@ -625,8 +661,8 @@ typedef bool (*media_storage_cb)(media_storage_h storage, void *user_data);
  * @remarks You should not destroy @a face returned by this function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] face     The handle of the media face
- * @param[in] user_data  The user data passed from the foreach function
+ * @param[in] face The handle of the media face
+ * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
  *         otherwise @c false to break out of the loop
@@ -646,7 +682,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
  */
 
  /**
- * @brief Media ID
+ * @brief Media ID.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -654,7 +690,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ID "MEDIA_ID"
 
 /**
- * @brief Media full path
+ * @brief Media full path.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -662,7 +698,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_PATH "MEDIA_PATH"
 
 /**
- * @brief The file name including the extension
+ * @brief The file name including the extension.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -670,7 +706,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_DISPLAY_NAME "MEDIA_DISPLAY_NAME"
 
 /**
- * @brief Media type
+ * @brief Media type.
  * @details There are 5 media types:\n
  *               0-image, 1-video, 2-sound, 3-music, 4-other\n
  *               You can use above define to set the condition of media filter and order keyword.
@@ -680,7 +716,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_TYPE "MEDIA_TYPE"
 
 /**
- * @brief Media MIME type
+ * @brief Media MIME type.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -689,7 +725,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 
 /**
- * @brief Media file size
+ * @brief Media file size.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -697,7 +733,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_SIZE "MEDIA_SIZE"
 
 /**
- * @brief The time that content file was first added to media database
+ * @brief The time that content file was first added to media database.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -705,7 +741,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ADDED_TIME "MEDIA_ADDED_TIME"
 
 /**
- * @brief The last modification time provided by the file system
+ * @brief The last modification time provided by the file system.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -713,7 +749,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_MODIFIED_TIME "MEDIA_MODIFIED_TIME"
 
 /**
- * @brief  Media created time
+ * @brief  Media created time.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -721,7 +757,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_TIMELINE "MEDIA_TIMELINE"
 
 /**
- * @brief Media thumbnail path
+ * @brief Media thumbnail path.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -729,7 +765,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_THUMBNAIL_PATH "MEDIA_THUMBNAIL_PATH"
 
 /**
- * @brief Media title get from tag or file name
+ * @brief Media title get from tag or file name.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -737,7 +773,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_TITLE "MEDIA_TITLE"
 
 /**
- * @brief Media album name
+ * @brief Media album name.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -745,7 +781,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ALBUM "MEDIA_ALBUM"
 
 /**
- * @brief Media artist
+ * @brief Media artist.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -753,7 +789,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ARTIST "MEDIA_ARTIST"
 
 /**
- * @brief Media album artist
+ * @brief Media album artist.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -761,7 +797,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ALBUM_ARTIST "MEDIA_ALBUM_ARTIST"
 
 /**
- * @brief Media genre
+ * @brief Media genre.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -769,7 +805,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_GENRE "MEDIA_GENRE"
 
 /**
- * @brief Media composer
+ * @brief Media composer.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -777,7 +813,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_COMPOSER "MEDIA_COMPOSER"
 
 /**
- * @brief Media year
+ * @brief Media year.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -785,7 +821,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_YEAR "MEDIA_YEAR"
 
 /**
- * @brief Media recorded date
+ * @brief Media recorded date.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -793,7 +829,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_RECORDED_DATE "MEDIA_RECORDED_DATE"
 
 /**
- * @brief Media copyright
+ * @brief Media copyright.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -801,7 +837,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_COPYRIGHT "MEDIA_COPYRIGHT"
 
 /**
- * @brief Media track number
+ * @brief Media track number.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -809,7 +845,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_TRACK_NUM "MEDIA_TRACK_NUM"
 
 /**
- * @brief Media description
+ * @brief Media description.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -817,7 +853,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_DESCRIPTION "MEDIA_DESCRIPTION"
 
 /**
- * @brief Media bitrate
+ * @brief Media bitrate.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -825,7 +861,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_BITRATE "MEDIA_BITRATE"
 
 /**
- * @brief Media bit per sample
+ * @brief Media bit per sample.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -833,7 +869,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_BITPERSAMPLE "MEDIA_BITPERSAMPLE"
 
 /**
- * @brief Media sample rate
+ * @brief Media sample rate.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -841,7 +877,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_SAMPLERATE "MEDIA_SAMPLERATE"
 
 /**
- * @brief Media channel
+ * @brief Media channel.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -849,7 +885,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_CHANNEL "MEDIA_CHANNEL"
 
 /**
- * @brief Media duration
+ * @brief Media duration.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -857,7 +893,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_DURATION "MEDIA_DURATION"
 
 /**
- * @brief Media longitude
+ * @brief Media longitude.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -865,7 +901,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_LONGITUDE "MEDIA_LONGITUDE"
 
 /**
- * @brief Media latitude
+ * @brief Media latitude.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -873,7 +909,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_LATITUDE "MEDIA_LATITUDE"
 
 /**
- * @brief Media altitude
+ * @brief Media altitude.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -881,7 +917,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ALTITUDE "MEDIA_ALTITUDE"
 
 /**
- * @brief Media width
+ * @brief Media width.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -889,7 +925,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_WIDTH "MEDIA_WIDTH"
 
 /**
- * @brief Media height
+ * @brief Media height.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -897,7 +933,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_HEIGHT "MEDIA_HEIGHT"
 
 /**
- * @brief Media datetaken
+ * @brief Media datetaken.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -905,7 +941,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_DATETAKEN "MEDIA_DATETAKEN"
 
 /**
- * @brief Media orientation
+ * @brief Media orientation.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -914,7 +950,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media burst ID
+ * @brief Media burst ID.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -923,7 +959,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media playedcount
+ * @brief Media playedcount.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -932,7 +968,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media last played time
+ * @brief Media last played time.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -941,7 +977,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media last played position of file
+ * @brief Media last played position of file.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -949,7 +985,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_LAST_PLAYED_POSITION "MEDIA_LAST_PLAYED_POSITION"
 
 /**
- * @brief Media rating
+ * @brief Media rating.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -957,7 +993,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_RATING "MEDIA_RATING"
 
 /**
- * @brief The time to register favourite
+ * @brief The time to register favourite.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -966,7 +1002,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media author
+ * @brief Media author.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -975,7 +1011,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media provider
+ * @brief Media provider.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -984,7 +1020,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media content name
+ * @brief Media content name.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -993,7 +1029,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media category
+ * @brief Media category.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1002,7 +1038,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media location tag
+ * @brief Media location tag.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1011,7 +1047,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media age rating
+ * @brief Media age rating.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1020,7 +1056,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media keyword
+ * @brief Media keyword.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1029,7 +1065,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media weather
+ * @brief Media weather.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1037,7 +1073,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_WEATHER "MEDIA_WEATHER"
 
 /**
- * @brief Is DRM
+ * @brief Is DRM.
  * @details There are 2 types:\n
  *               0-not drm, 1-drm\n
  *               You can use above define to set the condition of media filter and order keyword.
@@ -1047,7 +1083,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_IS_DRM "MEDIA_IS_DRM"
 
 /**
- * @brief Media storage
+ * @brief Media storage.
  * @details There are 2 types:\n
  *               0-internal storage, 1-external storage\n
  *               You can use above define to set the condition of media filter and order keyword.
@@ -1057,7 +1093,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_STORAGE_TYPE "MEDIA_STORAGE_TYPE"
 
 /**
- * @brief Media exposure time
+ * @brief Media exposure time.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
@@ -1065,7 +1101,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_EXPOSURE_TIME "MEDIA_EXPOSURE_TIME"
 
 /**
- * @brief Media fnumber
+ * @brief Media fnumber.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
@@ -1073,7 +1109,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_FNUMBER "MEDIA_FNUMBER"
 
 /**
- * @brief Media ISO
+ * @brief Media ISO.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
@@ -1081,7 +1117,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ISO "MEDIA_ISO"
 
 /**
- * @brief Media model
+ * @brief Media model.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
@@ -1089,7 +1125,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_MODEL "MEDIA_MODEL"
 
 /**
- * @brief Media file name pinyin
+ * @brief Media file name pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1100,7 +1136,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_FILE_NAME_PINYIN "MEDIA_FILE_NAME_PINYIN"
 
 /**
- * @brief Media title pinyin
+ * @brief Media title pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1111,7 +1147,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_TITLE_PINYIN "MEDIA_TITLE_PINYIN"
 
 /**
- * @brief Media album pinyin
+ * @brief Media album pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1122,7 +1158,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ALBUM_PINYIN "MEDIA_ALBUM_PINYIN"
 
 /**
- * @brief Media artist pinyin
+ * @brief Media artist pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1133,7 +1169,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ARTIST_PINYIN "MEDIA_ARTIST_PINYIN"
 
 /**
- * @brief Media album artist pinyin
+ * @brief Media album artist pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1144,7 +1180,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ALBUM_ARTIST_PINYIN "MEDIA_ALBUM_ARTIST_PINYIN"
 
 /**
- * @brief Media genre pinyin
+ * @brief Media genre pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1155,7 +1191,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_GENRE_PINYIN "MEDIA_GENRE_PINYIN"
 
 /**
- * @brief Media composer pinyin
+ * @brief Media composer pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1166,7 +1202,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_COMPOSER_PINYIN "MEDIA_COMPOSER_PINYIN"
 
 /**
- * @brief Media copyright pinyin
+ * @brief Media copyright pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1177,7 +1213,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_COPYRIGHT_PINYIN "MEDIA_COPYRIGHT_PINYIN"
 
 /**
- * @brief Media description pinyin
+ * @brief Media description pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1189,7 +1225,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media author pinyin
+ * @brief Media author pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1201,7 +1237,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media provider pinyin
+ * @brief Media provider pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1213,7 +1249,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media content name pinyin
+ * @brief Media content name pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1225,7 +1261,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media category pinyin
+ * @brief Media category pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1237,7 +1273,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media location tag pinyin
+ * @brief Media location tag pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1249,7 +1285,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media age rating pinyin
+ * @brief Media age rating pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1261,7 +1297,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media keyword pinyin
+ * @brief Media keyword pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1272,7 +1308,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_KEYWORD_PINYIN "MEDIA_KEYWORD_PINYIN"
 
 /**
- * @brief Virtual Reality content
+ * @brief Virtual Reality content.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen 3.0
  *
@@ -1280,21 +1316,21 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_360 "MEDIA_360"
 
  /**
- * @brief Folder ID
+ * @brief Folder ID.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define FOLDER_ID "FOLDER_ID"
 
 /**
- * @brief Folder full path
+ * @brief Folder full path.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define FOLDER_PATH "FOLDER_PATH"
 
 /**
- * @brief Folder base name
+ * @brief Folder base name.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
@@ -1302,14 +1338,14 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Folder modified time
+ * @brief Folder modified time.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define FOLDER_MODIFIED_TIME "FOLDER_MODIFIED_TIME"
 
 /**
- * @brief Folder storage
+ * @brief Folder storage.
  * @details There are 2 types:\n
  *               0-internal storage, 1-external storage\n
  *               You can use above define to set the condition of folder filter and order keyword.
@@ -1318,7 +1354,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define FOLDER_STORAGE_TYPE "FOLDER_STORAGE_TYPE"
 
 /**
- * @brief Folder base name pinyin
+ * @brief Folder base name pinyin.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1329,7 +1365,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Folder order info
+ * @brief Folder order info.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  */
@@ -1337,105 +1373,105 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Parent folder id
+ * @brief Parent folder id.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  */
 #define FOLDER_PARENT_FOLDER_ID "FOLDER_PARENT_FOLDER_ID"
 
 /**
- * @brief Playlist name
+ * @brief Playlist name.
  * @details You can use above define to set the condition of playlist filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define PLAYLIST_NAME "PLAYLIST_NAME"
 
 /**
- * @brief Playlist id
+ * @brief Playlist id.
  * @details You can use above define to set the condition of playlist filter and order keyword.
  * @since_tizen 4.0
  */
 #define MEDIA_PLAYLIST_ID "PLAYLIST_ID"
 
 /**
- * @brief Playlist name
+ * @brief Playlist member order.
  * @details You can use above define to set the condition of playlist filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define PLAYLIST_MEMBER_ORDER "PLAYLIST_MEMBER_ORDER"
 
 /**
- * @brief Media count in playlist
+ * @brief Media count in playlist.
  * @details You can use above define to set the condition of playlist filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define PLAYLIST_MEDIA_COUNT "PLAYLIST_MEDIA_COUNT"
 
 /**
- * @brief Tag name
+ * @brief Tag name.
  * @details You can use above define to set the condition of tag filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define TAG_NAME "TAG_NAME"
 
 /**
- * @brief Tag id
+ * @brief Tag id.
  * @details You can use above define to set the condition of tag filter and order keyword.
  * @since_tizen 4.0
  */
 #define MEDIA_TAG_ID "TAG_ID"
 
 /**
- * @brief Media count in tag
+ * @brief Media count in tag.
  * @details You can use above define to set the condition of tag filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define TAG_MEDIA_COUNT "TAG_MEDIA_COUNT"
 
 /**
- * @brief Bookmark marked time
+ * @brief Bookmark marked time.
  * @details You can use above define to set the condition of bookmark filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define BOOKMARK_MARKED_TIME "BOOKMARK_MARKED_TIME"
 
 /**
- * @brief Bookmark id
+ * @brief Bookmark id.
  * @details You can use above define to set the condition of bookmark filter and order keyword.
  * @since_tizen 4.0
  */
 #define MEDIA_BOOKMARK_ID "BOOKMARK_ID"
 
 /**
- * @brief Bookmark name
+ * @brief Bookmark name.
  * @details You can use above define to set the condition of bookmark filter and order keyword.
  * @since_tizen 4.0
  */
 #define BOOKMARK_NAME "BOOKMARK_NAME"
 
 /**
- * @brief Storage ID
+ * @brief Storage ID.
  * @details You can use above define to set the condition of storage filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  */
 #define MEDIA_STORAGE_ID                                       "STORAGE_ID"
 
 /**
- * @brief Storage path
+ * @brief Storage path.
  * @details You can use above define to set the condition of storage filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  */
 #define MEDIA_STORAGE_PATH                             "STORAGE_PATH"
 
 /**
- * @brief Face tag
+ * @brief Face tag.
  * @details You can use above define to set the condition of face filter and order keyword.
  * @since_tizen 3.0
  */
 #define MEDIA_FACE_TAG "MEDIA_FACE_TAG"
 
 /**
- * @brief Face id
+ * @brief Face id.
  * @details You can use above define to set the condition of face filter and order keyword.
  * @since_tizen 4.0
  */
@@ -1451,4 +1487,4 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #endif /* __cplusplus */
 
 
-#endif /*__TIZEN_MEDIA_CONTENT_TYPE_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_CONTENT_TYPE_H__*/
index 231b978..4f7596b 100755 (executable)
@@ -14,8 +14,8 @@
 * limitations under the License.
 */
 
-#ifndef __TIZEN_MEDIA_IMAGE_FACE_H__
-#define __TIZEN_MEDIA_IMAGE_FACE_H__
+#ifndef __TIZEN_CONTENT_MEDIA_FACE_H__
+#define __TIZEN_CONTENT_MEDIA_FACE_H__
 
 #include <media_content_type.h>
 
@@ -25,10 +25,10 @@ extern "C" {
 
 /**
  * @file media_face.h
- * @brief This file contains the media face API and related to all operations with the face information of the image in Media DB. \n
- *             Functions include cloning and destroying the face handler, getting face information such as face id, face coordinates in file, \n
+ * @brief This file contains the media face function and related to all operations with the face information of the image in Media DB. \n
+ *             Functions include cloning and destroying the media face handler, getting face information such as face id, face coordinates in file, \n
  *             face tag. Face information will be managed by DB. To insert face information, you should use media_face_insert_to_db() \n
- *             or media_info_start_face_detection() API. And you can insert,update,delete face information manually.
+ *             or media_info_start_face_detection() function. And you can insert,update,delete face information manually.
  */
 
 /**
@@ -37,17 +37,17 @@ extern "C" {
  */
 
 /**
- * @brief Clones the face handle.
- * @details This function copies the face handle from a source to
+ * @brief Clones the media face handle.
+ * @details This function copies the media face handle from a source to
  * destination. There is no media_face_create() function. The media_face_h is created internally and available through
  * media face foreach function such as media_face_foreach_face_from_db(). To use this handle outside of these foreach functions,
  * use this function.
  *
  * @since_tizen 3.0
- * @remark The destination handle must be released with media_event_destroy() by you.
+ * @remarks The @a dst should be released using media_face_destroy().
  *
- * @param [in] src The source face handle
- * @param [out] dst A destination face handle
+ * @param[out] dst The destination handle to the media face
+ * @param[in] src The source handle to the media face
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -61,36 +61,35 @@ extern "C" {
 int media_face_clone(media_face_h *dst, media_face_h src);
 
 /**
- * @brief Destroys the face handle.
- * @details Function frees all resources related to face handle. This
+ * @brief Destroys the media face handle.
+ * @details Function frees all resources related to media face handle. This
  * handle no longer can be used to perform any operation. New handle has to
  * be created before next usage.
  *
  * @since_tizen 3.0
  *
- * @param [in] face The face handle
+ * @param[in] face The media face handle
  *
  * @return 0 on success, otherwise a negative error value.
  *
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_face_clone()
- *
- * @pre Get copy of face handle by calling media_face_clone() or Get face handle by calling media_info_foreach_face_from_db()
+ * @pre Get copy of media face handle by calling media_face_clone() or Get media face handle by calling media_info_foreach_face_from_db()
  *
+ * @see media_face_clone()
  */
 int media_face_destroy(media_face_h face);
 
 /**
- * @brief Gets the face id from the face handle.
+ * @brief Gets the face id from the media face handle.
  *
  * @since_tizen 3.0
  *
- * @remarks You must release @a face_id using free().
+ * @remarks The @a face_id should be released using free().
  *
- * @param [in] face The face handle
- * @param [out] face_id The uuid of the face handle
+ * @param[in] face The media face handle
+ * @param[out] face_id The ID of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -100,14 +99,14 @@ int media_face_destroy(media_face_h face);
 int media_face_get_face_id(media_face_h face, char **face_id);
 
 /**
- * @brief Gets the media uuid from the face handle.
+ * @brief Gets the media id from the media face handle.
  *
  * @since_tizen 3.0
  *
- * @remarks You must release @a media_id using free().
+ * @remarks The @a media_id should be released using free().
  *
- * @param [in] face The face handle
- * @param [out] media_id The media uuid of the face handle
+ * @param[in] face The media face handle
+ * @param[out] media_id The media ID
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -117,16 +116,16 @@ int media_face_get_face_id(media_face_h face, char **face_id);
 int media_face_get_media_id(media_face_h face, char **media_id);
 
  /**
- * @brief Gets the face's rectangle from the face handle.
- * @details This API can get the face's rectangle information. returned rectangle information includes the orientation value.
+ * @brief Gets the face's rectangle from the media face handle.
+ * @details This function can get the face's rectangle information. returned rectangle information includes the orientation value.
  *
  * @since_tizen 3.0
  *
- * @param [in] face The face handle
- * @param [out] rect_x The x position of face of the face handle
- * @param [out] rect_y The y position of face of the face handle
- * @param [out] rect_w The width of face of the face handle
- * @param [out] rect_h The height of face of the face handle
+ * @param[in] face The media face handle
+ * @param[out] rect_x The x position of the media face
+ * @param[out] rect_y The y position of the media face
+ * @param[out] rect_w The width of the media face
+ * @param[out] rect_h The height of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -135,13 +134,13 @@ int media_face_get_media_id(media_face_h face, char **media_id);
 int media_face_get_face_rect(media_face_h face, unsigned int *rect_x, unsigned int *rect_y, unsigned int *rect_w, unsigned int *rect_h);
 
 /**
- * @brief Gets the orientation from the face handle.
- * @details This API can get the orientation value from the original image.
+ * @brief Gets the orientation from the media face handle.
+ * @details This function can get the orientation value from the original image.
  *
  * @since_tizen 3.0
  *
- * @param [in] face The face handle
- * @param [out] orientation The orientation of the face handle
+ * @param[in] face The media face handle
+ * @param[out] orientation The orientation of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -150,14 +149,14 @@ int media_face_get_face_rect(media_face_h face, unsigned int *rect_x, unsigned i
 int media_face_get_orientation(media_face_h face, media_content_orientation_e *orientation);
 
 /**
- * @brief Gets the tag from the face handle.
+ * @brief Gets the tag from the media face handle.
  *
  * @since_tizen 3.0
  *
- * @remarks You must release @a tag using free().
+ * @remarks The @a tag should be released using free().
  *
- * @param [in] face The face handle
- * @param [out] tag The tag of the face handle
+ * @param[in] face The media face handle
+ * @param[out] tag The tag of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -166,12 +165,14 @@ int media_face_get_orientation(media_face_h face, media_content_orientation_e *o
 int media_face_get_tag(media_face_h face, char **tag);
 
 /**
- * @brief Creates the face handle.
+ * @brief Creates the media face handle.
  *
  * @since_tizen 3.0
  *
- * @param [in] media_id The media uuid to create the face handle
- * @param [out] face The face handle
+ * @remarks The @a face should be released using media_face_destroy().
+ *
+ * @param[in] media_id The media ID
+ * @param[out] face The media face handle
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -182,14 +183,14 @@ int media_face_get_tag(media_face_h face, char **tag);
 int media_face_create(const char *media_id, media_face_h *face);
 
 /**
- * @brief Sets the face rectangle of the face handle
+ * @brief Sets the face rectangle of the media face handle.
  *
  * @since_tizen 3.0
  *
- * @param[in] face The face handle
+ * @param[in] face The media face handle
  * @param[in] rect_x The integer to set as a position x of face rectangle
  * @param[in] rect_y The integer to set as a position y of face rectangle
- * @param[in] rect_w The integer to set as a width  of face rectangle
+ * @param[in] rect_w The integer to set as a width of face rectangle
  * @param[in] rect_h The integer to set as a height of face rectangle
  *
  * @return 0 on success, otherwise a negative error value.
@@ -203,12 +204,12 @@ int media_face_create(const char *media_id, media_face_h *face);
 int media_face_set_face_rect(media_face_h face, unsigned int rect_x, unsigned int rect_y, unsigned int rect_w, unsigned int rect_h);
 
 /**
- * @brief Sets the orientation of the face handle
- * @details This API may set the value of the original image orientation.
+ * @brief Sets the orientation of the media face handle.
+ * @details This function may set the value of the original image orientation.
  *
  * @since_tizen 3.0
  *
- * @param[in] face The face handle
+ * @param[in] face The media face handle
  * @param[in] orientation The integer to set as an orientation
  *
  * @return 0 on success, otherwise a negative error value.
@@ -222,12 +223,12 @@ int media_face_set_face_rect(media_face_h face, unsigned int rect_x, unsigned in
 int media_face_set_orientation(media_face_h face, media_content_orientation_e orientation);
 
 /**
- * @brief Sets the tag of the face handle.
+ * @brief Sets the tag of the media face handle.
  *
  * @since_tizen 3.0
  *
- * @param [in] face The face handle
- * @param [in] tag The tag of the face handle
+ * @param[in] face The media face handle
+ * @param[in] tag The tag of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -246,9 +247,9 @@ int media_face_set_tag(media_face_h face, const char *tag);
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @remarks The created tag handle must be released using media_tag_destroy().
+ * @remarks The @a face should be released using media_face_destroy().
  *
- * @param [in] face The face handle
+ * @param[in] face The media face handle
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -278,7 +279,7 @@ int media_face_insert_to_db(media_face_h face);
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] face The face handle to update
+ * @param[in] face The media face handle to update
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -300,14 +301,14 @@ int media_face_insert_to_db(media_face_h face);
 int media_face_update_to_db(media_face_h face);
 
 /**
- * @brief Deletes the face with given face uuid from the media database.
+ * @brief Deletes the face with given face id from the media database.
  *
  * @since_tizen 3.0
  *
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param [in] face_id The id of media face
+ * @param[in] face_id The ID of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -328,8 +329,8 @@ int media_face_delete_from_db(const char *face_id);
  * @brief Gets the number of media faces with an optional filter from the media database.
  * @since_tizen 4.0
  *
- * @param[in]  filter      The handle to the face filter
- * @param[out] face_count  The count of the media faces
+ * @param[in] filter The handle to the media filter
+ * @param[out] face_count The count of the media faces
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -352,9 +353,9 @@ int media_face_get_face_count_from_db(filter_h filter, int *face_count);
  *          If @c NULL is passed to the @a filter, then no filtering is applied.
  * @since_tizen 4.0
  *
- * @param[in] filter     The handle to the face filter
- * @param[in] callback   The callback function to be invoked
- * @param[in] user_data  The user data to be passed to the callback function
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -382,4 +383,4 @@ int media_face_foreach_face_from_db(filter_h filter, media_face_cb callback, voi
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_IMAGE_FACE_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_FACE_H__ */
index 3e5f580..4a07385 100755 (executable)
@@ -16,8 +16,8 @@
 
 
 
-#ifndef __TIZEN_MEDIA_FILTER_H__
-#define __TIZEN_MEDIA_FILTER_H__
+#ifndef __TIZEN_CONTENT_MEDIA_FILTER_H__
+#define __TIZEN_CONTENT_MEDIA_FILTER_H__
 
 #include <media_content_type.h>
 
@@ -46,9 +46,9 @@ extern "C" {
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the @a filter handle using media_info_filter_destroy().
+ * @remarks The @a filter should be released using media_info_filter_destroy().
  *
- * @param[out] filter A handle to the media filter
+ * @param[out] filter The handle to the media filter
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -89,8 +89,8 @@ int media_filter_destroy(filter_h filter);
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @param[in] filter The handle to the media filter
- * @param[in] offset The start position of the given filter (Starting from zero)
- * @param[in] count  The number of items to be searched with respect to the offset
+ * @param[in] offset The start position of the given media filter (Starting from zero)
+ * @param[in] count The number of items to be searched with respect to the offset
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -107,8 +107,8 @@ int media_filter_set_offset(filter_h filter, int offset, int count);
  * @brief Sets the @a condition for the given @a filter.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter       The handle to the media filter
- * @param[in] condition    The condition which is used WHERE clause on a query
+ * @param[in] filter The handle to the media filter
+ * @param[in] condition The condition which is used WHERE clause on a query
  * @param[in] collate_type The collate type for comparing two strings
  *
  * @return @c 0 on success,
@@ -124,13 +124,13 @@ int media_filter_set_offset(filter_h filter, int offset, int count);
 int media_filter_set_condition(filter_h filter, const char *condition, media_content_collation_e collate_type);
 
 /**
- * @brief Sets the media filter content @a order and order keyword i.e. either descending or ascending.
+ * @brief Sets the media filter content @a order_type and @a order_keyword i.e. either descending or ascending.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter        The handle to the media filter
- * @param[in] order_type    The search order type
+ * @param[in] filter The handle to the media filter
+ * @param[in] order_type The search order type
  * @param[in] order_keyword The search order keyword
- * @param[in] collate_type  The collate type for comparing two strings
+ * @param[in] collate_type The collate type for comparing two strings
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -144,13 +144,13 @@ int media_filter_set_condition(filter_h filter, const char *condition, media_con
 int media_filter_set_order(filter_h filter, media_content_order_e order_type, const char *order_keyword, media_content_collation_e collate_type);
 
 /**
- * @brief Sets the @a storage id for the given @a filter.
- * @details You can use this API when you want to search items only in the specific storage
+ * @brief Sets the @a storage_id for the given @a filter.
+ * @details You can use this function when you want to search items only in the specific storage
  *
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in] filter       The handle to the media filter
- * @param[in] storage_id    The storage_id for browsing or searching
+ * @param[in] filter The handle to the media filter
+ * @param[in] storage_id The ID of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -168,9 +168,9 @@ int media_filter_set_storage(filter_h filter, const char *storage_id);
  * @brief Gets the @a offset and @a count for the given @a filter used to limit the number of items returned.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter The handle to the media filter
- * @param[out] offset The start position of the given filter (Starting from zero)
- * @param[out] count  The number of items to be searched with respect to the offset
+ * @param[in] filter The handle to the media filter
+ * @param[out] offset The start position of the given media filter (Starting from zero)
+ * @param[out] count The number of items to be searched with respect to the offset
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -187,10 +187,10 @@ int media_filter_get_offset(filter_h filter, int *offset, int *count);
  * @brief Gets the @a condition for the given @a filter.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a condition using free().
+ * @remarks The @a condition should be released using free().
  *
- * @param[in]  filter       The handle to the media info filter
- * @param[out] condition    The condition which is used WHERE clause on a query
+ * @param[in] filter The handle to the media filter
+ * @param[out] condition The condition which is used WHERE clause on a query
  * @param[out] collate_type The collate type for comparing two strings
  *
  * @return @c 0 on success,
@@ -206,15 +206,15 @@ int media_filter_get_offset(filter_h filter, int *offset, int *count);
 int media_filter_get_condition(filter_h filter, char **condition, media_content_collation_e *collate_type);
 
 /**
- * @brief Gets the media filter's content @a order and order keyword i.e. either descending or ascending.
+ * @brief Gets the media filter's content @a order_type and @a order_keyword i.e. either descending or ascending.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a order_keyword using free().
+ * @remarks The @a order_keyword should be released using free().
  *
- * @param[in]  filter        The handle to the media filter
- * @param[out] order_type    The search order type
+ * @param[in] filter The handle to the media filter
+ * @param[out] order_type The search order type
  * @param[out] order_keyword The search order keyword
- * @param[out] collate_type  The collate type for comparing two strings
+ * @param[out] collate_type The collate type for comparing two strings
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -228,13 +228,13 @@ int media_filter_get_condition(filter_h filter, char **condition, media_content_
 int media_filter_get_order(filter_h filter, media_content_order_e* order_type, char **order_keyword, media_content_collation_e *collate_type);
 
 /**
- * @brief Get the @a storage id for given @a filter.
+ * @brief Gets the @a storage_id for given @a filter.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_id using free().
+ * @remarks The @a storage_id should be released using free().
  *
- * @param[in] filter The handle to media info filter
- * @param[out] storage_id The storage_id which is used in filter
+ * @param[in] filter The handle to the media filter
+ * @param[out] storage_id The ID of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -255,4 +255,4 @@ int media_filter_get_storage(filter_h filter, char **storage_id);
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_FILTER_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_FILTER_H__ */
index bc9d138..1d0ac25 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_FOLDER_H__
-#define __TIZEN_MEDIA_FOLDER_H__
+#ifndef __TIZEN_CONTENT_MEDIA_FOLDER_H__
+#define __TIZEN_CONTENT_MEDIA_FOLDER_H__
 
 
 #include <media_content_type.h>
@@ -45,8 +45,7 @@ extern "C" {
  * @brief Gets the count of folder for the passed @a filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter       The handle to filter \n
- *                          To allow searching over different content types, you should use #filter_h.
+ * @param[in] filter The handle to the media filter
  * @param[out] folder_count The count of the media folder
  *
  * @return @c 0 on success,
@@ -76,8 +75,8 @@ int media_folder_get_folder_count_from_db(filter_h filter, int *folder_count);
  *                   So, your callback function is in read state in SQLite. When you are in read state, sometimes you do not update DB. \n
  *                   We do not recommend you call updating DB function in callback of foreach function.
  *
- * @param[in] filter    The handle to the media folder filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -101,11 +100,11 @@ int media_folder_get_folder_count_from_db(filter_h filter, int *folder_count);
 int media_folder_foreach_folder_from_db(filter_h filter, media_folder_cb callback, void *user_data);
 
 /**
- * @brief Gets the count of media files for the passed @a filter in the given @a folder from the media database.
+ * @brief Gets the count of media files for the passed @a filter in the given @a folder_id from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] folder_id    The ID of the media folder
- * @param[in] filter       The filter of the media content
+ * @param[in] folder_id The ID of the media folder
+ * @param[in] filter The handle to the media filter
  * @param[out] media_count The count of media folder items
  *
  * @return @c 0 on success,
@@ -124,7 +123,7 @@ int media_folder_foreach_folder_from_db(filter_h filter, media_folder_cb callbac
 int media_folder_get_media_count_from_db(const char *folder_id, filter_h filter, int *media_count);
 
 /**
- * @brief Iterates through the media files with an optional @a filter in the given @a folder from the media database.
+ * @brief Iterates through the media files with an optional @a filter in the given @a folder_id from the media database.
  * @details This function gets all media files associated with the given folder and
  *          meeting desired filter option and calls @a callback for
  *          every retrieved media item. If @c NULL is passed to the @a filter, no filtering is applied.
@@ -137,8 +136,8 @@ int media_folder_get_media_count_from_db(const char *folder_id, filter_h filter,
  *                    We do not recommend you call updating DB function in callback of foreach function.
  *
  * @param[in] folder_id The ID of the media folder
- * @param[in] filter    The handle to the media info filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -169,10 +168,10 @@ int media_folder_foreach_media_from_db(const char *folder_id, filter_h filter, m
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks The destination handle must be released with media_folder_destroy().
+ * @remarks The @a dst should be released using media_folder_destroy().
  *
  * @param[out] dst The destination handle to the media folder
- * @param[in]  src The source handle to the media folder
+ * @param[in] src The source handle to the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -211,9 +210,9 @@ int media_folder_destroy(media_folder_h folder);
  * @brief Gets the media folder ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a folder_id using free().
+ * @remarks The @a folder_id should be released using free().
  *
- * @param[in]  folder    The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[out] folder_id The ID of the media folder
  *
  * @return @c 0 on success,
@@ -229,9 +228,9 @@ int media_folder_get_folder_id(media_folder_h folder, char **folder_id);
  * @brief Gets the parent folder ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a parent_folder_id using free().
+ * @remarks The @a parent_folder_id should be released using free().
  *
- * @param[in]  folder    The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[out] parent_folder_id The ID of the upper media folder
  *
  * @return @c 0 on success,
@@ -246,10 +245,10 @@ int media_folder_get_parent_folder_id(media_folder_h folder, char **parent_folde
  * @brief Gets the absolute path to the media folder.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a path using free().
+ * @remarks The @a path should be released using free().
  *
- * @param[in]  folder The handle to the media folder
- * @param[out] path   The path of the media folder
+ * @param[in] folder The handle to the media folder
+ * @param[out] path The path of the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -265,9 +264,9 @@ int media_folder_get_path(media_folder_h folder, char **path);
  * @brief Gets the media folder name.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a folder_name using free().
+ * @remarks The @a folder_name should be released using free().
  *
- * @param[in]  folder      The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[out] folder_name The name of the media folder
  *
  * @return @c 0 on success,
@@ -284,8 +283,8 @@ int media_folder_get_name(media_folder_h folder, char **folder_name);
  * @brief Gets the modified date of the folder.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  folder The handle to the media folder
- * @param[out] date   The modified date of the folder
+ * @param[in] folder The handle to the media folder
+ * @param[out] date The modified date of the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -299,7 +298,7 @@ int media_folder_get_modified_time(media_folder_h folder, time_t *date) TIZEN_DE
  * @brief Gets the folder storage type.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  folder       The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[out] storage_type The storage type of the media folder
  *
  * @return @c 0 on success,
@@ -314,9 +313,9 @@ int media_folder_get_storage_type(media_folder_h folder, media_content_storage_e
  * @brief Gets the storage id of the folder.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_id using free().
+ * @remarks The @a storage_id should be released using free().
  *
- * @param[in]  folder      The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[out] storage_id The storage id of the media folder
  *
  * @return @c 0 on success,
@@ -336,7 +335,7 @@ int media_folder_get_storage_id(media_folder_h folder, char **storage_id);
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
  * @param[in] folder The handle to the media folder
- * @param[out] order   The viewing order of the media folder
+ * @param[out] order The viewing order of the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -355,10 +354,10 @@ int media_folder_get_order(media_folder_h folder, int *order) TIZEN_DEPRECATED_A
  *          Media folder will be created, which is filled with folder information.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a folder using media_folder_destroy().
+ * @remarks The @a folder should be released using media_folder_destroy().
  *
- * @param[in]  folder_id The ID of the media folder
- * @param[out] folder    The media folder handle associated with the folder ID
+ * @param[in] folder_id The ID of the media folder
+ * @param[out] folder The handle to the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -384,7 +383,7 @@ int media_folder_get_folder_from_db(const char *folder_id, media_folder_h *folde
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @param[in] folder The handle to the media folder
- * @param[in] name   The name of the media folder
+ * @param[in] name The name of the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -409,7 +408,7 @@ int media_folder_set_name(media_folder_h folder, const char *name) TIZEN_DEPRECA
  *                    If you don't use the filter, the set order value does not effect the folder viewing order.
  *
  * @param[in] folder The handle to the media folder
- * @param[in] order   The viewing order of the media folder
+ * @param[in] order The viewing order of the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -460,4 +459,4 @@ int media_folder_update_to_db(media_folder_h folder) TIZEN_DEPRECATED_API;
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_FOLDER_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_FOLDER_H__ */
index 7570129..0e82105 100755 (executable)
@@ -14,8 +14,8 @@
 * limitations under the License.
 */
 
-#ifndef __TIZEN_MEDIA_GROUP_H__
-#define __TIZEN_MEDIA_GROUP_H__
+#ifndef __TIZEN_CONTENT_MEDIA_GROUP_H__
+#define __TIZEN_CONTENT_MEDIA_GROUP_H__
 
 
 #include <media_content_type.h>
@@ -43,7 +43,7 @@ extern "C" {
  * @brief Gets the number of the album for the passed @a filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter      The media filter handle
+ * @param[in] filter The handle to the media filter
  * @param[out] album_count The count of the media album
  *
  * @return @c 0 on success,
@@ -69,8 +69,8 @@ int media_album_get_album_count_from_db(filter_h filter, int *album_count);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter    The media filter handle
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -96,9 +96,9 @@ int media_album_foreach_album_from_db(filter_h filter, media_album_cb callback,
  * @brief Gets the number of media info for the given album present in the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  album_id    The ID of the media album
- * @param[in]  filter      The media filter handle
- * @param[out] media_count The count of the album
+ * @param[in] album_id The ID of the media album
+ * @param[in] filter The handle to the media filter
+ * @param[out] media_count The count of the media album
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -108,7 +108,6 @@ int media_album_foreach_album_from_db(filter_h filter, media_album_cb callback,
  * @retval #MEDIA_CONTENT_ERROR_DB_FAILED         DB Operation failed
  * @retval #MEDIA_CONTENT_ERROR_DB_BUSY           DB Operation busy
  * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
-
  *
  * @pre This function requires opened connection to content service by media_content_connect().
  *
@@ -124,9 +123,9 @@ int media_album_get_media_count_from_db(int album_id, filter_h filter, int *medi
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] album_id  The ID of the media album
- * @param[in] filter    The media filter handle
- * @param[in] callback  The callback function to be invoked
+ * @param[in] album_id The ID of the media album
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -156,7 +155,7 @@ int media_album_foreach_media_from_db(int album_id, filter_h filter, media_info_
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] album The media album handle
+ * @param[in] album The handle to the media album
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -179,10 +178,10 @@ int media_album_destroy(media_album_h album);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the destination handle using media_album_destroy().
+ * @remarks The @a dst should be released using media_album_destroy().
  *
- * @param[in]  src  The source handle to the media album
- * @param[out] dst  The destination handle to the media album
+ * @param[out] dst The destination handle to the media album
+ * @param[in] src The source handle to the media album
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -200,8 +199,8 @@ int media_album_clone(media_album_h *dst, media_album_h src);
  * @brief Gets the ID of the album.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  album    The media album handle
- * @param[out] album_id The media album ID
+ * @param[in] album The handle to the media album
+ * @param[out] album_id The ID of the media album
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -217,10 +216,10 @@ int media_album_get_album_id(media_album_h album, int *album_id);
  * @brief Gets the name of the album.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album_name using free().
+ * @remarks The @a album_name should be released using free().
  *
- * @param[in]  album       The media album handle
- * @param[out] album_name  The name of the media album handle
+ * @param[in] album The handle to the media album
+ * @param[out] album_name The name of the media album handle
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -235,9 +234,9 @@ int media_album_get_name(media_album_h album, char **album_name);
  * @brief Gets the name of the artist from the given album.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a artist using free().
+ * @remarks The @a artist should be released using free().
  *
- * @param[in]  album  The media album handle
+ * @param[in] album The handle to the media album
  * @param[out] artist The name of the media artist
  *
  * @return @c 0 on success,
@@ -253,9 +252,9 @@ int media_album_get_artist(media_album_h album, char **artist);
  * @brief Gets the album art path from the album.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album_art using free().
+ * @remarks The @a album_art should be released using free().
  *
- * @param[in]  album     The media album handle
+ * @param[in] album The handle to the media album
  * @param[out] album_art The path of the media album_art
  *
  * @return @c 0 on success,
@@ -275,10 +274,10 @@ int media_album_get_album_art(media_album_h album, char **album_art);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a folder using media_album_destroy().
+ * @remarks The @a album should be released using media_album_destroy().
  *
- * @param[in]  album_id The ID of the media album
- * @param[out] album    The album handle associated with the album ID
+ * @param[in] album_id The ID of the media album
+ * @param[out] album The handle to the media album
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -312,9 +311,9 @@ int media_album_get_album_from_db(int album_id, media_album_h *album);
  * @brief Gets the number of the group for the passed @a filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter       The media filter handle
- * @param[in]  group        The type of the media group
- * @param[out] group_count  The count of the media group
+ * @param[in] filter The handle to the media filter
+ * @param[in] group The type of the media group
+ * @param[out] group_count The count of the media group
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -339,9 +338,9 @@ int media_group_get_group_count_from_db(filter_h filter, media_group_e group, in
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter    The media filter handle
- * @param[in] group     The type of the media group
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] group The type of the media group
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -367,9 +366,9 @@ int media_group_foreach_group_from_db(filter_h filter, media_group_e group, medi
  * @brief Gets the count of the media info for the given media group present in the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  group_name  The name of the media group
- * @param[in]  group       The type of the media group
- * @param[in]  filter      The media filter handle
+ * @param[in] group_name The name of the media group
+ * @param[in] group The type of the media group
+ * @param[in] filter The handle to the media filter
  * @param[out] media_count The count of the media
  *
  * @return @c 0 on success,
@@ -397,10 +396,10 @@ int media_group_get_media_count_from_db(const char *group_name, media_group_e gr
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @param[in] group_name The name of the media group
- * @param[in] group      The type of the media group
- * @param[in] filter     The media filter handle
- * @param[in] callback   The callback function to be invoked
- * @param[in] user_data  The user data to be passed to the callback function
+ * @param[in] group The type of the media group
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -429,4 +428,4 @@ int media_group_foreach_media_from_db(const char *group_name, media_group_e grou
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_GROUP_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_GROUP_H__ */
index 0ec7bbd..8e8ff9a 100755 (executable)
@@ -16,8 +16,8 @@
 
 
 
-#ifndef __TIZEN_IMAGE_META_H__
-#define __TIZEN_IMAGE_META_H__
+#ifndef __TIZEN_CONTENT_MEDIA_IMAGE_H__
+#define __TIZEN_CONTENT_MEDIA_IMAGE_H__
 
 #include <media_content_type.h>
 
@@ -43,10 +43,10 @@ extern "C" {
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks The destination handle must be released with image_meta_destroy().
+ * @remarks The @a dst should be released using image_meta_destroy().
  *
- * @param[out] dst  The destination handle to the image metadata
- * @param[in]  src  The source handle to the image metadata
+ * @param[out] dst The destination handle to the image metadata
+ * @param[in] src The source handle to the image metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -67,7 +67,7 @@ int image_meta_clone(image_meta_h *dst, image_meta_h src);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] image The image metadata handle
+ * @param[in] image The handle to the image metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -85,8 +85,10 @@ int image_meta_destroy(image_meta_h image);
  * @brief Gets the ID of an image.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image    The image metadata handle
- * @param[out] media_id The ID of an image
+ * @remarks The @a media_id should be released using free().
+ *
+ * @param[in] image The handle to the image metadata
+ * @param[out] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -101,7 +103,7 @@ int image_meta_get_media_id(image_meta_h image, char **media_id);
  * @brief Gets the image width in pixels.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image The image metadata handle
+ * @param[in] image The handle to the image metadata
  * @param[out] width The image width in pixels
  *
  * @return @c 0 on success,
@@ -116,7 +118,7 @@ int image_meta_get_width(image_meta_h image, int *width);
  * @brief Gets the image height in pixels.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image  The image metadata handle
+ * @param[in] image The handle to the image metadata
  * @param[out] height The image height in pixels
  *
  * @return @c 0 on success,
@@ -131,7 +133,7 @@ int image_meta_get_height(image_meta_h image, int *height);
  * @brief Gets the image orientation.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image       The image metadata handle
+ * @param[in] image The handle to the image metadata
  * @param[out] orientation The image orientation
  *
  * @return @c 0 on success,
@@ -146,7 +148,9 @@ int image_meta_get_orientation(image_meta_h image, media_content_orientation_e *
  * @brief Gets the image creation time.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image      The image metadata handle
+ * @remarks The @a date_taken should be released using free().
+ *
+ * @param[in] image The handle to the image metadata
  * @param[out] date_taken The time, when image was taken (in seconds, since the Epoch)
  *
  * @return @c 0 on success,
@@ -163,10 +167,10 @@ int image_meta_get_date_taken(image_meta_h image, char **date_taken);
  * @brief Gets the burst shot ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a burst_id using free().
+ * @remarks The @a burst_id should be released using free().
  *
- * @param[in]  image    The image metadata handle
- * @param[out] burst_id The ID of burst shot\ n
+ * @param[in] image The handle to the image metadata
+ * @param[out] burst_id The ID of the burst shot\ n
  *                      If @a burst_id is @c NULL, this is not burst shot
  *
  * @return @c 0 on success,
@@ -179,13 +183,13 @@ int image_meta_get_date_taken(image_meta_h image, char **date_taken);
 int image_meta_get_burst_id(image_meta_h image, char **burst_id) TIZEN_DEPRECATED_API;
 
 /**
- * @brief Gets the exposure time from exif.
+ * @brief Gets the exposure time from EXIF.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks @a exposure time must be released with free() by you.
+ * @remarks The @a exposure_time should be released using free().
  *
- * @param[in]  image    The image metadata handle
- * @param[out] exposure_time The value of exposure_time, getting from exif
+ * @param[in] image The handle to the image metadata
+ * @param[out] exposure_time The value of exposure_time, getting from EXIF
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -198,11 +202,11 @@ int image_meta_get_burst_id(image_meta_h image, char **burst_id) TIZEN_DEPRECATE
 int image_meta_get_exposure_time(image_meta_h image, char **exposure_time);
 
 /**
- * @brief Gets the fnumber from exif.
+ * @brief Gets the fnumber from EXIF.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in]  image    The image metadata handle
- * @param[out] fnumber The value of fnumber, getting from exif
+ * @param[in] image The handle to the image metadata
+ * @param[out] fnumber The value of fnumber, getting from EXIF
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -214,11 +218,11 @@ int image_meta_get_exposure_time(image_meta_h image, char **exposure_time);
 int image_meta_get_fnumber(image_meta_h image, double *fnumber);
 
 /**
- * @brief Gets the iso from exif.
+ * @brief Gets the iso from EXIF.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in]  image    The image metadata handle
- * @param[out] iso The value of iso, getting from exif
+ * @param[in] image The handle to the image metadata
+ * @param[out] iso The value of iso, getting from EXIF
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -230,13 +234,13 @@ int image_meta_get_fnumber(image_meta_h image, double *fnumber);
 int image_meta_get_iso(image_meta_h image, int *iso);
 
 /**
- * @brief Gets the model from exif.
+ * @brief Gets the model from EXIF.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks @a model must be released with free() by you.
+ * @remarks The @a model should be released using free().
  *
- * @param[in]  image    The image metadata handle
- * @param[out] model The value of model, getting from exif
+ * @param[in] image The handle to the image metadata
+ * @param[out] model The value of model, getting from EXIF
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -253,7 +257,7 @@ int image_meta_get_model(image_meta_h image, char **model);
  * @brief Checks whether the media is a burst shot image.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image         The image metadata handle
+ * @param[in] image The handle to the image metadata
  * @param[out] is_burst_shot @c true if the media is a burst shot image,
  *                           otherwise @c false if the media is not a burst shot image
  *
@@ -270,7 +274,7 @@ int image_meta_is_burst_shot(image_meta_h image, bool *is_burst_shot) TIZEN_DEPR
  * @brief Sets an orientation of the image.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] image       The image metadata handle
+ * @param[in] image The handle to the image metadata
  * @param[in] orientation The image orientation
  *
  * @return @c 0 on success,
@@ -295,7 +299,7 @@ int image_meta_set_orientation(image_meta_h image, media_content_orientation_e o
  *
  * @remarks Do not call this function in callback function of foreach function like media_info_foreach_media_from_db().
  *
- * @param[in] image The handle to the image
+ * @param[in] image The handle to the image metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -324,4 +328,4 @@ int image_meta_update_to_db(image_meta_h image) TIZEN_DEPRECATED_API;
 }
 #endif /* __cplusplus */
 
-#endif /*__TIZEN_IMAGE_META_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_IMAGE_H__*/
index 1a7604f..fb583a1 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_INFORMATION_H__
-#define __TIZEN_MEDIA_INFORMATION_H__
+#ifndef __TIZEN_CONTENT_MEDIA_INFO_H__
+#define __TIZEN_CONTENT_MEDIA_INFO_H__
 
 #include <media_content_type.h>
 
@@ -28,7 +28,7 @@ extern "C" {
 
 /**
  * @file media_info.h
- * @brief This file contains the media info API and related functions to proceed with it. \n
+ * @brief This file contains the media info function and related functions to proceed with it. \n
  *        You can use the functions to insert, delete, count and get list of content files from media database. \n
  *        You can get properties of content file such as size, mime_type, modified_time etc. And you can set properties such as provider, favorite etc. \n
  *        And you can get bookmark, face, tag info related the content file.
@@ -42,8 +42,8 @@ extern "C" {
 
 /**
  * @brief  Inserts the content file into the media database.
- * @details In general, you can use this API to insert content files into the media database. \n
- *                You can use media_content_scan_file()/media_content_scan_folder() API instead of this API.
+ * @details In general, you can use this function to insert content files into the media database. \n
+ *                You can use media_content_scan_file()/media_content_scan_folder() function instead of this function.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -52,16 +52,16 @@ extern "C" {
  *                   %http://tizen.org/privilege/mediastorage \n
  *                   %http://tizen.org/privilege/externalstorage
  *
- * @remarks You must release the handle using media_info_destroy(). \n
+ * @remarks The @a info should be released using media_info_destroy(). \n
  *                   You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using  this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  * @remarks Since 4.0, this function is related to the following feature:\n
  *              %http://tizen.org/feature/content.scanning.others\n
  *              If this feature is not suppported on the device, MEDIA_CONTENT_TYPE_OTHERS type file is not scanned.
  *
- * @param[in]  path The path of the content file to add
+ * @param[in] path The path of the content file to add
  * @param[out] info The handle of the inserted content file
  *
  * @return @c 0 on success,
@@ -97,17 +97,17 @@ int media_info_insert_to_db(const char *path, media_info_h *info);
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using  this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  * @remarks Since 4.0, this function is related to the following feature:\n
  *              %http://tizen.org/feature/content.scanning.others\n
  *              If this feature is not suppported on the device, MEDIA_CONTENT_TYPE_OTHERS type file is not scanned.
  *
- * @param[in] path_array   The path array of the content files to add
+ * @param[in] path_array The path array of the content files to add
  * @param[in] array_length The length of the array
- * @param[in] callback     The callback to be invoked when media items inserted completely
- * @param[in] user_data    The user data to be passed to the callback function
+ * @param[in] callback The callback function to be invoked when media items inserted completely
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -143,14 +143,14 @@ int media_info_insert_batch_to_db(const char **path_array, unsigned int array_le
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage with this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage with this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage with this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage with this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  *
- * @param[in] path_array   The path array of the burst shot images to add
+ * @param[in] path_array The path array of the burst shot images to add
  * @param[in] array_length The length of the array
- * @param[in] callback     The callback to be invoked when the images are inserted completely
- * @param[in] user_data    The user data to be passed to the callback function
+ * @param[in] callback The callback function to be invoked when the images are inserted completely
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -174,14 +174,14 @@ int media_info_insert_burst_shot_to_db(const char **path_array, unsigned int arr
 /**
  * @brief Deletes the media information from the media database.
  * @details This function only remove media information in the media database. \n
- *               You can use media_content_scan_file()/media_content_scan_folder() API instead of this API if file is removed from the file system.
+ *               You can use media_content_scan_file()/media_content_scan_folder() function instead of this function if file is removed from the file system.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] media_id  The media ID. It can get from media info handle.
+ * @param[in] media_id The media ID. It can get from media info handle.
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -212,7 +212,7 @@ int media_info_delete_from_db(const char *media_id);
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] filter  The filter handle
+ * @param[in] filter The handle to the media filter
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -241,7 +241,7 @@ int media_info_delete_batch_from_db(filter_h filter) TIZEN_DEPRECATED_API;
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media  The media info handle
+ * @param[in] media The handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -265,10 +265,10 @@ int media_info_destroy(media_info_h media);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the destination handle using media_info_destroy().
+ * @remarks The @a dst should be released using media_info_destroy().
  *
- * @param[out] dst  The destination handle to the media info
- * @param[in]  src  The source handle to media info
+ * @param[out] dst The destination handle to the media info
+ * @param[in] src The source handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -295,7 +295,7 @@ int media_info_clone(media_info_h *dst, media_info_h src);
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  *
- * @param[in]  filter      The handle to filter
+ * @param[in] filter The handle to the media filter
  * @param[out] media_count The count of media
  *
  * @return @c 0 on success,
@@ -327,8 +327,8 @@ int media_info_get_media_count_from_db(filter_h filter, int *media_count);
  *                   So, your callback function is in read state in SQLite. When you are in read state, sometimes you do not update DB.
  *                   We do not recommend you call updating DB function in callback of foreach function.
  *
- * @param[in] filter    The media info handle filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -356,8 +356,8 @@ int media_info_foreach_media_from_db(filter_h filter, media_info_cb callback, vo
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media_id  The ID of the media info
- * @param[in]  filter    The handle to the media filter
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
  * @param[out] tag_count The count of the media tag
  *
  * @return @c 0 on success,
@@ -383,9 +383,9 @@ int media_info_get_tag_count_from_db(const char *media_id, filter_h filter, int
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media_id  The ID of the media info
- * @param[in] filter    The handle to the media filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -413,9 +413,9 @@ int media_info_foreach_tag_from_db(const char *media_id, filter_h filter, media_
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media_id        The ID of the media info
- * @param[in]  filter          The handle to the media filter
- * @param[out] bookmark_count  The count of the media tag
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
+ * @param[out] bookmark_count The count of the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -440,9 +440,9 @@ int media_info_get_bookmark_count_from_db(const char *media_id, filter_h filter,
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media_id  The ID of the media info
- * @param[in] filter    The handle to the media filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -470,8 +470,8 @@ int media_info_foreach_bookmark_from_db(const char *media_id, filter_h filter, m
  *
  * @since_tizen 3.0
  *
- * @param[in] media_id media id
- * @param[in]  filter          The handle to the media filter
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
  * @param[out] face_count The count of media face
  *
  * @return 0 on success, otherwise a negative error value.
@@ -489,17 +489,17 @@ int media_info_foreach_bookmark_from_db(const char *media_id, filter_h filter, m
 int media_info_get_face_count_from_db(const char *media_id, filter_h filter, int *face_count);
 
 /**
- * @brief Iterates through the media files with optional @a media_id in the given @a face @a face from the media database.
+ * @brief Iterates through the media files with optional @a filter in the given @a media_id from the media database.
  * @details This function gets all media face info associated with the given media id and
  * meeting desired filter option and calls @a callback for
  * every retrieved media face info. If NULL is passed to the @a filter, no filtering is applied.
  *
  * @since_tizen 3.0
  *
- * @param [in] media_id media id
- * @param[in]  filter          The handle to the media filter
- * @param [in] callback The callback function to invoke
- * @param [in] user_data The user data to be passed to the callback function
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to invoke
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -516,15 +516,15 @@ int media_info_get_face_count_from_db(const char *media_id, filter_h filter, int
 int media_info_foreach_face_from_db(const char *media_id, filter_h filter, media_face_cb callback, void *user_data);
 
 /**
- * @brief Gets the image metadata handle for a given media info
+ * @brief Gets the image metadata handle for a given media info.
  * @details This function returns an image metadata handle retrieved from the media info.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the @a image handle using image_meta_destroy().
+ * @remarks The @a image should be released using image_meta_destroy().
  *
- * @param[in]  media  The media info handle
- * @param[out] image  A handle to image metadata
+ * @param[in] media The handle to the media info
+ * @param[out] image The handle to the image metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -543,10 +543,10 @@ int media_info_get_image(media_info_h media, image_meta_h *image);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the @a video handle using video_meta_destroy().
+ * @remarks The @a video should be released using video_meta_destroy().
  *
- * @param[in]  media The media info handle
- * @param[out] video A handle to the video meta
+ * @param[in] media The handle to the media info
+ * @param[out] video The handle to the video metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -565,10 +565,10 @@ int media_info_get_video(media_info_h media, video_meta_h *video);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the @a audio handle using audio_meta_destroy().
+ * @remarks The @a audio should be released using audio_meta_destroy().
  *
- * @param[in]  media The media info handle
- * @param[out] audio A handle to the audio meta
+ * @param[in] media The handle to the media info
+ * @param[out] audio The handle to the audio metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -582,11 +582,12 @@ int media_info_get_video(media_info_h media, video_meta_h *video);
 int media_info_get_audio(media_info_h media, audio_meta_h *audio);
 
 /**
- * @brief Gets the media ID
+ * @brief Gets the media ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @remarks The @a media_id should be released using free().
  *
- * @param[in]  media The media info handle
- * @param[out] media_id     The media ID
+ * @param[in] media The handle to the media info
+ * @param[out] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -601,10 +602,10 @@ int media_info_get_media_id(media_info_h media, char **media_id);
  * @brief Gets the full path of the content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a path using free().
+ * @remarks The @a path should be released using free().
  *
- * @param[in]  media The media info handle
- * @param[out] path  The full path of the content file
+ * @param[in] media The handle to the media info
+ * @param[out] path The full path of the content file
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -620,10 +621,10 @@ int media_info_get_file_path(media_info_h media, char **path);
  * @brief Gets the file name including the extension of the content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a name using free().
+ * @remarks The @a name should be released using free().
  *
- * @param[in]  media The media info handle
- * @param[out] name  The file name including the extension of the content file
+ * @param[in] media The handle to the media info
+ * @param[out] name The file name including the extension of the content file
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -638,8 +639,8 @@ int media_info_get_display_name(media_info_h media, char **name);
  * @brief Gets the content type of the content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media The media info handle
- * @param[out] type  The content type of the content file (#media_content_type_e)
+ * @param[in] media The handle to the media info
+ * @param[out] type The content type of the content file (#media_content_type_e)
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -655,9 +656,9 @@ int media_info_get_media_type(media_info_h media, media_content_type_e *type);
  * @brief Gets the MIME type of the content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a mime_type using free().
+ * @remarks The @a mime_type should be released using free().
  *
- * @param[in]  media     The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] mime_type The MIME type of the content file
  *
  * @return @c 0 on success,
@@ -673,8 +674,8 @@ int media_info_get_mime_type(media_info_h media, char **mime_type);
  * @brief Gets the content file size.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media The media info handle
- * @param[out] size  The content file size
+ * @param[in] media The handle to the media info
+ * @param[out] size The content file size
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -689,7 +690,7 @@ int media_info_get_size(media_info_h media, unsigned long long *size);
  * @details The added time refers to the time that content file was first added to media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media      The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] added_time The added time to the media database
  *
  * @return @c 0 on success,
@@ -705,8 +706,8 @@ int media_info_get_added_time(media_info_h media, time_t *added_time);
  * @details The modified time refers to the last modification time provided by the file system.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media The media info handle
- * @param[out] time  The last modification time of the content file
+ * @param[in] media The handle to the media info
+ * @param[out] time The last modification time of the content file
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -722,8 +723,8 @@ int media_info_get_modified_time(media_info_h media, time_t *time);
  *               Otherwise, timeline value is the same as modified time.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media The media info handle
- * @param[out] time  The timeline of content file
+ * @param[in] media The handle to the media info
+ * @param[out] time The timeline of content file
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -737,12 +738,12 @@ int media_info_get_timeline(media_info_h media, time_t *time);
  * @brief Gets the thumbnail path of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a path using free(). \n
- *                   If the thumbnail extraction for the given media has not been requested yet, this API returns NULL. To create a thumbnail, you should use media_info_create_thumbnail() API. \n
+ * @remarks The @a path should be released using free(). \n
+ *                   If the thumbnail extraction for the given media has not been requested yet, this function returns NULL. To create a thumbnail, you should use media_info_create_thumbnail() function. \n
  *                   Since 3.0, this function returns an empty string if media_info_create_thumbnail() has failed to create a thumbnail for the given media.
  *
- * @param[in]  media The media info handle
- * @param[out] path  The thumbnail path
+ * @param[in] media The handle to the media info
+ * @param[out] path The thumbnail path
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -759,9 +760,9 @@ int media_info_get_thumbnail_path(media_info_h media, char **path);
  *                Since 3.0, if the media info has no description, the method returns empty string.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a description using free().
+ * @remarks The @a description should be released using free().
  *
- * @param[in]  media       The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] description The description of the content file
  *
  * @return @c 0 on success,
@@ -777,7 +778,7 @@ int media_info_get_description(media_info_h media, char **description);
  * @brief Gets the longitude of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media     The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] longitude The longitude of the content file
  *
  * @return @c 0 on success,
@@ -792,7 +793,7 @@ int media_info_get_longitude(media_info_h media, double *longitude);
  * @brief Gets the latitude of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] latitude The latitude of the content file
  *
  * @return @c 0 on success,
@@ -808,7 +809,7 @@ int media_info_get_latitude(media_info_h media, double* latitude);
  * @brief Gets the altitude of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] altitude The altitude of the content file
  *
  * @return @c 0 on success,
@@ -823,8 +824,9 @@ int media_info_get_altitude(media_info_h media, double* altitude);
  * @deprecated Deprecated since 4.0.
  * @brief Gets the weather of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @remarks The @a weather should be released using free().
  *
- * @param[in]  media   The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] weather The weather of the content file
  *
  * @return @c 0 on success,
@@ -840,7 +842,7 @@ int media_info_get_weather(media_info_h media, char **weather) TIZEN_DEPRECATED_
  * @brief Gets the rating of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] rating The rating of the content file
  *
  * @return @c 0 on success,
@@ -855,8 +857,8 @@ int media_info_get_rating(media_info_h media, int *rating);
  * @brief Gets the favorite status of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media     The media info handle
- * @param[out] favorite  @c true if content file is set as favorite,
+ * @param[in] media The handle to the media info
+ * @param[out] favorite @c true if content file is set as favorite,
  *                       otherwise @c false if content file is not set as favorite
  *
  * @return @c 0 on success,
@@ -874,9 +876,9 @@ int media_info_get_favorite(media_info_h media, bool* favorite);
  * @brief Gets the author of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a author using free().
+ * @remarks The @a author should be released using free().
  *
- * @param[in]  media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] author The author of the content file
  *
  * @return @c 0 on success,
@@ -893,9 +895,9 @@ int media_info_get_author(media_info_h media, char **author) TIZEN_DEPRECATED_AP
  * @brief Gets the provider of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a provider using free().
+ * @remarks The @a provider should be released using free().
  *
- * @param[in]  media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] provider The provider of the content file
  *
  * @return @c 0 on success,
@@ -905,7 +907,6 @@ int media_info_get_author(media_info_h media, char **author) TIZEN_DEPRECATED_AP
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_provider()
  */
 int media_info_get_provider(media_info_h media, char **provider) TIZEN_DEPRECATED_API;
 
@@ -914,9 +915,9 @@ int media_info_get_provider(media_info_h media, char **provider) TIZEN_DEPRECATE
  * @brief Gets the content name of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a content_name using free().
+ * @remarks The @a content_name should be released using free().
  *
- * @param[in]  media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] content_name The content name of the content file
  *
  * @return @c 0 on success,
@@ -926,7 +927,6 @@ int media_info_get_provider(media_info_h media, char **provider) TIZEN_DEPRECATE
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_content_name()
  */
 int media_info_get_content_name(media_info_h media, char **content_name) TIZEN_DEPRECATED_API;
 
@@ -936,10 +936,10 @@ int media_info_get_content_name(media_info_h media, char **content_name) TIZEN_D
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a title using free().
+ * @remarks The @a title should be released using free().
  *
- * @param[in]  media  The media info handle
- * @param[out] title  The title of the content file
+ * @param[in] media The handle to the media info
+ * @param[out] title The title of the content file
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -955,9 +955,9 @@ int media_info_get_title(media_info_h media, char **title);
  * @brief Gets the category of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a category using free().
+ * @remarks The @a category should be released using free().
  *
- * @param[in]  media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] category The category of the content file
  *
  * @return @c 0 on success,
@@ -967,7 +967,6 @@ int media_info_get_title(media_info_h media, char **title);
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_category()
  */
 int media_info_get_category(media_info_h media, char **category) TIZEN_DEPRECATED_API;
 
@@ -976,9 +975,9 @@ int media_info_get_category(media_info_h media, char **category) TIZEN_DEPRECATE
  * @brief Gets the location tag of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a location_tag using free().
+ * @remarks The @a location_tag should be released using free().
  *
- * @param[in]  media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] location_tag The location of the content file
  *
  * @return @c 0 on success,
@@ -988,7 +987,6 @@ int media_info_get_category(media_info_h media, char **category) TIZEN_DEPRECATE
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_location_tag()
  */
 int media_info_get_location_tag(media_info_h media, char **location_tag) TIZEN_DEPRECATED_API;
 
@@ -997,9 +995,9 @@ int media_info_get_location_tag(media_info_h media, char **location_tag) TIZEN_D
  * @brief Gets the age_rating of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a age_rating using free().
+ * @remarks The @a age_rating should be released using free().
  *
- * @param[in]  media      The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] age_rating The age rating of the content file
  *
  * @return @c 0 on success,
@@ -1009,7 +1007,6 @@ int media_info_get_location_tag(media_info_h media, char **location_tag) TIZEN_D
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_age_rating()
  */
 int media_info_get_age_rating(media_info_h media, char **age_rating) TIZEN_DEPRECATED_API;
 
@@ -1018,9 +1015,9 @@ int media_info_get_age_rating(media_info_h media, char **age_rating) TIZEN_DEPRE
  * @brief Gets the keyword of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a keyword using free().
+ * @remarks The @a keyword should be released using free().
  *
- * @param[in]  media   The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] keyword The keyword of the content file
  *
  * @return @c 0 on success,
@@ -1030,7 +1027,6 @@ int media_info_get_age_rating(media_info_h media, char **age_rating) TIZEN_DEPRE
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_keyword()
  */
 int media_info_get_keyword(media_info_h media, char **keyword) TIZEN_DEPRECATED_API;
 
@@ -1038,10 +1034,10 @@ int media_info_get_keyword(media_info_h media, char **keyword) TIZEN_DEPRECATED_
  * @brief Gets the storage id of content file.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_id using free().
+ * @remarks The @a storage_id should be released using free().
  *
- * @param[in]  media   The media info handle
- * @param[out] storage_id The storage id of the content file
+ * @param[in] media The handle to the media info
+ * @param[out] storage_id The ID of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1056,7 +1052,7 @@ int media_info_get_storage_id(media_info_h media, char **storage_id);
  * @brief Checks whether the media is protected via DRM.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] is_drm @c true if media is DRM media,
  *                    otherwise @c false if media is not DRM media
  *
@@ -1072,7 +1068,7 @@ int media_info_is_drm(media_info_h media, bool *is_drm);
  * @brief Checks whether the content file is 360 content.
  * @since_tizen 3.0
  *
- * @param[in]  media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] is_360 @c true if media is 360 content,
  *                    otherwise @c false if media is not 360 content
  *
@@ -1088,7 +1084,7 @@ int media_info_is_360_content(media_info_h media, bool *is_360);
  * @brief Gets the storage type of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] storage_type The storage type of the content file
  *
  * @return @c 0 on success,
@@ -1105,8 +1101,8 @@ int media_info_get_storage_type(media_info_h media, media_content_storage_e *sto
  * @brief Gets number which represents how many times given content has been played.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param [in] media The handle to media info
- * @param [out] played_count The counter of content played
+ * @param[in] media The handle to the media info
+ * @param[out] played_count The counter of content played
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -1124,8 +1120,8 @@ int media_info_get_played_count(media_info_h media, int *played_count) TIZEN_DEP
  *          starting from the beginning of the track.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param [in] media The handle to media info
- * @param [out] played_time The elapsed time of the content
+ * @param[in] media The handle to the media info
+ * @param[out] played_time The elapsed time of the content
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -1143,10 +1139,10 @@ int media_info_get_played_time(media_info_h media, time_t *played_time) TIZEN_DE
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a media using media_tag_destroy().
+ * @remarks The @a media should be released using media_info_destroy().
  *
- * @param[in]  media_id The ID of media info
- * @param[out] media    The media handle associated with the media ID
+ * @param[in] media_id The media ID
+ * @param[out] media The handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1172,7 +1168,7 @@ int media_info_get_media_from_db(const char *media_id, media_info_h *media);
  * @details You can increase the played(opened) count of the content file.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param [in] media The handle to media info
+ * @param[in] media The handle to the media info
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -1191,7 +1187,7 @@ int media_info_increase_played_count(media_info_h media) TIZEN_DEPRECATED_API;
  * @details You can set the latest played(opened) time of the content file. the latest played time to be set the current time on the system.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param [in] media The handle to media info
+ * @param[in] media The handle to the media info
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -1208,7 +1204,7 @@ int media_info_set_played_time(media_info_h media) TIZEN_DEPRECATED_API;
  * @brief Sets the file name including the extension of the content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] display_name The file name including the extension of the content file.
  *
  * @return @c 0 on success,
@@ -1228,7 +1224,7 @@ int media_info_set_display_name(media_info_h media, const char *display_name) TI
  * @brief Sets the description of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media       The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] description The description of the media info
  *
  * @return @c 0 on success,
@@ -1248,7 +1244,7 @@ int media_info_set_description(media_info_h media, const char *description) TIZE
  * @brief Sets the longitude of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media     The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] longitude The longitude of the media info
  *
  * @return @c 0 on success,
@@ -1266,7 +1262,7 @@ int media_info_set_longitude(media_info_h media, double longitude) TIZEN_DEPRECA
  * @brief Sets the latitude of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] latitude The latitude of the media info
  *
  * @return @c 0 on success,
@@ -1284,7 +1280,7 @@ int media_info_set_latitude(media_info_h media, double latitude) TIZEN_DEPRECATE
  * @brief Sets the altitude of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] altitude The altitude of the media info
  *
  * @return @c 0 on success,
@@ -1302,7 +1298,7 @@ int media_info_set_altitude(media_info_h media, double altitude) TIZEN_DEPRECATE
  * @brief Sets the weather of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media   The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] weather The weather of the media info
  *
  * @return @c 0 on success,
@@ -1322,7 +1318,7 @@ int media_info_set_weather(media_info_h media, const char *weather) TIZEN_DEPREC
  * @brief Sets the rating of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] rating The rating of the media info
  *
  * @return @c 0 on success,
@@ -1343,7 +1339,7 @@ int media_info_set_rating(media_info_h media, int rating) TIZEN_DEPRECATED_API;
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] favorite Set @c true to set the media info as favorite,
  *                     otherwise set @c false to not set the media info as favorite
  *
@@ -1360,7 +1356,7 @@ int media_info_set_favorite(media_info_h media, bool favorite);
  * @brief Sets the author of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] author The author of the media info
  *
  * @return @c 0 on success,
@@ -1377,7 +1373,7 @@ int media_info_set_author(media_info_h media, const char *author) TIZEN_DEPRECAT
  * @brief Sets the provider of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] provider The provider of the media info
  *
  * @return @c 0 on success,
@@ -1394,7 +1390,7 @@ int media_info_set_provider(media_info_h media, const char *provider) TIZEN_DEPR
  * @brief Sets the content name of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] content_name The content name of the media info
  *
  * @return @c 0 on success,
@@ -1413,7 +1409,7 @@ int media_info_set_content_name(media_info_h media, const char *content_name) TI
  * @brief Sets the category of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] category The category of the media info
  *
  * @return @c 0 on success,
@@ -1432,7 +1428,7 @@ int media_info_set_category(media_info_h media, const char *category) TIZEN_DEPR
  * @brief Sets the location tag of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] location_tag The location of the media info
  *
  * @return @c 0 on success,
@@ -1451,7 +1447,7 @@ int media_info_set_location_tag(media_info_h media, const char *location_tag) TI
  * @brief Sets the age rating of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media      The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] age_rating The age rating of the media info
  *
  * @return @c 0 on success,
@@ -1470,7 +1466,7 @@ int media_info_set_age_rating(media_info_h media, const char *age_rating) TIZEN_
  * @brief Sets the keyword of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media   The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] keyword The keyword of the media info
  *
  * @return @c 0 on success,
@@ -1498,7 +1494,7 @@ int media_info_set_keyword(media_info_h media, const char *keyword) TIZEN_DEPREC
  *          for setting the name of the media, the media_info_update_to_db() function should be called so as to update
  *          the given media info attributes in the media database.
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1516,10 +1512,6 @@ int media_info_set_keyword(media_info_h media, const char *keyword) TIZEN_DEPREC
  *
  * @see media_content_connect()
  * @see media_info_set_favorite()
- * @see media_info_set_provider()
- * @see media_info_set_category()
- * @see media_info_set_location_tag()
- * @see media_info_set_age_rating()
  */
 int media_info_update_to_db(media_info_h media);
 
@@ -1534,11 +1526,11 @@ int media_info_update_to_db(media_info_h media);
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using  this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you should add all privilege.
  *
- * @param[in] media_id The ID of the media info
+ * @param[in] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1563,7 +1555,7 @@ int media_info_refresh_metadata_to_db(const char *media_id) TIZEN_DEPRECATED_API
  * @brief Sets the added time of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media      The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] added_time The added time of the media info
  *
  * @return @c 0 on success,
@@ -1580,8 +1572,8 @@ int media_info_set_added_time(media_info_h media, time_t added_time) TIZEN_DEPRE
 /**
  * @brief Moves the media info to the given destination path in the media database.
  * @details After moving or renaming a file in the filesystem, call this function to update the database. \n
- *               If the source path and destination path are the same, then this API does nothing.
- *               If you want to refresh media information, you should use media_content_scan_file() API.
+ *               If the source path and destination path are the same, then this function does nothing.
+ *               If you want to refresh media information, you should use media_content_scan_file() function.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1591,12 +1583,12 @@ int media_info_set_added_time(media_info_h media, time_t added_time) TIZEN_DEPRE
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you should add all privilege. \n
- *                   This API does not support USB storage.
+ *                   This function does not support USB storage.
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] dst_path The path of destination
  *
  * @return @c 0 on success,
@@ -1636,8 +1628,8 @@ int media_info_move_to_db(media_info_h media, const char* dst_path);
  *          Since 3.0, if creation of a thumbnail is failed, empty string will be passed through media_thumbnail_completed_cb().
  *          Items in external storage except MMC not supported.
  *
- * @param[in] media     The media info handle
- * @param[in] callback  The callback function to be invoked
+ * @param[in] media The handle to the media info
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -1665,9 +1657,9 @@ int media_info_create_thumbnail(media_info_h media, media_thumbnail_completed_cb
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @remarks If you request cancel for the already thumbnail created media, this API return MEDIA_CONTENT_ERROR_INVALID_OPERATION
+ * @remarks If you request cancel for the already thumbnail created media, this function return MEDIA_CONTENT_ERROR_INVALID_OPERATION
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1700,8 +1692,8 @@ int media_info_cancel_thumbnail(media_info_h media);
  *          If face detection fails, the @a face_count argument in media_face_detection_completed_cb() will be set to 0.
  *          Media items in external storage are not supported, with the exception of MMC items.
  *
- * @param[in] media     The media info handle
- * @param[in] callback  The callback function to be invoked when detection is completed
+ * @param[in] media The handle to the media info
+ * @param[in] callback The callback function to be invoked when detection is completed
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -1728,16 +1720,16 @@ int media_info_start_face_detection(media_info_h media, media_face_detection_com
  * @ingroup CAPI_CONTENT_MEDIA_FACE_DETECTION_MODULE
  * @brief Cancels face detection of image for the given media.
  * @details This function cancels face detection for given media item. \n
- *          If you cancel face detection request before callback is invoked, the callback registered by media_info_start_face_detection() API will not be invoked.
+ *          If you cancel face detection request before callback is invoked, the callback registered by media_info_start_face_detection() function will not be invoked.
  *
  * @since_tizen 3.0
  *
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @remarks If face detection is already done when you request the cancellation, this API return MEDIA_CONTENT_ERROR_INVALID_OPERATION
+ * @remarks If face detection is already done when you request the cancellation, this function return MEDIA_CONTENT_ERROR_INVALID_OPERATION
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1757,28 +1749,29 @@ int media_info_cancel_face_detection(media_info_h media);
 /**
  * @deprecated Deprecated since 4.0. Use media_info_insert_to_db() instead.
  * @brief Creates the media info handle.
- * @details If the information about the file that is already known, you can use this API to generate empty handler.
+ * @details If the information about the file that is already known, you can use this function to generate empty handler.
  * @since_tizen 3.0
  *
  *
  * @privilege %http://tizen.org/privilege/mediastorage \n
- *                     %http://tizen.org/privilege/externalstorage
+ *               %http://tizen.org/privilege/externalstorage
  *
- * @remarks If you want to access only internal storage with this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage with this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ * @remarks The @a media should be released using media_info_destroy().
+ * @remarks If you want to access only internal storage with this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage with this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  *
  * @param[in] path The path to create the media info handle
- * @param[out] media The media info handle
+ * @param[out] media The handle to the media info
  *
  * @return @c 0 on success,
  *           otherwise a negative error value
  *
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_DB_FAILED               DB operation failed
+ * @retval #MEDIA_CONTENT_ERROR_DB_FAILED DB operation failed
  * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION      Invalid operation
+ * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION Invalid operation
  *
  * @see media_info_destroy()
  */
@@ -1789,19 +1782,19 @@ int media_info_create(const char *path, media_info_h *media) TIZEN_DEPRECATED_AP
  * @brief Inserts media info to database with media info data.
  * @since_tizen 3.0
  *
- * @remarks You must release @a info using media_info_destroy().
- *
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] media The media info handle to be inserted
+ * @remarks The @a media should be released using media_info_destroy().
+ *
+ * @param[in] media The handle to the media info
  *
  * @return @c 0 on success,
  *           otherwise a negative error value
  *
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_DB_FAILED               DB operation failed
+ * @retval #MEDIA_CONTENT_ERROR_DB_FAILED DB operation failed
  * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
  */
 int media_info_insert_to_db_with_data(media_info_h media) TIZEN_DEPRECATED_API;
@@ -1811,7 +1804,7 @@ int media_info_insert_to_db_with_data(media_info_h media) TIZEN_DEPRECATED_API;
  * @brief Sets the title of media info handle.
  * @since_tizen 3.0
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] title The title of media info handle
  *
  * @return @c 0 on success,
@@ -1828,8 +1821,8 @@ int media_info_set_title(media_info_h media, const char *title) TIZEN_DEPRECATED
  * @brief Sets the album of media info handle.
  * @since_tizen 3.0
  *
- * @param[in] media The media info handle
- * @param[in] album The album of media info handle
+ * @param[in] media The handle to the media info
+ * @param[in] album The album of the media
  *
  * @return @c 0 on success,
  *           otherwise a negative error value
@@ -1845,7 +1838,7 @@ int media_info_set_album(media_info_h media, const char *album) TIZEN_DEPRECATED
  * @brief Sets the artist of media info handle.
  * @since_tizen 3.0
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] artist The artist of media info handle
  *
  * @return @c 0 on success,
@@ -1862,7 +1855,7 @@ int media_info_set_artist(media_info_h media, const char *artist) TIZEN_DEPRECAT
  * @brief Sets the genre of media info handle.
  * @since_tizen 3.0
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] genre The genre of media info handle
  *
  * @return @c 0 on success,
@@ -1879,7 +1872,7 @@ int media_info_set_genre(media_info_h media, const char *genre) TIZEN_DEPRECATED
  * @brief Sets the recorded date of media info handle.
  * @since_tizen 3.0
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] recorded_date The recorded date of media info handle
  *
  * @return @c 0 on success,
@@ -1899,4 +1892,4 @@ int media_info_set_recorded_date(media_info_h media, const char *recorded_date)
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_INFORMATION_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_INFO_H__ */
index 9ccfb11..481582c 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_INFO_PRIVATE_H__
-#define __TIZEN_MEDIA_INFO_PRIVATE_H__
+#ifndef __TIZEN_CONTENT_MEDIA_INFO_PRIVATE_H__
+#define __TIZEN_CONTENT_MEDIA_INFO_PRIVATE_H__
 
 
 #include <unistd.h>
@@ -691,94 +691,11 @@ int _media_db_get_media_group_item(const char *group_name, filter_h filter, medi
 int _media_db_get_storage(filter_h filter, media_storage_cb callback, void *user_data);
 int _media_db_get_storage_id_by_media_id(const char *media_id, char *storage_id);
 
-/**
- * @internal
- * @brief Creates a media filter attribute handle.
- * @details This function creates a media filter attribute handle. The handle can be
- * used to convert to attributes of database from attributes of user.
- * @remarks The @a handle must be released with media_filter_attribute_destory() by you.
- * @param[out] filter A handle to media filter attribute
- * @return 0 on success, otherwise a negative error value.
- * @retval #MEDIA_CONTENT_ERROR_NONE Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @see media_filter_attribute_destory()
- *
- */
 int _media_filter_attribute_create(attribute_h *attr);
-
-/**
- * @internal
- * @brief Add the attributes to the handle.
- * @details This function add the attribute to handle.
- * @param[in] filter The handle to media filter attribute
- * @param[in] user_attr The user attribute
- * @param[in] platform_attr The platform attribute
- * @return 0 on success, otherwise a negative error value.
- * @retval #MEDIA_CONTENT_ERROR_NONE Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @see media_filter_attribute_remove()
- *
- */
 int _media_filter_attribute_add(attribute_h atrr, const char *user_attr, const char *platform_attr);
-
-/**
- * @internal
- * @brief Destroys a media filter attribute handle.
- * @details The function frees all resources related to the media filter attribute handle. The filter attribute
- * handle no longer can be used to perform any operation. A new handle
- * has to be created before the next usage.
- *
- * @param[in] filter The handle to media filter attribute
- * @return 0 on success, otherwise a negative error value.
- * @retval #MEDIA_CONTENT_ERROR_NONE Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @see media_filter_create()
- *
- */
 int _media_filter_attribute_destory(attribute_h attr);
-
-/**
- * @internal
- * @brief Replace to platform attributes from user attributes.
- * @details This function replace to platform attributes from user attributes to generate the WHERE clause
- * @param[in] filter The handle to media filter attribute
- * @param[in] user_attr The user attribute
- * @param[in] platform_attr The platform attribute
- * @return 0 on success, otherwise a negative error value.
- * @retval #MEDIA_CONTENT_ERROR_NONE Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @see media_filter_attribute_create()
- * @see media_filter_attribute_destory()
- *
- */
 int _media_filter_attribute_generate(attribute_h attr, filter_h filter, char **generated_condition);
-
-/**
- * @internal
- * @brief Replace to platform attributes from user attributes.
- * @details This function replace to platform attributes from user attributes to generate the WHERE clause
- * @param[in] filter The handle to media filter attribute
- * @param[in] attr The attribute
- * @param[in] generated_option The handle to generated option
- * @return 0 on success, otherwise a negative error value.
- * @retval #MEDIA_CONTENT_ERROR_NONE Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_DB_FAILED Filed DB
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @see media_filter_attribute_create()
- * @see media_filter_attribute_destory()
- *
- */
-
 int _media_filter_attribute_option_generate(attribute_h attr, filter_h filter, char **generated_option);
-
 int _media_filter_attribute_option_generate_with_full_query(attribute_h attr, filter_h filter, char **generated_option);
 
 
@@ -849,4 +766,4 @@ int _media_filter_attribute_option_generate_with_full_query(attribute_h attr, fi
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
-#endif /*__TIZEN_MEDIA_INFO_PRIVATE_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_INFO_PRIVATE_H__*/
index 362af84..8a18a54 100755 (executable)
@@ -14,8 +14,8 @@
 * limitations under the License.
 */
 
-#ifndef __TIZEN_MEDIA_PLAYLIST_H__
-#define __TIZEN_MEDIA_PLAYLIST_H__
+#ifndef __TIZEN_CONTENT_MEDIA_PLAYLIST_H__
+#define __TIZEN_CONTENT_MEDIA_PLAYLIST_H__
 
 #include <media_content_type.h>
 
@@ -41,7 +41,7 @@ extern "C" {
  * @brief Gets the number of playlists for the passed @a filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter         The handle to the filter
+ * @param[in] filter The handle to the media filter
  * @param[out] playlist_count The count of the media playlist
  *
  * @return @c 0 on success,
@@ -67,8 +67,8 @@ int media_playlist_get_playlist_count_from_db(filter_h filter, int *playlist_cou
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter    The handle to the audio filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -94,9 +94,9 @@ int media_playlist_foreach_playlist_from_db(filter_h filter, media_playlist_cb c
  * @brief Gets the number of the media info for the given playlist present in the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  playlist_id  The ID of the media playlist
- * @param[in]  filter       The media filter handle
- * @param[out] media_count  The number of media items
+ * @param[in] playlist_id The ID of the media playlist
+ * @param[in] filter The handle to the media filter
+ * @param[out] media_count The number of media items
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -122,9 +122,9 @@ int media_playlist_get_media_count_from_db(int playlist_id, filter_h filter, int
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @param[in] playlist_id The ID of the media playlist
- * @param[in] filter      The audio filter handle
- * @param[in] callback    The callback function to be invoked
- * @param[in] user_data   The user data to be passed to the callback function
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -152,10 +152,10 @@ int media_playlist_foreach_media_from_db(int playlist_id, filter_h filter, playl
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @remarks You must release the created handle using media_playlist_destroy().
+ * @remarks The @a playlist should be released using media_playlist_destroy().
  *
- * @param[in]  name     The name of the inserted playlist
- * @param[out] playlist A created handle to media playlist
+ * @param[in] name The name of the inserted playlist
+ * @param[out] playlist The handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -211,10 +211,10 @@ int media_playlist_delete_from_db(int playlist_id);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a playlist using media_playlist_destroy().
+ * @remarksThe @a playlist should be released using media_playlist_destroy().
  *
- * @param[in]  playlist_id The ID of the media playlist
- * @param[out] playlist    The media playlist handle associated with the playlist ID
+ * @param[in] playlist_id The ID of the media playlist
+ * @param[out] playlist The handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -241,7 +241,7 @@ int media_playlist_get_playlist_from_db(int playlist_id, media_playlist_h *playl
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -264,10 +264,10 @@ int media_playlist_destroy(media_playlist_h playlist);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks The destination handle must be released using media_playlist_destroy().
+ * @remarks The @ a dst should be released using media_playlist_destroy().
  *
- * @param[in]  src  The source handle of a media playlist
- * @param[out] dst  The destination handle to a media playlist
+ * @param[out] dst The destination handle to the media playlist
+ * @param[in] src The source handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -285,7 +285,7 @@ int media_playlist_clone(media_playlist_h *dst, media_playlist_h src);
  * @brief Gets the media playlist ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  playlist    The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  * @param[out] playlist_id The ID of the media playlist
  *
  * @return @c 0 on success,
@@ -300,9 +300,9 @@ int media_playlist_get_playlist_id(media_playlist_h playlist, int *playlist_id);
  * @brief Gets a name of the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a playlist_name using free().
+ * @remarks The @a playlist_name should be released using free().
  *
- * @param[in]  playlist      The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  * @param[out] playlist_name The playlist name
  *
  * @return @c 0 on success,
@@ -318,7 +318,7 @@ int media_playlist_get_name(media_playlist_h playlist, char **playlist_name);
  * @brief Sets the name of the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist      The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  * @param[in] playlist_name The name of the media playlist
  *
  * @return @c 0 on success,
@@ -337,10 +337,10 @@ int media_playlist_set_name(media_playlist_h playlist, const char *playlist_name
  * @brief Gets a thumbnail path of the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a path using free().
+ * @remarks The @a path should be released using free().
  *
- * @param[in]  playlist The media playlist handle
- * @param[out] path     The path of the thumbnail
+ * @param[in] playlist The handle to the media playlist
+ * @param[out] path The path of the thumbnail
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -355,8 +355,8 @@ int media_playlist_get_thumbnail_path(media_playlist_h playlist, char **path);
  * @brief Sets the thumbnail path of the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist The media playlist handle
- * @param[in] path     The path of the thumbnail
+ * @param[in] playlist The handle to the media playlist
+ * @param[in] path The path of the thumbnail
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -374,9 +374,9 @@ int media_playlist_set_thumbnail_path(media_playlist_h playlist, const char *pat
  * @brief Sets the playing order in the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist           The media playlist handle
- * @param[in] playlist_member_id The playlist member ID
- * @param[in] play_order         The playing order
+ * @param[in] playlist The handle to the media playlist
+ * @param[in] playlist_member_id The ID of the playlist member
+ * @param[in] play_order The playing order
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -393,8 +393,8 @@ int media_playlist_set_play_order(media_playlist_h playlist, int playlist_member
  * @brief Adds a new media info to the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist The media playlist handle
- * @param[in] media_id The ID to the media info which is added
+ * @param[in] playlist The handle to the media playlist
+ * @param[in] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -415,8 +415,8 @@ int media_playlist_add_media(media_playlist_h playlist, const char *media_id);
  * @brief Removes the playlist members related with the media from the given playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist           The media playlist handle
- * @param[in] playlist_member_id The playlist member ID
+ * @param[in] playlist The handle to the media playlist
+ * @param[in] playlist_member_id The ID of the playlist member
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -437,9 +437,9 @@ int media_playlist_remove_media(media_playlist_h playlist, int playlist_member_i
  * @brief Gets the played order of the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist           The media playlist handle
- * @param[in] playlist_member_id The playlist member ID
- * @param[out] play_order        The played order
+ * @param[in] playlist The handle to the media playlist
+ * @param[in] playlist_member_id The ID of the playlist member
+ * @param[out] play_order The played order
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -463,7 +463,7 @@ int media_playlist_get_play_order(media_playlist_h playlist, int playlist_member
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] playlist The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -490,19 +490,20 @@ int media_playlist_update_to_db(media_playlist_h playlist);
 
 /**
  * @brief Imports the playlist from m3u playlist file.
- * @details This api reads a playlist from the m3u playlist file and insert into the db.
+ * @details This function reads a playlist from the m3u playlist file and insert into the db.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
+ * @remarks The @ a playlist should be released using media_playlist_destroy().
  * @remarks   http://tizen.org/privilege/mediastorage is needed if input or output path are relevant to media storage. \n
  *                     http://tizen.org/privilege/externalstorage is needed if input or output path are relevant to external storage. \n
- *                     This api does not support the file of extended m3u playlist.
+ *                     This function does not support the file of extended m3u playlist.
  *
- * @param[in] playlist_name The name of the playlist to save
+ * @param[in] playlist_name The name of the media playlist to save
  * @param[in] path The path to import the playlist file
- * @param[out] playlist The media playlist handle
+ * @param[out] playlist The handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -525,7 +526,7 @@ int media_playlist_import_from_file(const char *playlist_name, const char *path,
  * @remarks   http://tizen.org/privilege/mediastorage is needed if input or output path are relevant to media storage. \n
  *                     http://tizen.org/privilege/externalstorage is needed if input or output path are relevant to external storage. \n
  *
- * @param[in] playlist The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  * @param[in] path path The path to export the playlist
  *
  * @return @c 0 on success,
@@ -549,4 +550,4 @@ int media_playlist_export_to_file(media_playlist_h playlist, const char* path);
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
-#endif /*__TIZEN_MEDIA_PLAYLIST_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_PLAYLIST_H__*/
index 94d94b1..56b8da5 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_STORAGE_H__
-#define __TIZEN_MEDIA_STORAGE_H__
+#ifndef __TIZEN_CONTENT_MEDIA_STORAGE_H__
+#define __TIZEN_CONTENT_MEDIA_STORAGE_H__
 
 
 #include <media_content_type.h>
@@ -41,21 +41,20 @@ extern "C" {
 * @brief Gets media storage from database.
 * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
 *
-* @remarks You must release the handle using media_storage_destroy(). \n
+* @remarks The @a storage should be released using media_storage_destroy().
 *
-* @param[in] storage_id The storage id to get media storage info
+* @param[in] storage_id The ID of the media storage
 * @param[out] storage The media storage handle
 *
 * @return @c 0 on success,
 *           otherwise a negative error value
 *
-* @retval #MEDIA_CONTENT_ERROR_NONE              Successful
+* @retval #MEDIA_CONTENT_ERROR_NONE Successful
 * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
-* @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY    Out of memory
-* @retval #MEDIA_CONTENT_ERROR_DB_FAILED                DB Operation failed
-* @retval #MEDIA_CONTENT_ERROR_DB_BUSY                  DB Operation busy
+* @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
+* @retval #MEDIA_CONTENT_ERROR_DB_FAILED  DB Operation failed
+* @retval #MEDIA_CONTENT_ERROR_DB_BUSY DB Operation busy
 * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
-
 *
 * @pre This function requires opened connection to content service by media_content_connect().
 *
@@ -67,17 +66,17 @@ int media_storage_get_storage_info_from_db(const char *storage_id, media_storage
 * @brief Gets the count of media storage for the passed @a filter from the media database.
 * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
 *
-* @param[in] filter The handle to filter
+* @param[in] filter The handle to the media filter
 * @param[out] storage_count The count of storage
 *
 * @return @c 0 on success,
 *           otherwise a negative error value
 *
-* @retval #MEDIA_CONTENT_ERROR_NONE              Successful
+* @retval #MEDIA_CONTENT_ERROR_NONE Successful
 * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
 * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION Invalid operation
-* @retval #MEDIA_CONTENT_ERROR_DB_FAILED                DB Operation failed
-* @retval #MEDIA_CONTENT_ERROR_DB_BUSY                  DB Operation busy
+* @retval #MEDIA_CONTENT_ERROR_DB_FAILED DB Operation failed
+* @retval #MEDIA_CONTENT_ERROR_DB_BUSY DB Operation busy
 * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
 *
 * @pre This function requires opened connection to content service by media_content_connect().
@@ -94,8 +93,8 @@ int media_storage_get_storage_count_from_db(filter_h filter, int *storage_count)
  *
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in] filter    The media storage handle filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -117,11 +116,11 @@ int media_storage_get_storage_count_from_db(filter_h filter, int *storage_count)
 int media_storage_foreach_storage_from_db(filter_h filter, media_storage_cb callback, void *user_data);
 
 /**
- * @brief Gets the count of media files for the passed @a filter in the given @a storage from the media database.
+ * @brief Gets the count of media files for the passed @a filter in the given @a storage_id from the media database.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in] storage_id    The ID of the media storage
- * @param[in] filter       The filter of the media content
+ * @param[in] storage_id The ID of the media storage
+ * @param[in] filter The handle to the media filter
  * @param[out] media_count The count of media storage items
  *
  * @return @c 0 on success,
@@ -140,7 +139,7 @@ int media_storage_foreach_storage_from_db(filter_h filter, media_storage_cb call
 int media_storage_get_media_count_from_db(const char *storage_id, filter_h filter, int *media_count);
 
 /**
- * @brief Iterates through the media files with an optional @a filter in the given @a storage from the media database.
+ * @brief Iterates through the media files with an optional @a filter in the given @a storage_id from the media database.
  * @details This function gets all media files associated with the given storage and
  *          meeting desired filter option and calls @a callback for
  *          every retrieved media item. If @c NULL is passed to the @a filter, no filtering is applied.
@@ -153,8 +152,8 @@ int media_storage_get_media_count_from_db(const char *storage_id, filter_h filte
  *                    We do not recommend you call updating DB function in callback of foreach function.
  *
  * @param[in] storage_id The ID of the media storage
- * @param[in] filter    The handle to the media info filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -184,7 +183,7 @@ int media_storage_foreach_media_from_db(const char *storage_id, filter_h filter,
  *
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in]  storage  The media storage handle
+ * @param[in] storage The media storage handle
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -208,10 +207,10 @@ int media_storage_destroy(media_storage_h storage);
  *
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release the destination handle using media_storage_destroy().
+ * @remarksThe @a dst should be released using media_storage_destroy().
  *
- * @param[out] dst  The destination handle to the media storage
- * @param[in]  src  The source handle to media storage
+ * @param[out] dst The destination handle to the media storage
+ * @param[in] src The source handle to the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -230,10 +229,10 @@ int media_storage_clone(media_storage_h *dst, media_storage_h src);
  * @brief Gets the storage id of media storage.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_id using free().
+ * @remarks The @a storage_id should be released using free().
  *
- * @param[in]  storage The media storage handle
- * @param[out] storage_id  The storage id of the media storage
+ * @param[in] storage The media storage handle
+ * @param[out] storage_id The ID of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -249,11 +248,11 @@ int media_storage_get_id(media_storage_h storage, char **storage_id);
  * @brief Gets the storage name of media storage.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_name using free().
- *                   If the requested storage is not the cloud storage, this API returns NULL.
+ * @remarks The @a storage_name should be released using free().
+ *                   If the requested storage is not the cloud storage, this function returns NULL.
  *
- * @param[in]  storage The media storage handle
- * @param[out] storage_name  The storage name of the media storage
+ * @param[in] storage The media storage handle
+ * @param[out] storage_name The storage name of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -268,10 +267,10 @@ int media_storage_get_name(media_storage_h storage, char **storage_name) TIZEN_D
  * @brief Gets the storage path of media storage.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_path using free().
+ * @remarks The @a storage_path should be released using free().
  *
- * @param[in]  storage The media storage handle
- * @param[out] storage_path  The storage path of the media storage
+ * @param[in] storage The media storage handle
+ * @param[out] storage_path The storage path of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -286,8 +285,8 @@ int media_storage_get_path(media_storage_h storage, char **storage_path);
  * @brief Gets the storage type of media storage.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in]  storage The media storage handle
- * @param[out] storage_type  The storage type of the media storage
+ * @param[in] storage The media storage handle
+ * @param[out] storage_type The storage type of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -305,4 +304,4 @@ int media_storage_get_type(media_storage_h storage, media_content_storage_e *sto
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_STORAGE_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_STORAGE_H__ */
index f61d23c..31cdabc 100755 (executable)
@@ -16,8 +16,8 @@
 
 
 
-#ifndef __TIZEN_MEDIA_TAG_H__
-#define __TIZEN_MEDIA_TAG_H__
+#ifndef __TIZEN_CONTENT_MEDIA_TAG_H__
+#define __TIZEN_CONTENT_MEDIA_TAG_H__
 
 #include <media_content_type.h>
 
@@ -46,10 +46,10 @@ extern "C" {
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @remarks The created tag handle must be released using media_tag_destroy().
+ * @remarks The @a tag should be released using media_tag_destroy().
  *
- * @param[in]  tag_name The tag name to be inserted
- * @param[out] tag      The created handle to the media tag
+ * @param[in] tag_name The tag name to be inserted
+ * @param[out] tag The handle to the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -78,7 +78,7 @@ int media_tag_insert_to_db(const char *tag_name, media_tag_h *tag);
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] tag_id The ID of media tag
+ * @param[in] tag_id The ID of the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -102,7 +102,7 @@ int media_tag_delete_from_db(int tag_id);
  * @brief Gets the count of the tag for the passed @a filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter    The handle to the filter
+ * @param[in] filter The handle to the media filter
  * @param[out] tag_count The count of the media tag
  *
  * @return @c 0 on success,
@@ -128,8 +128,8 @@ int media_tag_get_tag_count_from_db(filter_h filter, int *tag_count);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter    The tag filter handle
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -152,11 +152,11 @@ int media_tag_get_tag_count_from_db(filter_h filter, int *tag_count);
 int media_tag_foreach_tag_from_db(filter_h filter, media_tag_cb callback, void *user_data);
 
 /**
- * @brief Gets the number of media files for the passed @a filter in the given @a tag from the media database.
+ * @brief Gets the number of media files for the passed @a filter in the given @a tag_id from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  tag_id      The ID of the media tag
- * @param[in]  filter      The handle to the media filter
+ * @param[in] tag_id The ID of the media tag
+ * @param[in] filter The handle to the media filter
  * @param[out] media_count The count of media items
  *
  * @return @c 0 on success,
@@ -182,9 +182,9 @@ int media_tag_get_media_count_from_db(int tag_id, filter_h filter, int *media_co
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] tag_id    The ID of the media tag
- * @param[in] filter    The handle to the media filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] tag_id The ID of the media tag
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -215,10 +215,10 @@ int media_tag_foreach_media_from_db(int tag_id, filter_h filter, media_info_cb c
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the destination handle using media_tag_destroy().
+ * @remarks The @a dst should be released using media_tag_destroy().
  *
  * @param[out] dst The destination handle to the media tag
- * @param[in]  src The source handle to the media tag
+ * @param[in] src The source handle to the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -238,7 +238,7 @@ int media_tag_clone(media_tag_h *dst, media_tag_h src);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] tag The media tag handle
+ * @param[in] tag The handle to the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -257,8 +257,8 @@ int media_tag_destroy(media_tag_h tag);
  * @brief Gets the media tag ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  tag     The media tag handle
- * @param[out] tag_id  The ID of the media tag
+ * @param[in] tag The handle to the media tag
+ * @param[out] tag_id The ID of the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -272,10 +272,10 @@ int media_tag_get_tag_id(media_tag_h tag, int *tag_id);
  * @brief Gets the tag name.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a tag_name using free().
+ * @remarks The @a tag_name should be released using free().
  *
- * @param[in]  tag      The media tag handle
- * @param[out] tag_name The name of the tag
+ * @param[in] tag The handle to the media tag
+ * @param[out] tag_name The name of the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -294,10 +294,10 @@ int media_tag_get_name(media_tag_h tag, char **tag_name);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a folder using media_tag_destroy().
+ * @remarksThe @a tag should be released using media_tag_destroy().
  *
- * @param[in]  tag_id The ID of the media tag
- * @param[out] tag    The media tag handle associated with the tag ID
+ * @param[in] tag_id The ID of the media tag
+ * @param[out] tag The handle to the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -320,8 +320,8 @@ int media_tag_get_tag_from_db(int tag_id, media_tag_h *tag);
  * @brief Adds a new media info to the tag.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] tag      The media tag handle
- * @param[in] media_id The ID to the media info which is added
+ * @param[in] tag The handle to the media tag
+ * @param[in] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -342,8 +342,8 @@ int media_tag_add_media(media_tag_h tag, const char *media_id);
  * @brief Removes the media info from the given tag.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] tag      The media tag handle
- * @param[in] media_id The ID to the media info which is removed
+ * @param[in] tag The handle to the media tag
+ * @param[in] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -364,7 +364,7 @@ int media_tag_remove_media(media_tag_h tag, const char *media_id);
  * @brief Sets the name of the tag.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] tag      The media tag handle
+ * @param[in] tag The handle to the media tag
  * @param[in] tag_name The name of the media tag
  *
  * @return @c 0 on success,
@@ -390,7 +390,7 @@ int media_tag_set_name(media_tag_h tag, const char *tag_name);
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] tag The media tag handle
+ * @param[in] tag The handle to the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -422,4 +422,4 @@ int media_tag_update_to_db(media_tag_h tag);
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_TAG_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_TAG_H__ */
index 06a07e2..89b95eb 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_UTIL_PRIVATE_H__
-#define __TIZEN_MEDIA_UTIL_PRIVATE_H__
+#ifndef __TIZEN_CONTENT_MEDIA_UTIL_PRIVATE_H__
+#define __TIZEN_CONTENT_MEDIA_UTIL_PRIVATE_H__
 
 
 #ifdef __cplusplus
@@ -42,4 +42,4 @@ int _media_content_rollback_path(const char *path, char *replace_path);
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
-#endif /*__TIZEN_MEDIA_UTIL_PRIVATE_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_UTIL_PRIVATE_H__*/
index 449a483..a5c1c89 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_VIDEO_META_H__
-#define __TIZEN_VIDEO_META_H__
+#ifndef __TIZEN_CONTENT_MEDIA_VIDEO_H__
+#define __TIZEN_CONTENT_MEDIA_VIDEO_H__
 
 #include <media_content_type.h>
 
@@ -42,10 +42,10 @@ extern "C" {
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the destination handle using video_meta_destroy().
+ * @remarksThe @a dst should be released using video_meta_destroy().
  *
  * @param[out] dst The destination handle to the video metadata
- * @param[in]  src The source handle to the video metadata
+ * @param[in] src The source handle to the video metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -66,7 +66,7 @@ int video_meta_clone(video_meta_h *dst, video_meta_h src);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] video The video metadata handle
+ * @param[in] video The handle to the video metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -84,10 +84,10 @@ 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
  *
- * @remarks You must release @a media_id using free().
+ * @remarks The @a media_id should be released using free().
  *
- * @param[in]  video    The video metadata handle
- * @param[out] media_id The ID of the video
+ * @param[in] video The handle to the video metadata
+ * @param[out] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -105,9 +105,9 @@ int video_meta_get_media_id(video_meta_h video, char **media_id);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album using free().
+ * @remarks The @a album should be released using free().
  *
- * @param[in]  video The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] album The album of the video metadata
  *
  * @return @c 0 on success,
@@ -126,9 +126,9 @@ int video_meta_get_album(video_meta_h video, char **album);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a artist using free().
+ * @remarks The @a artist should be released using free().
  *
- * @param[in]  video  The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] artist The artist of the video metadata
  *
  * @return @c 0 on success,
@@ -147,9 +147,9 @@ int video_meta_get_artist(video_meta_h video, char **artist);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album_artist using free().
+ * @remarks The @a album_artist should be released using free().
  *
- * @param[in]  video        The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] album_artist The album artist of the video metadata
  *
  * @return @c 0 on success,
@@ -168,9 +168,9 @@ int video_meta_get_album_artist(video_meta_h video, char **album_artist);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a genre using free().
+ * @remarks The @a genre should be released using free().
  *
- * @param[in]  video The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] genre The genre of the video metadata
  *
  * @return @c 0 on success,
@@ -189,9 +189,9 @@ int video_meta_get_genre(video_meta_h video, char **genre);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a composer using free().
+ * @remarks The @a composer should be released using free().
  *
- * @param[in]  video    The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] composer The composer of the video metadata
  *
  * @return @c 0 on success,
@@ -210,10 +210,10 @@ int video_meta_get_composer(video_meta_h video, char **composer);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a year using free().
+ * @remarks The @a year should be released using free().
  *
- * @param[in]  video The video metadata handle
- * @param[out] year  The year of the video metadata
+ * @param[in] video The handle to the video metadata
+ * @param[out] year The year of the video metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -231,9 +231,9 @@ int video_meta_get_year(video_meta_h video, char **year);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a recorded_date using free().
+ * @remarks The @a recorded_date should be released using free().
  *
- * @param[in]  video         The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] recorded_date The recorded date of the video metadata
  *
  * @return @c 0 on success,
@@ -252,9 +252,9 @@ int video_meta_get_recorded_date(video_meta_h video, char **recorded_date);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a copyright using free().
+ * @remarks The @a copyright should be released using free().
  *
- * @param[in]  video     The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] copyright The copyright of the video metadata
  *
  * @return @c 0 on success,
@@ -273,9 +273,9 @@ int video_meta_get_copyright(video_meta_h video, char **copyright);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a track_num using free().
+ * @remarks The @a track_num should be released using free().
  *
- * @param[in]  video     The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] track_num The track number of the video metadata
  *
  * @return @c 0 on success,
@@ -291,7 +291,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
  *
- * @param[in]  video    The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] bit_rate The video bit rate in bit per second [bps]
  *
  * @return @c 0 on success,
@@ -306,7 +306,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
  *
- * @param[in]  video    The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] duration The video duration in milliseconds
  *
  * @return @c 0 on success,
@@ -321,7 +321,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
  *
- * @param[in]  video The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] width The video width in pixels
  *
  * @return @c 0 on success,
@@ -336,7 +336,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
  *
- * @param[in]  video  The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] height The video height in pixels
  *
  * @return @c 0 on success,
@@ -351,7 +351,7 @@ int video_meta_get_height(video_meta_h video, int *height);
  * @brief Gets the rotation of the given video metadata.
  * @since_tizen 4.0
  *
- * @param[in]  video  The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] rotation The clockwise rotation angle of the video in degrees (can be returned from 0 to less than 360)
  *
  * @return @c 0 on success,
@@ -375,7 +375,7 @@ int video_meta_get_rotation(video_meta_h video, int *rotation);
  *
  * @remarks Do not call this function in callback function of foreach function like media_info_foreach_media_from_db().
  *
- * @param[in] video The video metadata handle
+ * @param[in] video The handle to the video metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -403,4 +403,4 @@ int video_meta_update_to_db(video_meta_h video) TIZEN_DEPRECATED_API;
 }
 #endif /* __cplusplus */
 
-#endif /*__TIZEN_VIDEO_META_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_VIDEO_H__*/
index d39762a..c17d8d6 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_AUDIO_META_H__
-#define __TIZEN_AUDIO_META_H__
+#ifndef __TIZEN_CONTENT_MEDIA_AUDIO_H__
+#define __TIZEN_CONTENT_MEDIA_AUDIO_H__
 
 #include <media_content_type.h>
 
@@ -42,10 +42,10 @@ extern "C" {
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the destination handle using audio_meta_destroy().
+ * @remarks The @a dst should be released using audio_meta_destroy().
  *
  * @param[out] dst The destination handle to the audio metadata
- * @param[in]  src The source handle to the audio metadata
+ * @param[in] src The source handle to the audio metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -66,7 +66,7 @@ int audio_meta_clone(audio_meta_h *dst, audio_meta_h src);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] audio The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -84,10 +84,10 @@ 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
  *
- * @remarks You must release @a media_id using free().
+ * @remarks The @a media_id should be released using free().
  *
- * @param[in]  audio    The audio metadata handle
- * @param[out] media_id The ID of the audio
+ * @param[in] audio The handle to the audio metadata
+ * @param[out] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -105,9 +105,9 @@ int audio_meta_get_media_id(audio_meta_h audio, char **media_id);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album using free().
+ * @remarks The @a album should be released using free().
  *
- * @param[in]  audio The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] album The album of the audio metadata
  *
  * @return @c 0 on success,
@@ -126,9 +126,9 @@ int audio_meta_get_album(audio_meta_h audio, char **album);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a artist using free().
+ * @remarks The @a artist should be released using free().
  *
- * @param[in]  audio  The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] artist The artist of the audio metadata
  *
  * @return @c 0 on success,
@@ -147,9 +147,9 @@ int audio_meta_get_artist(audio_meta_h audio, char **artist);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album_artist using free().
+ * @remarks The @a album_artist should be released using free().
  *
- * @param[in]  audio        The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] album_artist The album artist of the audio metadata
  *
  * @return @c 0 on success,
@@ -168,9 +168,9 @@ int audio_meta_get_album_artist(audio_meta_h audio, char **album_artist);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a genre using free().
+ * @remarks The @a genre should be released using free().
  *
- * @param[in]  audio The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] genre The genre of the audio metadata
  *
  * @return @c 0 on success,
@@ -189,9 +189,9 @@ int audio_meta_get_genre(audio_meta_h audio, char **genre);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a composer using free().
+ * @remarks The @a composer should be released using free().
  *
- * @param[in]  audio    The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] composer The composer of the audio metadata
  *
  * @return @c 0 on success,
@@ -210,10 +210,10 @@ int audio_meta_get_composer(audio_meta_h audio, char **composer);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a year using free().
+ * @remarks The @a year should be released using free().
  *
- * @param[in]  audio The audio metadata handle
- * @param[out] year  The year of the audio metadata
+ * @param[in] audio The handle to the audio metadata
+ * @param[out] year The year of the audio metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -231,9 +231,9 @@ int audio_meta_get_year(audio_meta_h audio, char **year);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a recorded_date using free().
+ * @remarks The @a recorded_date should be released using free().
  *
- * @param[in]  audio         The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] recorded_date The recorded date of the audio metadata
  *
  * @return @c 0 on success,
@@ -251,9 +251,9 @@ int audio_meta_get_recorded_date(audio_meta_h audio, char **recorded_date);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a copyright using free().
+ * @remarks The @a copyright should be released using free().
  *
- * @param[in]  audio     The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] copyright The copyright of the audio metadata
  *
  * @return @c 0 on success,
@@ -272,9 +272,9 @@ int audio_meta_get_copyright(audio_meta_h audio, char **copyright);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a track_num using free().
+ * @remarks The @a track_num should be released using free().
  *
- * @param[in]  audio     The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] track_num The audio track number of the audio metadata
  *
  * @return @c 0 on success,
@@ -290,7 +290,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
  *
- * @param[in]  audio    The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] bit_rate The audio bitrate in bit per second [bps]
  *
  * @return @c 0 on success,
@@ -305,8 +305,8 @@ 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
  *
- * @param [in]  audio        The handle to the audio metadata
- * @param [out] bitpersample The audio bit per sample
+ * @param[in] audio The handle to the audio metadata
+ * @param[out] bitpersample The audio bit per sample
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -320,7 +320,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
  *
- * @param[in]  audio       The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] sample_rate The audio sample rate[hz]
  *
  * @return @c 0 on success,
@@ -335,7 +335,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
  *
- * @param[in]  audio   The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] channel The channel of the audio
  *
  * @return @c 0 on success,
@@ -350,7 +350,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
  *
- * @param[in]  audio    The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  * @param[out] duration The audio file duration
  *
  * @return @c 0 on success,
@@ -374,7 +374,7 @@ int audio_meta_get_duration(audio_meta_h audio, int *duration);
  *
  * @remarks Do not call this function in callback function of foreach function like media_info_foreach_media_from_db().
  *
- * @param[in] audio The audio metadata handle
+ * @param[in] audio The handle to the audio metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -402,4 +402,4 @@ int audio_meta_update_to_db(audio_meta_h audio) TIZEN_DEPRECATED_API;
 }
 #endif /* __cplusplus */
 
-#endif /*__TIZEN_AUDIO_META_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_AUDIO_H__*/
index e901e80..2c3e1ca 100755 (executable)
@@ -16,8 +16,8 @@
 
 
 
-#ifndef __TIZEN_MEDIA_BOOKMARK_H__
-#define __TIZEN_MEDIA_BOOKMARK_H__
+#ifndef __TIZEN_CONTENT_MEDIA_BOOKMARK_H__
+#define __TIZEN_CONTENT_MEDIA_BOOKMARK_H__
 
 #include <media_content_type.h>
 
@@ -44,8 +44,8 @@ extern "C" {
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] media_id       The media ID
- * @param[in] time           The bookmark time offset (in seconds)
+ * @param[in] media_id The media ID
+ * @param[in] time The bookmark time offset (in seconds)
  * @param[in] thumbnail_path The thumbnail path of video bookmark\ n
  *                           If the media type is audio, then thumbnail is null.
  *
@@ -74,7 +74,7 @@ int media_bookmark_insert_to_db(const char *media_id, time_t time, const char *t
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] bookmark_id The ID of media bookmark
+ * @param[in] bookmark_id The ID of the media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -98,7 +98,7 @@ int media_bookmark_delete_from_db(int bookmark_id);
  * @brief Gets the number of bookmarks with an optional filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter         The handle to the media filter
+ * @param[in] filter The handle to the media filter
  * @param[out] bookmark_count The count of the media bookmark
  *
  * @return @c 0 on success,
@@ -121,9 +121,9 @@ int media_bookmark_get_bookmark_count_from_db(filter_h filter, int *bookmark_cou
  *          If @c NULL is passed to the @a filter, then no filtering is applied.
  * @since_tizen 4.0
  *
- * @param[in] filter     The handle to the bookmark filter
- * @param[in] callback   The callback function to be invoked
- * @param[in] user_data  The user data to be passed to the callback function
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -151,10 +151,10 @@ int media_bookmark_foreach_bookmark_from_db(filter_h filter, media_bookmark_cb c
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks The destination handle must be released using media_bookmark_destroy().
+ * @remarks The @a dst should be released using media_bookmark_destroy().
  *
- * @param[out] dst The destination handle to media bookmark
- * @param[in]  src The source handle to media bookmark
+ * @param[out] dst The destination handle to the media bookmark
+ * @param[in] src The source handle to the media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -176,7 +176,7 @@ int media_bookmark_clone(media_bookmark_h *dst, media_bookmark_h src);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] bookmark The handle to media bookmark
+ * @param[in] bookmark The handle to the media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -194,8 +194,8 @@ int media_bookmark_destroy(media_bookmark_h bookmark);
  * @brief Gets the bookmark ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  bookmark    The handle to media bookmark
- * @param[out] bookmark_id The media bookmark ID
+ * @param[in] bookmark The handle to the media bookmark
+ * @param[out] bookmark_id The ID of the media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -212,7 +212,7 @@ int media_bookmark_get_bookmark_id(media_bookmark_h bookmark, int *bookmark_id);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  bookmark    The handle to media bookmark
+ * @param[in] bookmark The handle to the media bookmark
  * @param[out] marked_time The bookmark time offset (in seconds)
  *
  * @return @c 0 on success,
@@ -227,10 +227,10 @@ int media_bookmark_get_marked_time(media_bookmark_h bookmark, time_t *marked_tim
  * @brief Gets the media bookmark thumbnail.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a path using free().
+ * @remarks The @a path should be released using free().
  *
- * @param[in]  bookmark The handle to media bookmark
- * @param[out] path     The thumbnail path of media bookmark
+ * @param[in] bookmark The handle to the media bookmark
+ * @param[out] path The thumbnail path of media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -245,10 +245,10 @@ int media_bookmark_get_thumbnail_path(media_bookmark_h bookmark, char **path);
  * @brief Gets the media bookmark name which user set.
  * @since_tizen 4.0
  *
- * @remarks You must release @a name using free().
+ * @remarks The @a name should be released using free().
  *
- * @param[in] bookmark The handle to media bookmark
- * @param[out] name     The name of media bookmark. If name was not set, empty string is returned.
+ * @param[in] bookmark The handle to the media bookmark
+ * @param[out] name The name of media bookmark. If name was not set, empty string is returned.
  *                               If User set bookmark name to NULL, name will be empty string also.
  *
  * @return @c 0 on success,
@@ -264,8 +264,8 @@ int media_bookmark_get_name(media_bookmark_h bookmark, char **name);
  * @brief Sets the media bookmark name.
  * @since_tizen 4.0
  *
- * @param[in] bookmark The handle to media bookmark
- * @param[in] name     The name of media bookmark. Can be NULL, empty or non-empty string.
+ * @param[in] bookmark The handle to the media bookmark
+ * @param[in] name The name of media bookmark. Can be NULL, empty or non-empty string.
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -290,19 +290,19 @@ int media_bookmark_set_name(media_bookmark_h bookmark, const char *name);
  * @privilege %http://tizen.org/privilege/content.write
  *
  * @remarks Do not call this function in callback function of foreach function like media_info_foreach_bookmark_from_db().
- * @param[in] bookmark The handle to media bookmark
+ * @param[in] bookmark The handle to the media bookmark
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
  *
- * @retval #MEDIA_CONTENT_ERROR_NONE                                   Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER      Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY          Out of memory
- * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION      Invalid operation
- * @retval #MEDIA_CONTENT_ERROR_DB_FAILED                              DB Operation failed
- * @retval #MEDIA_CONTENT_ERROR_DB_BUSY                                DB Operation busy
- * @retval #MEDIA_CONTENT_ERROR_NETWORK                                Network fail
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED      Permission denied when Application has no privilege
+ * @retval #MEDIA_CONTENT_ERROR_NONE Successful
+ * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION Invalid operation
+ * @retval #MEDIA_CONTENT_ERROR_DB_FAILED DB Operation failed
+ * @retval #MEDIA_CONTENT_ERROR_DB_BUSY DB Operation busy
+ * @retval #MEDIA_CONTENT_ERROR_NETWORK Network fail
+ * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied when Application has no privilege
  *
  * @pre This function requires opened connection to content service by media_content_connect().
  *
@@ -318,4 +318,4 @@ int media_bookmark_update_to_db(media_bookmark_h bookmark);
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
-#endif /*__TIZEN_MEDIA_BOOKMARK_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_BOOKMARK_H__*/
index 65519e7..82f5b7b 100755 (executable)
@@ -14,8 +14,8 @@
 * limitations under the License.
 */
 
-#ifndef __TIZEN_MEDIA_CONTENT_H__
-#define __TIZEN_MEDIA_CONTENT_H__
+#ifndef __TIZEN_CONTENT_MEDIA_CONTENT_H__
+#define __TIZEN_CONTENT_MEDIA_CONTENT_H__
 
 #include <media_audio.h>
 #include <media_content_type.h>
@@ -91,7 +91,7 @@ int media_content_disconnect(void);
  * @details This function requests to scan a media file to the media server.
  *          If media file is not registered to DB yet, that media file information will be added to the media DB. If it is already registered to the DB, then this tries to refresh information. \n
  *          If requested file does not exist on file system, information of the media file will be removed from the media DB. \n
- *          If file information does not exist in DB, this API will be return #MEDIA_CONTENT_ERROR_INVALID_PARAMETER.
+ *          If file information does not exist in DB, this function will be return #MEDIA_CONTENT_ERROR_INVALID_PARAMETER.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -101,8 +101,8 @@ int media_content_disconnect(void);
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using  this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  * @remarks Since 4.0, this function is related to the following feature:\n
  *              %http://tizen.org/feature/content.scanning.others\n
@@ -137,7 +137,7 @@ int media_content_scan_file(const char *path);
  *          After moving or renaming a folder in the filesystem, call this function on its source location
  *          (this will remove an entry from the database) and call this function again on its destination location
  *          (this will add a new entry to the database).\n
- *          Alternatively, you can call this API on any parent of source location and on any parent of destination location.\n
+ *          Alternatively, you can call this function on any parent of source location and on any parent of destination location.\n
  *          You can also call the function once, on a folder which is a parent of both source and destination.\n
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
@@ -148,15 +148,15 @@ int media_content_scan_file(const char *path);
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using  this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  *
- * @param[in] path         The folder path
+ * @param[in] path The folder path
  * @param[in] is_recursive Set @c true to scan recursively subdirectories,
  *                         otherwise @c false to scan only the current directory
- * @param[in] callback     The callback to be invoked when the scanning is finished
- * @param[in] user_data    The user data to be passed to the callback function
+ * @param[in] callback The callback to be invoked when the scanning is finished
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -168,6 +168,7 @@ int media_content_scan_file(const char *path);
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_DB_FAILED    DB Operation failed
  * @retval #MEDIA_CONTENT_ERROR_DB_BUSY    DB Operation busy
+ * @retval #MEDIA_CONTENT_ERROR_NETWORK   Network fail
  *
  * @pre This function requires opened connection to content service by media_content_connect().
  * @see media_scan_completed_cb()
@@ -179,7 +180,7 @@ int media_content_scan_folder(const char *path, bool is_recursive, media_scan_co
  * @brief Requests to cancel the media folder scanning.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in] path         The folder path
+ * @param[in] path The folder path
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -196,14 +197,14 @@ int media_content_cancel_scan_folder(const char *path);
  * @brief Subscribes notifications of the media DB change.
  * @details This function subscribes notifications of the media DB change which are published by the media server or other apps. \n
  *          media_content_db_update_cb() function will be called when notification of the media DB change is subscribed. \n
- *          Using this API, multiple callback is possible to register in one process.
+ *          Using this function, multiple callback is possible to register in one process.
  *
  * @since_tizen 3.0
  *
- * @remarks  To release the registered callback, you must use media_content_remove_db_updated_cb() API. \n
- *           If you set the same callback that you previously added, this API returns MEDIA_CONTENT_ERROR_INVALID_OPERATION error. \n
+ * @remarks The @a noti_handle should be released using media_content_remove_db_updated_cb(). \n
+ *           If you set the same callback that you previously added, this function returns MEDIA_CONTENT_ERROR_INVALID_OPERATION error. \n
  *
- * @param[in] callback  The callback to be invoked when the scanning is finished
+ * @param[in] callback The callback to be invoked when the scanning is finished
  * @param[in] user_data The user data to be passed to the callback function
  * @param[out] noti_handle The handle to db updated notification
  *
@@ -220,9 +221,8 @@ int media_content_cancel_scan_folder(const char *path);
  */
 int media_content_add_db_updated_cb(media_content_db_update_cb callback, void *user_data, media_content_noti_h *noti_handle);
 
-
 /**
- * @brief Unsubscribes notifications of the media DB change.
+ * @brief Removes notifications of the media DB change.
  * @details This function unsubscribes notifications of the media DB change which are published by the media server or other apps.
  *
  * @since_tizen 3.0
@@ -249,4 +249,4 @@ int media_content_remove_db_updated_cb(media_content_noti_h noti_handle);
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_CONTENT_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_CONTENT_H__ */
index e25db20..d4c6a91 100755 (executable)
@@ -16,8 +16,8 @@
 
 
 
-#ifndef __TIZEN_MEDIA_CONTENT_INTERNAL_H__
-#define __TIZEN_MEDIA_CONTENT_INTERNAL_H__
+#ifndef __TIZEN_CONTENT_MEDIA_CONTENT_INTERNAL_H__
+#define __TIZEN_CONTENT_MEDIA_CONTENT_INTERNAL_H__
 
 #include <media_content_type.h>
 
@@ -62,4 +62,4 @@ int media_content_connect_with_uid(uid_t uid);
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
-#endif /*__TIZEN_MEDIA_CONTENT_INTERNAL_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_CONTENT_INTERNAL_H__*/
index 6c3e554..5bd8dfc 100755 (executable)
@@ -38,7 +38,7 @@ int media_content_scan_folder_v2(const char *path, bool is_recursive, media_scan
  *
  * @remarks You must release @a title using free().
  *
- * @param[in]  media         The media info handle
+ * @param[in] media         The media info handle
  * @param[out] extract_flag  The extract_flag of the media info
  *
  * @return @c 0 on success,
@@ -57,8 +57,8 @@ int media_info_get_stitched_engine(media_info_h media, int *type_360);
  * @details Function returns content's elapsed playback position parameter as period
  * starting from the beginning of the track.
  *
- * @param [in] media The handle to media info
- * @param [out] played_position The elapsed time of the content
+ * @param[in] media The handle to media info
+ * @param[out] played_position The elapsed time of the content
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
@@ -67,7 +67,7 @@ int media_info_get_played_position(media_info_h media, int *played_position);
 /**
  * @brief Gets the provider to media info.
  *
- * @remarks @a modified_month must be released with free() by you.
+ * @remarks @a modified_month should be released with free() by you.
  *
  * @param[in] media The handle to media info
  * @param[out] category The modified month of media info
@@ -82,8 +82,8 @@ int media_info_get_modified_month(media_info_h media, char **modified_month);
 /**
  * @brief Sets the played count to content meta handle.
  *
- * @param [in] media The handle to media info
- * @param [in] played_count The played count of content
+ * @param[in] media The handle to media info
+ * @param[in] played_count The played count of content
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
@@ -94,8 +94,8 @@ int media_info_set_played_count(media_info_h media, int played_count);
 /**
  * @brief Sets the played position to content meta handle.
  *
- * @param [in] media The handle to media info
- * @param [in] played_position The played position of content
+ * @param[in] media The handle to media info
+ * @param[in] played_position The played position of content
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
@@ -130,10 +130,10 @@ int media_folder_get_scan_status(const char *storage_uuid, char* path, media_fol
  * The callback function will be invoked for every retrieved media group.
  * If NULL is passed to the filter, no filtering is applied.
  *
- * @param [in] filter The handle to media filter
- * @param [in] group The type of media group
- * @param [in] callback The callback function to invoke
- * @param [in] user_data The user data to be passed to the callback function
+ * @param[in] filter The handle to media filter
+ * @param[in] group The type of media group
+ * @param[in] callback The callback function to invoke
+ * @param[in] user_data The user data to be passed to the callback function
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
@@ -152,7 +152,7 @@ int media_group_foreach_group_and_count_from_db(filter_h filter, media_group_e g
  * @brief Gets the storage scan status of media storage.
  * @since_tizen 2.4
  *
- * @param[in]  storage The media storage handle
+ * @param[in] storage The media storage handle
  * @param[out] scan_status  The storage type of the media storage
  *
  * @return @c 0 on success,
index cbee1ab..62e0e22 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_CONTENT_TYPE_H__
-#define __TIZEN_MEDIA_CONTENT_TYPE_H__
+#ifndef __TIZEN_CONTENT_MEDIA_CONTENT_TYPE_H__
+#define __TIZEN_CONTENT_MEDIA_CONTENT_TYPE_H__
 
 #include <time.h>
 #include <tizen.h>
@@ -49,7 +49,7 @@ extern "C" {
  * @brief Enumeration for the media file format.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, #MEDIA_CONTENT_TYPE_OTHERS is related to the following feature:\n
- *              %http://tizen.org/feature/content.scanning.others
+ *              %http://tizen.org/feature/content.scanning.others\n
  *              If this feature is not suppported on the device, MEDIA_CONTENT_TYPE_OTHERS type file is not scanned.
  */
 typedef enum {
@@ -122,7 +122,7 @@ typedef enum {
 typedef enum {
        MEDIA_CONTENT_ORDER_ASC   = 0,      /**< Ascending order*/
        MEDIA_CONTENT_ORDER_DESC  = 1,      /**< Descending order*/
-       MEDIA_CONTENT_ORDER_OTHER = 2,          /** order by order key**/
+       MEDIA_CONTENT_ORDER_OTHER = 2,          /**< order by order key**/
 } media_content_order_e;
 
 /**
@@ -137,6 +137,12 @@ typedef enum {
        MEDIA_CONTENT_COLLATE_LOCALIZED = 3,        /**< Collation LOCALIZATION, NOCASE also applied */
 } media_content_collation_e;
 
+/**
+* @brief Error class.
+* @details Class for Media Content error
+* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+*
+*/
 #define MEDIA_CONTENT_ERROR_CLASS                              TIZEN_ERROR_MEDIA_CONTENT
 
 /**
@@ -347,10 +353,19 @@ typedef void *media_content_noti_h;
 /**
  * @ingroup CAPI_MEDIA_CONTENT_MODULE
  * @brief Called when the media scanning is finished.
+ * @details The following error codes can be received: \n
+ *             #MEDIA_CONTENT_ERROR_NONE : Success \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_PARAMETER : Invalid parameter \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_OPERATION : Invalid operation \n
+ *             #MEDIA_CONTENT_ERROR_PERMISSION_DENIED : Permission denied \n
+ *             #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY : Out of memory \n
+ *             #MEDIA_CONTENT_ERROR_DB_FAILED : DB Operation failed \n
+ *             #MEDIA_CONTENT_ERROR_DB_BUSY : DB Operation busy \n
+ *             #MEDIA_CONTENT_ERROR_NETWORK : Network fail \n
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] error     The error code
+ * @param[in] error The error code
  * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_content_scan_folder().
@@ -361,19 +376,21 @@ typedef void (*media_scan_completed_cb)(media_content_error_e error, void * user
 /**
  * @ingroup CAPI_MEDIA_CONTENT_MODULE
  * @brief Called when the notification of the media DB change is subscribed.
+ * @details The following error codes can be received: \n
+ *             #MEDIA_CONTENT_ERROR_NONE : Success \n
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] error       The error code
- * @param[in] pid         The PID which publishes notification
+ * @param[in] error The error code
+ * @param[in] pid The PID which publishes notification
  * @param[in] update_item The update item of notification
  * @param[in] update_type The update type of notification
- * @param[in] media_type  The type of the media content (#media_content_type_e)
- * @param[in] uuid        The UUID of media or directory, which is updated
- * @param[in] path        The path of the media or directory
- * @param[in] mime_type   The mime type of the media info
- * @param[in] user_data   The user data passed from the foreach function
+ * @param[in] media_type The type of the media content (#media_content_type_e)
+ * @param[in] uuid The UUID of media or directory, which is updated
+ * @param[in] path The path of the media or directory
+ * @param[in] mime_type The MIME of the media info
+ * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_content_add_db_updated_cb().
  * @see media_content_add_db_updated_cb()
@@ -399,7 +416,7 @@ typedef void (*media_content_db_update_cb)(
  * @remarks To use the @a media outside this function, copy the handle with media_info_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] media     The handle to the media info
+ * @param[in] media The handle to the media info
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -421,11 +438,21 @@ typedef bool (*media_info_cb)(media_info_h media, void *user_data);
 /**
  * @ingroup CAPI_CONTENT_MEDIA_INFO_MODULE
  * @brief Called when media items are inserted completely.
+ * @details The following error codes can be received: \n
+ *             #MEDIA_CONTENT_ERROR_NONE : Success \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_PARAMETER : Invalid parameter \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_OPERATION : Invalid operation \n
+ *             #MEDIA_CONTENT_ERROR_PERMISSION_DENIED : Permission denied \n
+ *             #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY : Out of memory \n
+ *             #MEDIA_CONTENT_ERROR_DB_FAILED : DB Operation failed \n
+ *             #MEDIA_CONTENT_ERROR_DB_BUSY : DB Operation busy \n
+ *             #MEDIA_CONTENT_ERROR_NETWORK : Network fail \n
+ *             #MEDIA_CONTENT_ERROR_NOT_SUPPORTED : Not supported \n
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] media     The handle to the media info
+ * @param[in] error The error code
  * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_info_insert_batch_to_db()
@@ -438,11 +465,20 @@ typedef void (*media_insert_completed_cb)(media_content_error_e error, void * us
  * @deprecated Deprecated since 4.0.
  * @ingroup CAPI_CONTENT_MEDIA_INFO_MODULE
  * @brief Called when the burst shot is inserted completely.
+ * @details The following error codes can be received: \n
+ *             #MEDIA_CONTENT_ERROR_NONE : Success \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_PARAMETER : Invalid parameter \n
+ *             #MEDIA_CONTENT_ERROR_INVALID_OPERATION : Invalid operation \n
+ *             #MEDIA_CONTENT_ERROR_PERMISSION_DENIED : Permission denied \n
+ *             #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY : Out of memory \n
+ *             #MEDIA_CONTENT_ERROR_DB_FAILED : DB Operation failed \n
+ *             #MEDIA_CONTENT_ERROR_DB_BUSY : DB Operation busy \n
+ *             #MEDIA_CONTENT_ERROR_NETWORK : Network fail \n
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] media     The handle to the media info
+ * @param[in] error The error code
  * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_info_insert_burst_shot_to_db()
@@ -467,8 +503,8 @@ typedef void (*media_insert_burst_shot_completed_cb)(media_content_error_e error
  *
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] error     The error code
- * @param[in] path      The path of the thumbnail which is generated
+ * @param[in] error The error code
+ * @param[in] path The path of the thumbnail which is generated
  * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_info_create_thumbnail()
@@ -492,8 +528,8 @@ typedef void (*media_thumbnail_completed_cb)(media_content_error_e error, const
  *
  * @remarks The callback is called in a separate thread(not in the main loop).
  *
- * @param[in] error     The error code
- * @param[in] face_count      The number of all detected faces
+ * @param[in] error The error code
+ * @param[in] face_count The number of all detected faces
  * @param[in] user_data The user data passed from the foreach function
  *
  * @pre media_info_start_face_detection()
@@ -512,7 +548,7 @@ typedef void (*media_face_detection_completed_cb)(media_content_error_e error, c
  * @remarks To use the @a folder outside this function, copy the handle with the media_folder_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] folder    The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -534,7 +570,7 @@ typedef bool (*media_folder_cb)(media_folder_h folder, void *user_data);
  * @remarks To use the @a playlist outside this function, copy the handle with the media_playlist_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] playlist  The handle to the media playlist
+ * @param[in] playlist The handle to the media playlist
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -557,9 +593,9 @@ typedef bool (*media_playlist_cb)(media_playlist_h playlist, void *user_data);
  * @remarks To use the @a media outside this function, copy the handle with the media_info_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] playlist_member_id The ID to member of the playlist
- * @param[in] media              The handle to the media info
- * @param[in] user_data          The user data passed from the foreach function
+ * @param[in] playlist_member_id The ID of the playlist member
+ * @param[in] media The handle to the media info
+ * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
  *         otherwise @c false to break out of the loop
@@ -581,7 +617,7 @@ typedef bool (*playlist_member_cb)(int playlist_member_id, media_info_h media, v
  * @remarks To use the @a tag outside this function, copy the handle with the media_tag_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] tag       The handle to the media tag
+ * @param[in] tag The handle to the media tag
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -605,7 +641,7 @@ typedef bool (*media_tag_cb)(media_tag_h tag, void *user_data);
  * @remarks To use the @a bookmark outside this function, copy the handle with the media_bookmark_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] bookmark  The handle to the video bookmark
+ * @param[in] bookmark The handle to the media bookmark
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -626,7 +662,7 @@ typedef bool (*media_bookmark_cb)(media_bookmark_h bookmark, void *user_data);
  * @remarks To use the @a album outside this function, copy the handle with the media_album_clone() function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] album     The handle to the media album
+ * @param[in] album The handle to the media album
  * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
@@ -650,7 +686,7 @@ typedef bool (*media_album_cb)(media_album_h album, void *user_data);
  *                  The callback is called in the main loop.
  *
  * @param[in] group_name The name of the media group
- * @param[in] user_data  The user data passed from the foreach function
+ * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
  *         otherwise @c false to break out of the loop
@@ -670,8 +706,8 @@ typedef bool (*media_group_cb)(const char *group_name, void *user_data);
  * @remarks You should not destroy @a storage returned by this function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] storage     The handle of the media storage
- * @param[in] user_data  The user data passed from the foreach function
+ * @param[in] storage The handle of the media storage
+ * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
  *         otherwise @c false to break out of the loop
@@ -691,8 +727,8 @@ typedef bool (*media_storage_cb)(media_storage_h storage, void *user_data);
  * @remarks You should not destroy @a face returned by this function. \n
  *                  The callback is called in the main loop.
  *
- * @param[in] face     The handle of the media face
- * @param[in] user_data  The user data passed from the foreach function
+ * @param[in] face The handle of the media face
+ * @param[in] user_data The user data passed from the foreach function
  *
  * @return @c true to continue with the next iteration of the loop,
  *         otherwise @c false to break out of the loop
@@ -712,7 +748,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
  */
 
  /**
- * @brief Media ID
+ * @brief Media ID.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -720,7 +756,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ID "MEDIA_ID"
 
 /**
- * @brief Media full path
+ * @brief Media full path.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -728,7 +764,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_PATH "MEDIA_PATH"
 
 /**
- * @brief The file name including the extension
+ * @brief The file name including the extension.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -736,7 +772,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_DISPLAY_NAME "MEDIA_DISPLAY_NAME"
 
 /**
- * @brief Media type
+ * @brief Media type.
  * @details There are 5 media types:\n
  *               0-image, 1-video, 2-sound, 3-music, 4-other\n
  *               You can use above define to set the condition of media filter and order keyword.
@@ -746,7 +782,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_TYPE "MEDIA_TYPE"
 
 /**
- * @brief Media MIME type
+ * @brief Media MIME type.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -755,7 +791,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 
 /**
- * @brief Media file size
+ * @brief Media file size.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -763,7 +799,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_SIZE "MEDIA_SIZE"
 
 /**
- * @brief The time that content file was first added to media database
+ * @brief The time that content file was first added to media database.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -771,7 +807,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ADDED_TIME "MEDIA_ADDED_TIME"
 
 /**
- * @brief The last modification time provided by the file system
+ * @brief The last modification time provided by the file system.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -779,7 +815,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_MODIFIED_TIME "MEDIA_MODIFIED_TIME"
 
 /**
- * @brief  Media created time
+ * @brief  Media created time.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -787,7 +823,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_TIMELINE "MEDIA_TIMELINE"
 
 /**
- * @brief Media thumbnail path
+ * @brief Media thumbnail path.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -795,7 +831,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_THUMBNAIL_PATH "MEDIA_THUMBNAIL_PATH"
 
 /**
- * @brief Media title get from tag or file name
+ * @brief Media title get from tag or file name.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -803,7 +839,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_TITLE "MEDIA_TITLE"
 
 /**
- * @brief Media album name
+ * @brief Media album name.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -811,7 +847,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ALBUM "MEDIA_ALBUM"
 
 /**
- * @brief Media artist
+ * @brief Media artist.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -819,7 +855,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ARTIST "MEDIA_ARTIST"
 
 /**
- * @brief Media album artist
+ * @brief Media album artist.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -827,7 +863,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ALBUM_ARTIST "MEDIA_ALBUM_ARTIST"
 
 /**
- * @brief Media genre
+ * @brief Media genre.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -835,7 +871,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_GENRE "MEDIA_GENRE"
 
 /**
- * @brief Media composer
+ * @brief Media composer.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -843,7 +879,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_COMPOSER "MEDIA_COMPOSER"
 
 /**
- * @brief Media year
+ * @brief Media year.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -851,7 +887,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_YEAR "MEDIA_YEAR"
 
 /**
- * @brief Media recorded date
+ * @brief Media recorded date.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -859,7 +895,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_RECORDED_DATE "MEDIA_RECORDED_DATE"
 
 /**
- * @brief Media copyright
+ * @brief Media copyright.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -867,7 +903,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_COPYRIGHT "MEDIA_COPYRIGHT"
 
 /**
- * @brief Media track number
+ * @brief Media track number.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -875,7 +911,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_TRACK_NUM "MEDIA_TRACK_NUM"
 
 /**
- * @brief Media description
+ * @brief Media description.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -883,7 +919,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_DESCRIPTION "MEDIA_DESCRIPTION"
 
 /**
- * @brief Media bitrate
+ * @brief Media bitrate.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -891,7 +927,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_BITRATE "MEDIA_BITRATE"
 
 /**
- * @brief Media bit per sample
+ * @brief Media bit per sample.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -899,7 +935,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_BITPERSAMPLE "MEDIA_BITPERSAMPLE"
 
 /**
- * @brief Media sample rate
+ * @brief Media sample rate.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -907,7 +943,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_SAMPLERATE "MEDIA_SAMPLERATE"
 
 /**
- * @brief Media channel
+ * @brief Media channel.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -915,7 +951,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_CHANNEL "MEDIA_CHANNEL"
 
 /**
- * @brief Media duration
+ * @brief Media duration.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -923,7 +959,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_DURATION "MEDIA_DURATION"
 
 /**
- * @brief Media longitude
+ * @brief Media longitude.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -931,7 +967,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_LONGITUDE "MEDIA_LONGITUDE"
 
 /**
- * @brief Media latitude
+ * @brief Media latitude.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -939,7 +975,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_LATITUDE "MEDIA_LATITUDE"
 
 /**
- * @brief Media altitude
+ * @brief Media altitude.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -947,7 +983,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ALTITUDE "MEDIA_ALTITUDE"
 
 /**
- * @brief Media width
+ * @brief Media width.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -955,7 +991,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_WIDTH "MEDIA_WIDTH"
 
 /**
- * @brief Media height
+ * @brief Media height.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -963,7 +999,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_HEIGHT "MEDIA_HEIGHT"
 
 /**
- * @brief Media datetaken
+ * @brief Media datetaken.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -971,7 +1007,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_DATETAKEN "MEDIA_DATETAKEN"
 
 /**
- * @brief Media orientation
+ * @brief Media orientation.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -980,7 +1016,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media burst ID
+ * @brief Media burst ID.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -989,7 +1025,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media playedcount
+ * @brief Media playedcount.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -998,7 +1034,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media last played time
+ * @brief Media last played time.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1007,7 +1043,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media last played position of file
+ * @brief Media last played position of file.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1015,7 +1051,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_LAST_PLAYED_POSITION "MEDIA_LAST_PLAYED_POSITION"
 
 /**
- * @brief Media rating
+ * @brief Media rating.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1023,7 +1059,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_RATING "MEDIA_RATING"
 
 /**
- * @brief The time to register favourite
+ * @brief The time to register favourite.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1032,7 +1068,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media author
+ * @brief Media author.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1041,7 +1077,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media provider
+ * @brief Media provider.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1050,7 +1086,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media content name
+ * @brief Media content name.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1059,7 +1095,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media category
+ * @brief Media category.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1068,7 +1104,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media location tag
+ * @brief Media location tag.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1077,7 +1113,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media age rating
+ * @brief Media age rating.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1086,7 +1122,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media keyword
+ * @brief Media keyword.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1095,7 +1131,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media weather
+ * @brief Media weather.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1103,7 +1139,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_WEATHER "MEDIA_WEATHER"
 
 /**
- * @brief Is DRM
+ * @brief Is DRM.
  * @details There are 2 types:\n
  *               0-not drm, 1-drm\n
  *               You can use above define to set the condition of media filter and order keyword.
@@ -1113,7 +1149,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_IS_DRM "MEDIA_IS_DRM"
 
 /**
- * @brief Media storage
+ * @brief Media storage.
  * @details There are 2 types:\n
  *               0-internal storage, 1-external storage\n
  *               You can use above define to set the condition of media filter and order keyword.
@@ -1123,7 +1159,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_STORAGE_TYPE "MEDIA_STORAGE_TYPE"
 
 /**
- * @brief Media exposure time
+ * @brief Media exposure time.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
@@ -1131,7 +1167,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_EXPOSURE_TIME "MEDIA_EXPOSURE_TIME"
 
 /**
- * @brief Media fnumber
+ * @brief Media fnumber.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
@@ -1139,7 +1175,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_FNUMBER "MEDIA_FNUMBER"
 
 /**
- * @brief Media ISO
+ * @brief Media ISO.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
@@ -1147,7 +1183,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ISO "MEDIA_ISO"
 
 /**
- * @brief Media model
+ * @brief Media model.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
@@ -1155,29 +1191,29 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_MODEL "MEDIA_MODEL"
 
 /**
- * @brief Media file name pinyin
+ * @brief Media file name pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
  *          - %http://tizen.org/feature/content.filter.pinyin\n
- *            If this feature is not supported on the device, PINYIN search does not work.
+ *             If this feature is not supported on the device, PINYIN search does not work.
  *
  */
 #define MEDIA_FILE_NAME_PINYIN "MEDIA_FILE_NAME_PINYIN"
 
 /**
- * @brief Media title pinyin
+ * @brief Media title pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
  *          - %http://tizen.org/feature/content.filter.pinyin\n
- *            If this feature is not supported on the device, PINYIN search does not work.
+ *             If this feature is not supported on the device, PINYIN search does not work.
  *
  */
 #define MEDIA_TITLE_PINYIN "MEDIA_TITLE_PINYIN"
 
 /**
- * @brief Media album pinyin
+ * @brief Media album pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1188,18 +1224,18 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ALBUM_PINYIN "MEDIA_ALBUM_PINYIN"
 
 /**
- * @brief Media artist pinyin
+ * @brief Media artist pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
  *          - %http://tizen.org/feature/content.filter.pinyin\n
- *            If this feature is not supported on the device, PINYIN search does not work.
+ *             If this feature is not supported on the device, PINYIN search does not work.
  *
  */
 #define MEDIA_ARTIST_PINYIN "MEDIA_ARTIST_PINYIN"
 
 /**
- * @brief Media album artist pinyin
+ * @brief Media album artist pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1210,7 +1246,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_ALBUM_ARTIST_PINYIN "MEDIA_ALBUM_ARTIST_PINYIN"
 
 /**
- * @brief Media genre pinyin
+ * @brief Media genre pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1221,7 +1257,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_GENRE_PINYIN "MEDIA_GENRE_PINYIN"
 
 /**
- * @brief Media composer pinyin
+ * @brief Media composer pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1232,7 +1268,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_COMPOSER_PINYIN "MEDIA_COMPOSER_PINYIN"
 
 /**
- * @brief Media copyright pinyin
+ * @brief Media copyright pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1243,7 +1279,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_COPYRIGHT_PINYIN "MEDIA_COPYRIGHT_PINYIN"
 
 /**
- * @brief Media description pinyin
+ * @brief Media description pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1255,7 +1291,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media author pinyin
+ * @brief Media author pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1267,7 +1303,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media provider pinyin
+ * @brief Media provider pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1279,7 +1315,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media content name pinyin
+ * @brief Media content name pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1291,7 +1327,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media category pinyin
+ * @brief Media category pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1303,7 +1339,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media location tag pinyin
+ * @brief Media location tag pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1315,7 +1351,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media age rating pinyin
+ * @brief Media age rating pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1327,7 +1363,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Media keyword pinyin
+ * @brief Media keyword pinyin.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1338,7 +1374,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_KEYWORD_PINYIN "MEDIA_KEYWORD_PINYIN"
 
 /**
- * @brief Virtual Reality content
+ * @brief Virtual Reality content.
  * @details You can use above define to set the condition of media filter and order keyword.
  * @since_tizen 3.0
  *
@@ -1346,21 +1382,21 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define MEDIA_360 "MEDIA_360"
 
  /**
- * @brief Folder ID
+ * @brief Folder ID.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define FOLDER_ID "FOLDER_ID"
 
 /**
- * @brief Folder full path
+ * @brief Folder full path.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define FOLDER_PATH "FOLDER_PATH"
 
 /**
- * @brief Folder base name
+ * @brief Folder base name.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
@@ -1368,14 +1404,14 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Folder modified time
+ * @brief Folder modified time.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define FOLDER_MODIFIED_TIME "FOLDER_MODIFIED_TIME"
 
 /**
- * @brief Folder storage
+ * @brief Folder storage.
  * @details There are 2 types:\n
  *               0-internal storage, 1-external storage\n
  *               You can use above define to set the condition of folder filter and order keyword.
@@ -1384,7 +1420,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #define FOLDER_STORAGE_TYPE "FOLDER_STORAGE_TYPE"
 
 /**
- * @brief Folder base name pinyin
+ * @brief Folder base name pinyin.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  * @remarks Since 4.0, this keyword is related to the following feature:\n
@@ -1395,7 +1431,7 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Folder order info
+ * @brief Folder order info.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  */
@@ -1403,105 +1439,105 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 
 /**
  * @deprecated Deprecated since 4.0.
- * @brief Parent folder id
+ * @brief Parent folder id.
  * @details You can use above define to set the condition of folder filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  */
 #define FOLDER_PARENT_FOLDER_ID "FOLDER_PARENT_FOLDER_ID"
 
 /**
- * @brief Playlist name
+ * @brief Playlist name.
  * @details You can use above define to set the condition of playlist filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define PLAYLIST_NAME "PLAYLIST_NAME"
 
 /**
- * @brief Playlist id
+ * @brief Playlist id.
  * @details You can use above define to set the condition of playlist filter and order keyword.
  * @since_tizen 4.0
  */
 #define MEDIA_PLAYLIST_ID "PLAYLIST_ID"
 
 /**
- * @brief Playlist name
+ * @brief Playlist member order.
  * @details You can use above define to set the condition of playlist filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define PLAYLIST_MEMBER_ORDER "PLAYLIST_MEMBER_ORDER"
 
 /**
- * @brief Media count in playlist
+ * @brief Media count in playlist.
  * @details You can use above define to set the condition of playlist filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define PLAYLIST_MEDIA_COUNT "PLAYLIST_MEDIA_COUNT"
 
 /**
- * @brief Tag name
+ * @brief Tag name.
  * @details You can use above define to set the condition of tag filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define TAG_NAME "TAG_NAME"
 
 /**
- * @brief Tag id
+ * @brief Tag id.
  * @details You can use above define to set the condition of tag filter and order keyword.
  * @since_tizen 4.0
  */
 #define MEDIA_TAG_ID "TAG_ID"
 
 /**
- * @brief Media count in tag
+ * @brief Media count in tag.
  * @details You can use above define to set the condition of tag filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define TAG_MEDIA_COUNT "TAG_MEDIA_COUNT"
 
 /**
- * @brief Bookmark marked time
+ * @brief Bookmark marked time.
  * @details You can use above define to set the condition of bookmark filter and order keyword.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  */
 #define BOOKMARK_MARKED_TIME "BOOKMARK_MARKED_TIME"
 
 /**
- * @brief Bookmark id
+ * @brief Bookmark id.
  * @details You can use above define to set the condition of bookmark filter and order keyword.
  * @since_tizen 4.0
  */
 #define MEDIA_BOOKMARK_ID "BOOKMARK_ID"
 
 /**
- * @brief Bookmark name
+ * @brief Bookmark name.
  * @details You can use above define to set the condition of bookmark filter and order keyword.
  * @since_tizen 4.0
  */
 #define BOOKMARK_NAME "BOOKMARK_NAME"
 
 /**
- * @brief Storage ID
+ * @brief Storage ID.
  * @details You can use above define to set the condition of storage filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  */
 #define MEDIA_STORAGE_ID                                       "STORAGE_ID"
 
 /**
- * @brief Storage path
+ * @brief Storage path.
  * @details You can use above define to set the condition of storage filter and order keyword.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  */
 #define MEDIA_STORAGE_PATH                             "STORAGE_PATH"
 
 /**
- * @brief Face tag
+ * @brief Face tag.
  * @details You can use above define to set the condition of face filter and order keyword.
  * @since_tizen 3.0
  */
 #define MEDIA_FACE_TAG "MEDIA_FACE_TAG"
 
 /**
- * @brief Face id
+ * @brief Face id.
  * @details You can use above define to set the condition of face filter and order keyword.
  * @since_tizen 4.0
  */
@@ -1517,4 +1553,4 @@ typedef bool (*media_face_cb)(media_face_h face, void *user_data);
 #endif /* __cplusplus */
 
 
-#endif /*__TIZEN_MEDIA_CONTENT_TYPE_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_CONTENT_TYPE_H__*/
index 231b978..4f7596b 100755 (executable)
@@ -14,8 +14,8 @@
 * limitations under the License.
 */
 
-#ifndef __TIZEN_MEDIA_IMAGE_FACE_H__
-#define __TIZEN_MEDIA_IMAGE_FACE_H__
+#ifndef __TIZEN_CONTENT_MEDIA_FACE_H__
+#define __TIZEN_CONTENT_MEDIA_FACE_H__
 
 #include <media_content_type.h>
 
@@ -25,10 +25,10 @@ extern "C" {
 
 /**
  * @file media_face.h
- * @brief This file contains the media face API and related to all operations with the face information of the image in Media DB. \n
- *             Functions include cloning and destroying the face handler, getting face information such as face id, face coordinates in file, \n
+ * @brief This file contains the media face function and related to all operations with the face information of the image in Media DB. \n
+ *             Functions include cloning and destroying the media face handler, getting face information such as face id, face coordinates in file, \n
  *             face tag. Face information will be managed by DB. To insert face information, you should use media_face_insert_to_db() \n
- *             or media_info_start_face_detection() API. And you can insert,update,delete face information manually.
+ *             or media_info_start_face_detection() function. And you can insert,update,delete face information manually.
  */
 
 /**
@@ -37,17 +37,17 @@ extern "C" {
  */
 
 /**
- * @brief Clones the face handle.
- * @details This function copies the face handle from a source to
+ * @brief Clones the media face handle.
+ * @details This function copies the media face handle from a source to
  * destination. There is no media_face_create() function. The media_face_h is created internally and available through
  * media face foreach function such as media_face_foreach_face_from_db(). To use this handle outside of these foreach functions,
  * use this function.
  *
  * @since_tizen 3.0
- * @remark The destination handle must be released with media_event_destroy() by you.
+ * @remarks The @a dst should be released using media_face_destroy().
  *
- * @param [in] src The source face handle
- * @param [out] dst A destination face handle
+ * @param[out] dst The destination handle to the media face
+ * @param[in] src The source handle to the media face
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -61,36 +61,35 @@ extern "C" {
 int media_face_clone(media_face_h *dst, media_face_h src);
 
 /**
- * @brief Destroys the face handle.
- * @details Function frees all resources related to face handle. This
+ * @brief Destroys the media face handle.
+ * @details Function frees all resources related to media face handle. This
  * handle no longer can be used to perform any operation. New handle has to
  * be created before next usage.
  *
  * @since_tizen 3.0
  *
- * @param [in] face The face handle
+ * @param[in] face The media face handle
  *
  * @return 0 on success, otherwise a negative error value.
  *
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_face_clone()
- *
- * @pre Get copy of face handle by calling media_face_clone() or Get face handle by calling media_info_foreach_face_from_db()
+ * @pre Get copy of media face handle by calling media_face_clone() or Get media face handle by calling media_info_foreach_face_from_db()
  *
+ * @see media_face_clone()
  */
 int media_face_destroy(media_face_h face);
 
 /**
- * @brief Gets the face id from the face handle.
+ * @brief Gets the face id from the media face handle.
  *
  * @since_tizen 3.0
  *
- * @remarks You must release @a face_id using free().
+ * @remarks The @a face_id should be released using free().
  *
- * @param [in] face The face handle
- * @param [out] face_id The uuid of the face handle
+ * @param[in] face The media face handle
+ * @param[out] face_id The ID of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -100,14 +99,14 @@ int media_face_destroy(media_face_h face);
 int media_face_get_face_id(media_face_h face, char **face_id);
 
 /**
- * @brief Gets the media uuid from the face handle.
+ * @brief Gets the media id from the media face handle.
  *
  * @since_tizen 3.0
  *
- * @remarks You must release @a media_id using free().
+ * @remarks The @a media_id should be released using free().
  *
- * @param [in] face The face handle
- * @param [out] media_id The media uuid of the face handle
+ * @param[in] face The media face handle
+ * @param[out] media_id The media ID
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -117,16 +116,16 @@ int media_face_get_face_id(media_face_h face, char **face_id);
 int media_face_get_media_id(media_face_h face, char **media_id);
 
  /**
- * @brief Gets the face's rectangle from the face handle.
- * @details This API can get the face's rectangle information. returned rectangle information includes the orientation value.
+ * @brief Gets the face's rectangle from the media face handle.
+ * @details This function can get the face's rectangle information. returned rectangle information includes the orientation value.
  *
  * @since_tizen 3.0
  *
- * @param [in] face The face handle
- * @param [out] rect_x The x position of face of the face handle
- * @param [out] rect_y The y position of face of the face handle
- * @param [out] rect_w The width of face of the face handle
- * @param [out] rect_h The height of face of the face handle
+ * @param[in] face The media face handle
+ * @param[out] rect_x The x position of the media face
+ * @param[out] rect_y The y position of the media face
+ * @param[out] rect_w The width of the media face
+ * @param[out] rect_h The height of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -135,13 +134,13 @@ int media_face_get_media_id(media_face_h face, char **media_id);
 int media_face_get_face_rect(media_face_h face, unsigned int *rect_x, unsigned int *rect_y, unsigned int *rect_w, unsigned int *rect_h);
 
 /**
- * @brief Gets the orientation from the face handle.
- * @details This API can get the orientation value from the original image.
+ * @brief Gets the orientation from the media face handle.
+ * @details This function can get the orientation value from the original image.
  *
  * @since_tizen 3.0
  *
- * @param [in] face The face handle
- * @param [out] orientation The orientation of the face handle
+ * @param[in] face The media face handle
+ * @param[out] orientation The orientation of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -150,14 +149,14 @@ int media_face_get_face_rect(media_face_h face, unsigned int *rect_x, unsigned i
 int media_face_get_orientation(media_face_h face, media_content_orientation_e *orientation);
 
 /**
- * @brief Gets the tag from the face handle.
+ * @brief Gets the tag from the media face handle.
  *
  * @since_tizen 3.0
  *
- * @remarks You must release @a tag using free().
+ * @remarks The @a tag should be released using free().
  *
- * @param [in] face The face handle
- * @param [out] tag The tag of the face handle
+ * @param[in] face The media face handle
+ * @param[out] tag The tag of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -166,12 +165,14 @@ int media_face_get_orientation(media_face_h face, media_content_orientation_e *o
 int media_face_get_tag(media_face_h face, char **tag);
 
 /**
- * @brief Creates the face handle.
+ * @brief Creates the media face handle.
  *
  * @since_tizen 3.0
  *
- * @param [in] media_id The media uuid to create the face handle
- * @param [out] face The face handle
+ * @remarks The @a face should be released using media_face_destroy().
+ *
+ * @param[in] media_id The media ID
+ * @param[out] face The media face handle
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -182,14 +183,14 @@ int media_face_get_tag(media_face_h face, char **tag);
 int media_face_create(const char *media_id, media_face_h *face);
 
 /**
- * @brief Sets the face rectangle of the face handle
+ * @brief Sets the face rectangle of the media face handle.
  *
  * @since_tizen 3.0
  *
- * @param[in] face The face handle
+ * @param[in] face The media face handle
  * @param[in] rect_x The integer to set as a position x of face rectangle
  * @param[in] rect_y The integer to set as a position y of face rectangle
- * @param[in] rect_w The integer to set as a width  of face rectangle
+ * @param[in] rect_w The integer to set as a width of face rectangle
  * @param[in] rect_h The integer to set as a height of face rectangle
  *
  * @return 0 on success, otherwise a negative error value.
@@ -203,12 +204,12 @@ int media_face_create(const char *media_id, media_face_h *face);
 int media_face_set_face_rect(media_face_h face, unsigned int rect_x, unsigned int rect_y, unsigned int rect_w, unsigned int rect_h);
 
 /**
- * @brief Sets the orientation of the face handle
- * @details This API may set the value of the original image orientation.
+ * @brief Sets the orientation of the media face handle.
+ * @details This function may set the value of the original image orientation.
  *
  * @since_tizen 3.0
  *
- * @param[in] face The face handle
+ * @param[in] face The media face handle
  * @param[in] orientation The integer to set as an orientation
  *
  * @return 0 on success, otherwise a negative error value.
@@ -222,12 +223,12 @@ int media_face_set_face_rect(media_face_h face, unsigned int rect_x, unsigned in
 int media_face_set_orientation(media_face_h face, media_content_orientation_e orientation);
 
 /**
- * @brief Sets the tag of the face handle.
+ * @brief Sets the tag of the media face handle.
  *
  * @since_tizen 3.0
  *
- * @param [in] face The face handle
- * @param [in] tag The tag of the face handle
+ * @param[in] face The media face handle
+ * @param[in] tag The tag of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -246,9 +247,9 @@ int media_face_set_tag(media_face_h face, const char *tag);
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @remarks The created tag handle must be released using media_tag_destroy().
+ * @remarks The @a face should be released using media_face_destroy().
  *
- * @param [in] face The face handle
+ * @param[in] face The media face handle
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -278,7 +279,7 @@ int media_face_insert_to_db(media_face_h face);
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] face The face handle to update
+ * @param[in] face The media face handle to update
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -300,14 +301,14 @@ int media_face_insert_to_db(media_face_h face);
 int media_face_update_to_db(media_face_h face);
 
 /**
- * @brief Deletes the face with given face uuid from the media database.
+ * @brief Deletes the face with given face id from the media database.
  *
  * @since_tizen 3.0
  *
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param [in] face_id The id of media face
+ * @param[in] face_id The ID of the media face
  *
  * @return 0 on success, otherwise a negative error value.
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
@@ -328,8 +329,8 @@ int media_face_delete_from_db(const char *face_id);
  * @brief Gets the number of media faces with an optional filter from the media database.
  * @since_tizen 4.0
  *
- * @param[in]  filter      The handle to the face filter
- * @param[out] face_count  The count of the media faces
+ * @param[in] filter The handle to the media filter
+ * @param[out] face_count The count of the media faces
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -352,9 +353,9 @@ int media_face_get_face_count_from_db(filter_h filter, int *face_count);
  *          If @c NULL is passed to the @a filter, then no filtering is applied.
  * @since_tizen 4.0
  *
- * @param[in] filter     The handle to the face filter
- * @param[in] callback   The callback function to be invoked
- * @param[in] user_data  The user data to be passed to the callback function
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -382,4 +383,4 @@ int media_face_foreach_face_from_db(filter_h filter, media_face_cb callback, voi
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_IMAGE_FACE_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_FACE_H__ */
index 3e5f580..4a07385 100755 (executable)
@@ -16,8 +16,8 @@
 
 
 
-#ifndef __TIZEN_MEDIA_FILTER_H__
-#define __TIZEN_MEDIA_FILTER_H__
+#ifndef __TIZEN_CONTENT_MEDIA_FILTER_H__
+#define __TIZEN_CONTENT_MEDIA_FILTER_H__
 
 #include <media_content_type.h>
 
@@ -46,9 +46,9 @@ extern "C" {
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the @a filter handle using media_info_filter_destroy().
+ * @remarks The @a filter should be released using media_info_filter_destroy().
  *
- * @param[out] filter A handle to the media filter
+ * @param[out] filter The handle to the media filter
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -89,8 +89,8 @@ int media_filter_destroy(filter_h filter);
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @param[in] filter The handle to the media filter
- * @param[in] offset The start position of the given filter (Starting from zero)
- * @param[in] count  The number of items to be searched with respect to the offset
+ * @param[in] offset The start position of the given media filter (Starting from zero)
+ * @param[in] count The number of items to be searched with respect to the offset
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -107,8 +107,8 @@ int media_filter_set_offset(filter_h filter, int offset, int count);
  * @brief Sets the @a condition for the given @a filter.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter       The handle to the media filter
- * @param[in] condition    The condition which is used WHERE clause on a query
+ * @param[in] filter The handle to the media filter
+ * @param[in] condition The condition which is used WHERE clause on a query
  * @param[in] collate_type The collate type for comparing two strings
  *
  * @return @c 0 on success,
@@ -124,13 +124,13 @@ int media_filter_set_offset(filter_h filter, int offset, int count);
 int media_filter_set_condition(filter_h filter, const char *condition, media_content_collation_e collate_type);
 
 /**
- * @brief Sets the media filter content @a order and order keyword i.e. either descending or ascending.
+ * @brief Sets the media filter content @a order_type and @a order_keyword i.e. either descending or ascending.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter        The handle to the media filter
- * @param[in] order_type    The search order type
+ * @param[in] filter The handle to the media filter
+ * @param[in] order_type The search order type
  * @param[in] order_keyword The search order keyword
- * @param[in] collate_type  The collate type for comparing two strings
+ * @param[in] collate_type The collate type for comparing two strings
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -144,13 +144,13 @@ int media_filter_set_condition(filter_h filter, const char *condition, media_con
 int media_filter_set_order(filter_h filter, media_content_order_e order_type, const char *order_keyword, media_content_collation_e collate_type);
 
 /**
- * @brief Sets the @a storage id for the given @a filter.
- * @details You can use this API when you want to search items only in the specific storage
+ * @brief Sets the @a storage_id for the given @a filter.
+ * @details You can use this function when you want to search items only in the specific storage
  *
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in] filter       The handle to the media filter
- * @param[in] storage_id    The storage_id for browsing or searching
+ * @param[in] filter The handle to the media filter
+ * @param[in] storage_id The ID of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -168,9 +168,9 @@ int media_filter_set_storage(filter_h filter, const char *storage_id);
  * @brief Gets the @a offset and @a count for the given @a filter used to limit the number of items returned.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter The handle to the media filter
- * @param[out] offset The start position of the given filter (Starting from zero)
- * @param[out] count  The number of items to be searched with respect to the offset
+ * @param[in] filter The handle to the media filter
+ * @param[out] offset The start position of the given media filter (Starting from zero)
+ * @param[out] count The number of items to be searched with respect to the offset
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -187,10 +187,10 @@ int media_filter_get_offset(filter_h filter, int *offset, int *count);
  * @brief Gets the @a condition for the given @a filter.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a condition using free().
+ * @remarks The @a condition should be released using free().
  *
- * @param[in]  filter       The handle to the media info filter
- * @param[out] condition    The condition which is used WHERE clause on a query
+ * @param[in] filter The handle to the media filter
+ * @param[out] condition The condition which is used WHERE clause on a query
  * @param[out] collate_type The collate type for comparing two strings
  *
  * @return @c 0 on success,
@@ -206,15 +206,15 @@ int media_filter_get_offset(filter_h filter, int *offset, int *count);
 int media_filter_get_condition(filter_h filter, char **condition, media_content_collation_e *collate_type);
 
 /**
- * @brief Gets the media filter's content @a order and order keyword i.e. either descending or ascending.
+ * @brief Gets the media filter's content @a order_type and @a order_keyword i.e. either descending or ascending.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a order_keyword using free().
+ * @remarks The @a order_keyword should be released using free().
  *
- * @param[in]  filter        The handle to the media filter
- * @param[out] order_type    The search order type
+ * @param[in] filter The handle to the media filter
+ * @param[out] order_type The search order type
  * @param[out] order_keyword The search order keyword
- * @param[out] collate_type  The collate type for comparing two strings
+ * @param[out] collate_type The collate type for comparing two strings
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -228,13 +228,13 @@ int media_filter_get_condition(filter_h filter, char **condition, media_content_
 int media_filter_get_order(filter_h filter, media_content_order_e* order_type, char **order_keyword, media_content_collation_e *collate_type);
 
 /**
- * @brief Get the @a storage id for given @a filter.
+ * @brief Gets the @a storage_id for given @a filter.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_id using free().
+ * @remarks The @a storage_id should be released using free().
  *
- * @param[in] filter The handle to media info filter
- * @param[out] storage_id The storage_id which is used in filter
+ * @param[in] filter The handle to the media filter
+ * @param[out] storage_id The ID of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -255,4 +255,4 @@ int media_filter_get_storage(filter_h filter, char **storage_id);
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_FILTER_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_FILTER_H__ */
index bc9d138..1d0ac25 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_FOLDER_H__
-#define __TIZEN_MEDIA_FOLDER_H__
+#ifndef __TIZEN_CONTENT_MEDIA_FOLDER_H__
+#define __TIZEN_CONTENT_MEDIA_FOLDER_H__
 
 
 #include <media_content_type.h>
@@ -45,8 +45,7 @@ extern "C" {
  * @brief Gets the count of folder for the passed @a filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter       The handle to filter \n
- *                          To allow searching over different content types, you should use #filter_h.
+ * @param[in] filter The handle to the media filter
  * @param[out] folder_count The count of the media folder
  *
  * @return @c 0 on success,
@@ -76,8 +75,8 @@ int media_folder_get_folder_count_from_db(filter_h filter, int *folder_count);
  *                   So, your callback function is in read state in SQLite. When you are in read state, sometimes you do not update DB. \n
  *                   We do not recommend you call updating DB function in callback of foreach function.
  *
- * @param[in] filter    The handle to the media folder filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -101,11 +100,11 @@ int media_folder_get_folder_count_from_db(filter_h filter, int *folder_count);
 int media_folder_foreach_folder_from_db(filter_h filter, media_folder_cb callback, void *user_data);
 
 /**
- * @brief Gets the count of media files for the passed @a filter in the given @a folder from the media database.
+ * @brief Gets the count of media files for the passed @a filter in the given @a folder_id from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] folder_id    The ID of the media folder
- * @param[in] filter       The filter of the media content
+ * @param[in] folder_id The ID of the media folder
+ * @param[in] filter The handle to the media filter
  * @param[out] media_count The count of media folder items
  *
  * @return @c 0 on success,
@@ -124,7 +123,7 @@ int media_folder_foreach_folder_from_db(filter_h filter, media_folder_cb callbac
 int media_folder_get_media_count_from_db(const char *folder_id, filter_h filter, int *media_count);
 
 /**
- * @brief Iterates through the media files with an optional @a filter in the given @a folder from the media database.
+ * @brief Iterates through the media files with an optional @a filter in the given @a folder_id from the media database.
  * @details This function gets all media files associated with the given folder and
  *          meeting desired filter option and calls @a callback for
  *          every retrieved media item. If @c NULL is passed to the @a filter, no filtering is applied.
@@ -137,8 +136,8 @@ int media_folder_get_media_count_from_db(const char *folder_id, filter_h filter,
  *                    We do not recommend you call updating DB function in callback of foreach function.
  *
  * @param[in] folder_id The ID of the media folder
- * @param[in] filter    The handle to the media info filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -169,10 +168,10 @@ int media_folder_foreach_media_from_db(const char *folder_id, filter_h filter, m
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks The destination handle must be released with media_folder_destroy().
+ * @remarks The @a dst should be released using media_folder_destroy().
  *
  * @param[out] dst The destination handle to the media folder
- * @param[in]  src The source handle to the media folder
+ * @param[in] src The source handle to the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -211,9 +210,9 @@ int media_folder_destroy(media_folder_h folder);
  * @brief Gets the media folder ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a folder_id using free().
+ * @remarks The @a folder_id should be released using free().
  *
- * @param[in]  folder    The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[out] folder_id The ID of the media folder
  *
  * @return @c 0 on success,
@@ -229,9 +228,9 @@ int media_folder_get_folder_id(media_folder_h folder, char **folder_id);
  * @brief Gets the parent folder ID.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a parent_folder_id using free().
+ * @remarks The @a parent_folder_id should be released using free().
  *
- * @param[in]  folder    The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[out] parent_folder_id The ID of the upper media folder
  *
  * @return @c 0 on success,
@@ -246,10 +245,10 @@ int media_folder_get_parent_folder_id(media_folder_h folder, char **parent_folde
  * @brief Gets the absolute path to the media folder.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a path using free().
+ * @remarks The @a path should be released using free().
  *
- * @param[in]  folder The handle to the media folder
- * @param[out] path   The path of the media folder
+ * @param[in] folder The handle to the media folder
+ * @param[out] path The path of the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -265,9 +264,9 @@ int media_folder_get_path(media_folder_h folder, char **path);
  * @brief Gets the media folder name.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a folder_name using free().
+ * @remarks The @a folder_name should be released using free().
  *
- * @param[in]  folder      The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[out] folder_name The name of the media folder
  *
  * @return @c 0 on success,
@@ -284,8 +283,8 @@ int media_folder_get_name(media_folder_h folder, char **folder_name);
  * @brief Gets the modified date of the folder.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  folder The handle to the media folder
- * @param[out] date   The modified date of the folder
+ * @param[in] folder The handle to the media folder
+ * @param[out] date The modified date of the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -299,7 +298,7 @@ int media_folder_get_modified_time(media_folder_h folder, time_t *date) TIZEN_DE
  * @brief Gets the folder storage type.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  folder       The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[out] storage_type The storage type of the media folder
  *
  * @return @c 0 on success,
@@ -314,9 +313,9 @@ int media_folder_get_storage_type(media_folder_h folder, media_content_storage_e
  * @brief Gets the storage id of the folder.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_id using free().
+ * @remarks The @a storage_id should be released using free().
  *
- * @param[in]  folder      The handle to the media folder
+ * @param[in] folder The handle to the media folder
  * @param[out] storage_id The storage id of the media folder
  *
  * @return @c 0 on success,
@@ -336,7 +335,7 @@ int media_folder_get_storage_id(media_folder_h folder, char **storage_id);
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
  * @param[in] folder The handle to the media folder
- * @param[out] order   The viewing order of the media folder
+ * @param[out] order The viewing order of the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -355,10 +354,10 @@ int media_folder_get_order(media_folder_h folder, int *order) TIZEN_DEPRECATED_A
  *          Media folder will be created, which is filled with folder information.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a folder using media_folder_destroy().
+ * @remarks The @a folder should be released using media_folder_destroy().
  *
- * @param[in]  folder_id The ID of the media folder
- * @param[out] folder    The media folder handle associated with the folder ID
+ * @param[in] folder_id The ID of the media folder
+ * @param[out] folder The handle to the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -384,7 +383,7 @@ int media_folder_get_folder_from_db(const char *folder_id, media_folder_h *folde
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @param[in] folder The handle to the media folder
- * @param[in] name   The name of the media folder
+ * @param[in] name The name of the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -409,7 +408,7 @@ int media_folder_set_name(media_folder_h folder, const char *name) TIZEN_DEPRECA
  *                    If you don't use the filter, the set order value does not effect the folder viewing order.
  *
  * @param[in] folder The handle to the media folder
- * @param[in] order   The viewing order of the media folder
+ * @param[in] order The viewing order of the media folder
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -460,4 +459,4 @@ int media_folder_update_to_db(media_folder_h folder) TIZEN_DEPRECATED_API;
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_FOLDER_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_FOLDER_H__ */
index 7570129..0e82105 100755 (executable)
@@ -14,8 +14,8 @@
 * limitations under the License.
 */
 
-#ifndef __TIZEN_MEDIA_GROUP_H__
-#define __TIZEN_MEDIA_GROUP_H__
+#ifndef __TIZEN_CONTENT_MEDIA_GROUP_H__
+#define __TIZEN_CONTENT_MEDIA_GROUP_H__
 
 
 #include <media_content_type.h>
@@ -43,7 +43,7 @@ extern "C" {
  * @brief Gets the number of the album for the passed @a filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter      The media filter handle
+ * @param[in] filter The handle to the media filter
  * @param[out] album_count The count of the media album
  *
  * @return @c 0 on success,
@@ -69,8 +69,8 @@ int media_album_get_album_count_from_db(filter_h filter, int *album_count);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter    The media filter handle
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -96,9 +96,9 @@ int media_album_foreach_album_from_db(filter_h filter, media_album_cb callback,
  * @brief Gets the number of media info for the given album present in the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  album_id    The ID of the media album
- * @param[in]  filter      The media filter handle
- * @param[out] media_count The count of the album
+ * @param[in] album_id The ID of the media album
+ * @param[in] filter The handle to the media filter
+ * @param[out] media_count The count of the media album
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -108,7 +108,6 @@ int media_album_foreach_album_from_db(filter_h filter, media_album_cb callback,
  * @retval #MEDIA_CONTENT_ERROR_DB_FAILED         DB Operation failed
  * @retval #MEDIA_CONTENT_ERROR_DB_BUSY           DB Operation busy
  * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
-
  *
  * @pre This function requires opened connection to content service by media_content_connect().
  *
@@ -124,9 +123,9 @@ int media_album_get_media_count_from_db(int album_id, filter_h filter, int *medi
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] album_id  The ID of the media album
- * @param[in] filter    The media filter handle
- * @param[in] callback  The callback function to be invoked
+ * @param[in] album_id The ID of the media album
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -156,7 +155,7 @@ int media_album_foreach_media_from_db(int album_id, filter_h filter, media_info_
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] album The media album handle
+ * @param[in] album The handle to the media album
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -179,10 +178,10 @@ int media_album_destroy(media_album_h album);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the destination handle using media_album_destroy().
+ * @remarks The @a dst should be released using media_album_destroy().
  *
- * @param[in]  src  The source handle to the media album
- * @param[out] dst  The destination handle to the media album
+ * @param[out] dst The destination handle to the media album
+ * @param[in] src The source handle to the media album
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -200,8 +199,8 @@ int media_album_clone(media_album_h *dst, media_album_h src);
  * @brief Gets the ID of the album.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  album    The media album handle
- * @param[out] album_id The media album ID
+ * @param[in] album The handle to the media album
+ * @param[out] album_id The ID of the media album
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -217,10 +216,10 @@ int media_album_get_album_id(media_album_h album, int *album_id);
  * @brief Gets the name of the album.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album_name using free().
+ * @remarks The @a album_name should be released using free().
  *
- * @param[in]  album       The media album handle
- * @param[out] album_name  The name of the media album handle
+ * @param[in] album The handle to the media album
+ * @param[out] album_name The name of the media album handle
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -235,9 +234,9 @@ int media_album_get_name(media_album_h album, char **album_name);
  * @brief Gets the name of the artist from the given album.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a artist using free().
+ * @remarks The @a artist should be released using free().
  *
- * @param[in]  album  The media album handle
+ * @param[in] album The handle to the media album
  * @param[out] artist The name of the media artist
  *
  * @return @c 0 on success,
@@ -253,9 +252,9 @@ int media_album_get_artist(media_album_h album, char **artist);
  * @brief Gets the album art path from the album.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album_art using free().
+ * @remarks The @a album_art should be released using free().
  *
- * @param[in]  album     The media album handle
+ * @param[in] album The handle to the media album
  * @param[out] album_art The path of the media album_art
  *
  * @return @c 0 on success,
@@ -275,10 +274,10 @@ int media_album_get_album_art(media_album_h album, char **album_art);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a folder using media_album_destroy().
+ * @remarks The @a album should be released using media_album_destroy().
  *
- * @param[in]  album_id The ID of the media album
- * @param[out] album    The album handle associated with the album ID
+ * @param[in] album_id The ID of the media album
+ * @param[out] album The handle to the media album
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -312,9 +311,9 @@ int media_album_get_album_from_db(int album_id, media_album_h *album);
  * @brief Gets the number of the group for the passed @a filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter       The media filter handle
- * @param[in]  group        The type of the media group
- * @param[out] group_count  The count of the media group
+ * @param[in] filter The handle to the media filter
+ * @param[in] group The type of the media group
+ * @param[out] group_count The count of the media group
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -339,9 +338,9 @@ int media_group_get_group_count_from_db(filter_h filter, media_group_e group, in
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter    The media filter handle
- * @param[in] group     The type of the media group
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] group The type of the media group
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -367,9 +366,9 @@ int media_group_foreach_group_from_db(filter_h filter, media_group_e group, medi
  * @brief Gets the count of the media info for the given media group present in the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  group_name  The name of the media group
- * @param[in]  group       The type of the media group
- * @param[in]  filter      The media filter handle
+ * @param[in] group_name The name of the media group
+ * @param[in] group The type of the media group
+ * @param[in] filter The handle to the media filter
  * @param[out] media_count The count of the media
  *
  * @return @c 0 on success,
@@ -397,10 +396,10 @@ int media_group_get_media_count_from_db(const char *group_name, media_group_e gr
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @param[in] group_name The name of the media group
- * @param[in] group      The type of the media group
- * @param[in] filter     The media filter handle
- * @param[in] callback   The callback function to be invoked
- * @param[in] user_data  The user data to be passed to the callback function
+ * @param[in] group The type of the media group
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -429,4 +428,4 @@ int media_group_foreach_media_from_db(const char *group_name, media_group_e grou
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_GROUP_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_GROUP_H__ */
index 0ec7bbd..8e8ff9a 100755 (executable)
@@ -16,8 +16,8 @@
 
 
 
-#ifndef __TIZEN_IMAGE_META_H__
-#define __TIZEN_IMAGE_META_H__
+#ifndef __TIZEN_CONTENT_MEDIA_IMAGE_H__
+#define __TIZEN_CONTENT_MEDIA_IMAGE_H__
 
 #include <media_content_type.h>
 
@@ -43,10 +43,10 @@ extern "C" {
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks The destination handle must be released with image_meta_destroy().
+ * @remarks The @a dst should be released using image_meta_destroy().
  *
- * @param[out] dst  The destination handle to the image metadata
- * @param[in]  src  The source handle to the image metadata
+ * @param[out] dst The destination handle to the image metadata
+ * @param[in] src The source handle to the image metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -67,7 +67,7 @@ int image_meta_clone(image_meta_h *dst, image_meta_h src);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] image The image metadata handle
+ * @param[in] image The handle to the image metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -85,8 +85,10 @@ int image_meta_destroy(image_meta_h image);
  * @brief Gets the ID of an image.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image    The image metadata handle
- * @param[out] media_id The ID of an image
+ * @remarks The @a media_id should be released using free().
+ *
+ * @param[in] image The handle to the image metadata
+ * @param[out] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -101,7 +103,7 @@ int image_meta_get_media_id(image_meta_h image, char **media_id);
  * @brief Gets the image width in pixels.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image The image metadata handle
+ * @param[in] image The handle to the image metadata
  * @param[out] width The image width in pixels
  *
  * @return @c 0 on success,
@@ -116,7 +118,7 @@ int image_meta_get_width(image_meta_h image, int *width);
  * @brief Gets the image height in pixels.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image  The image metadata handle
+ * @param[in] image The handle to the image metadata
  * @param[out] height The image height in pixels
  *
  * @return @c 0 on success,
@@ -131,7 +133,7 @@ int image_meta_get_height(image_meta_h image, int *height);
  * @brief Gets the image orientation.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image       The image metadata handle
+ * @param[in] image The handle to the image metadata
  * @param[out] orientation The image orientation
  *
  * @return @c 0 on success,
@@ -146,7 +148,9 @@ int image_meta_get_orientation(image_meta_h image, media_content_orientation_e *
  * @brief Gets the image creation time.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image      The image metadata handle
+ * @remarks The @a date_taken should be released using free().
+ *
+ * @param[in] image The handle to the image metadata
  * @param[out] date_taken The time, when image was taken (in seconds, since the Epoch)
  *
  * @return @c 0 on success,
@@ -163,10 +167,10 @@ int image_meta_get_date_taken(image_meta_h image, char **date_taken);
  * @brief Gets the burst shot ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a burst_id using free().
+ * @remarks The @a burst_id should be released using free().
  *
- * @param[in]  image    The image metadata handle
- * @param[out] burst_id The ID of burst shot\ n
+ * @param[in] image The handle to the image metadata
+ * @param[out] burst_id The ID of the burst shot\ n
  *                      If @a burst_id is @c NULL, this is not burst shot
  *
  * @return @c 0 on success,
@@ -179,13 +183,13 @@ int image_meta_get_date_taken(image_meta_h image, char **date_taken);
 int image_meta_get_burst_id(image_meta_h image, char **burst_id) TIZEN_DEPRECATED_API;
 
 /**
- * @brief Gets the exposure time from exif.
+ * @brief Gets the exposure time from EXIF.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks @a exposure time must be released with free() by you.
+ * @remarks The @a exposure_time should be released using free().
  *
- * @param[in]  image    The image metadata handle
- * @param[out] exposure_time The value of exposure_time, getting from exif
+ * @param[in] image The handle to the image metadata
+ * @param[out] exposure_time The value of exposure_time, getting from EXIF
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -198,11 +202,11 @@ int image_meta_get_burst_id(image_meta_h image, char **burst_id) TIZEN_DEPRECATE
 int image_meta_get_exposure_time(image_meta_h image, char **exposure_time);
 
 /**
- * @brief Gets the fnumber from exif.
+ * @brief Gets the fnumber from EXIF.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in]  image    The image metadata handle
- * @param[out] fnumber The value of fnumber, getting from exif
+ * @param[in] image The handle to the image metadata
+ * @param[out] fnumber The value of fnumber, getting from EXIF
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -214,11 +218,11 @@ int image_meta_get_exposure_time(image_meta_h image, char **exposure_time);
 int image_meta_get_fnumber(image_meta_h image, double *fnumber);
 
 /**
- * @brief Gets the iso from exif.
+ * @brief Gets the iso from EXIF.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in]  image    The image metadata handle
- * @param[out] iso The value of iso, getting from exif
+ * @param[in] image The handle to the image metadata
+ * @param[out] iso The value of iso, getting from EXIF
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -230,13 +234,13 @@ int image_meta_get_fnumber(image_meta_h image, double *fnumber);
 int image_meta_get_iso(image_meta_h image, int *iso);
 
 /**
- * @brief Gets the model from exif.
+ * @brief Gets the model from EXIF.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks @a model must be released with free() by you.
+ * @remarks The @a model should be released using free().
  *
- * @param[in]  image    The image metadata handle
- * @param[out] model The value of model, getting from exif
+ * @param[in] image The handle to the image metadata
+ * @param[out] model The value of model, getting from EXIF
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -253,7 +257,7 @@ int image_meta_get_model(image_meta_h image, char **model);
  * @brief Checks whether the media is a burst shot image.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  image         The image metadata handle
+ * @param[in] image The handle to the image metadata
  * @param[out] is_burst_shot @c true if the media is a burst shot image,
  *                           otherwise @c false if the media is not a burst shot image
  *
@@ -270,7 +274,7 @@ int image_meta_is_burst_shot(image_meta_h image, bool *is_burst_shot) TIZEN_DEPR
  * @brief Sets an orientation of the image.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] image       The image metadata handle
+ * @param[in] image The handle to the image metadata
  * @param[in] orientation The image orientation
  *
  * @return @c 0 on success,
@@ -295,7 +299,7 @@ int image_meta_set_orientation(image_meta_h image, media_content_orientation_e o
  *
  * @remarks Do not call this function in callback function of foreach function like media_info_foreach_media_from_db().
  *
- * @param[in] image The handle to the image
+ * @param[in] image The handle to the image metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -324,4 +328,4 @@ int image_meta_update_to_db(image_meta_h image) TIZEN_DEPRECATED_API;
 }
 #endif /* __cplusplus */
 
-#endif /*__TIZEN_IMAGE_META_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_IMAGE_H__*/
index 1a7604f..fb583a1 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_INFORMATION_H__
-#define __TIZEN_MEDIA_INFORMATION_H__
+#ifndef __TIZEN_CONTENT_MEDIA_INFO_H__
+#define __TIZEN_CONTENT_MEDIA_INFO_H__
 
 #include <media_content_type.h>
 
@@ -28,7 +28,7 @@ extern "C" {
 
 /**
  * @file media_info.h
- * @brief This file contains the media info API and related functions to proceed with it. \n
+ * @brief This file contains the media info function and related functions to proceed with it. \n
  *        You can use the functions to insert, delete, count and get list of content files from media database. \n
  *        You can get properties of content file such as size, mime_type, modified_time etc. And you can set properties such as provider, favorite etc. \n
  *        And you can get bookmark, face, tag info related the content file.
@@ -42,8 +42,8 @@ extern "C" {
 
 /**
  * @brief  Inserts the content file into the media database.
- * @details In general, you can use this API to insert content files into the media database. \n
- *                You can use media_content_scan_file()/media_content_scan_folder() API instead of this API.
+ * @details In general, you can use this function to insert content files into the media database. \n
+ *                You can use media_content_scan_file()/media_content_scan_folder() function instead of this function.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -52,16 +52,16 @@ extern "C" {
  *                   %http://tizen.org/privilege/mediastorage \n
  *                   %http://tizen.org/privilege/externalstorage
  *
- * @remarks You must release the handle using media_info_destroy(). \n
+ * @remarks The @a info should be released using media_info_destroy(). \n
  *                   You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using  this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  * @remarks Since 4.0, this function is related to the following feature:\n
  *              %http://tizen.org/feature/content.scanning.others\n
  *              If this feature is not suppported on the device, MEDIA_CONTENT_TYPE_OTHERS type file is not scanned.
  *
- * @param[in]  path The path of the content file to add
+ * @param[in] path The path of the content file to add
  * @param[out] info The handle of the inserted content file
  *
  * @return @c 0 on success,
@@ -97,17 +97,17 @@ int media_info_insert_to_db(const char *path, media_info_h *info);
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using  this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  * @remarks Since 4.0, this function is related to the following feature:\n
  *              %http://tizen.org/feature/content.scanning.others\n
  *              If this feature is not suppported on the device, MEDIA_CONTENT_TYPE_OTHERS type file is not scanned.
  *
- * @param[in] path_array   The path array of the content files to add
+ * @param[in] path_array The path array of the content files to add
  * @param[in] array_length The length of the array
- * @param[in] callback     The callback to be invoked when media items inserted completely
- * @param[in] user_data    The user data to be passed to the callback function
+ * @param[in] callback The callback function to be invoked when media items inserted completely
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -143,14 +143,14 @@ int media_info_insert_batch_to_db(const char **path_array, unsigned int array_le
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage with this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage with this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage with this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage with this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  *
- * @param[in] path_array   The path array of the burst shot images to add
+ * @param[in] path_array The path array of the burst shot images to add
  * @param[in] array_length The length of the array
- * @param[in] callback     The callback to be invoked when the images are inserted completely
- * @param[in] user_data    The user data to be passed to the callback function
+ * @param[in] callback The callback function to be invoked when the images are inserted completely
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -174,14 +174,14 @@ int media_info_insert_burst_shot_to_db(const char **path_array, unsigned int arr
 /**
  * @brief Deletes the media information from the media database.
  * @details This function only remove media information in the media database. \n
- *               You can use media_content_scan_file()/media_content_scan_folder() API instead of this API if file is removed from the file system.
+ *               You can use media_content_scan_file()/media_content_scan_folder() function instead of this function if file is removed from the file system.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] media_id  The media ID. It can get from media info handle.
+ * @param[in] media_id The media ID. It can get from media info handle.
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -212,7 +212,7 @@ int media_info_delete_from_db(const char *media_id);
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] filter  The filter handle
+ * @param[in] filter The handle to the media filter
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -241,7 +241,7 @@ int media_info_delete_batch_from_db(filter_h filter) TIZEN_DEPRECATED_API;
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media  The media info handle
+ * @param[in] media The handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -265,10 +265,10 @@ int media_info_destroy(media_info_h media);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the destination handle using media_info_destroy().
+ * @remarks The @a dst should be released using media_info_destroy().
  *
- * @param[out] dst  The destination handle to the media info
- * @param[in]  src  The source handle to media info
+ * @param[out] dst The destination handle to the media info
+ * @param[in] src The source handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -295,7 +295,7 @@ int media_info_clone(media_info_h *dst, media_info_h src);
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  *
- * @param[in]  filter      The handle to filter
+ * @param[in] filter The handle to the media filter
  * @param[out] media_count The count of media
  *
  * @return @c 0 on success,
@@ -327,8 +327,8 @@ int media_info_get_media_count_from_db(filter_h filter, int *media_count);
  *                   So, your callback function is in read state in SQLite. When you are in read state, sometimes you do not update DB.
  *                   We do not recommend you call updating DB function in callback of foreach function.
  *
- * @param[in] filter    The media info handle filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -356,8 +356,8 @@ int media_info_foreach_media_from_db(filter_h filter, media_info_cb callback, vo
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media_id  The ID of the media info
- * @param[in]  filter    The handle to the media filter
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
  * @param[out] tag_count The count of the media tag
  *
  * @return @c 0 on success,
@@ -383,9 +383,9 @@ int media_info_get_tag_count_from_db(const char *media_id, filter_h filter, int
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media_id  The ID of the media info
- * @param[in] filter    The handle to the media filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -413,9 +413,9 @@ int media_info_foreach_tag_from_db(const char *media_id, filter_h filter, media_
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media_id        The ID of the media info
- * @param[in]  filter          The handle to the media filter
- * @param[out] bookmark_count  The count of the media tag
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
+ * @param[out] bookmark_count The count of the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -440,9 +440,9 @@ int media_info_get_bookmark_count_from_db(const char *media_id, filter_h filter,
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media_id  The ID of the media info
- * @param[in] filter    The handle to the media filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -470,8 +470,8 @@ int media_info_foreach_bookmark_from_db(const char *media_id, filter_h filter, m
  *
  * @since_tizen 3.0
  *
- * @param[in] media_id media id
- * @param[in]  filter          The handle to the media filter
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
  * @param[out] face_count The count of media face
  *
  * @return 0 on success, otherwise a negative error value.
@@ -489,17 +489,17 @@ int media_info_foreach_bookmark_from_db(const char *media_id, filter_h filter, m
 int media_info_get_face_count_from_db(const char *media_id, filter_h filter, int *face_count);
 
 /**
- * @brief Iterates through the media files with optional @a media_id in the given @a face @a face from the media database.
+ * @brief Iterates through the media files with optional @a filter in the given @a media_id from the media database.
  * @details This function gets all media face info associated with the given media id and
  * meeting desired filter option and calls @a callback for
  * every retrieved media face info. If NULL is passed to the @a filter, no filtering is applied.
  *
  * @since_tizen 3.0
  *
- * @param [in] media_id media id
- * @param[in]  filter          The handle to the media filter
- * @param [in] callback The callback function to invoke
- * @param [in] user_data The user data to be passed to the callback function
+ * @param[in] media_id The media ID
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to invoke
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return 0 on success, otherwise a negative error value.
  *
@@ -516,15 +516,15 @@ int media_info_get_face_count_from_db(const char *media_id, filter_h filter, int
 int media_info_foreach_face_from_db(const char *media_id, filter_h filter, media_face_cb callback, void *user_data);
 
 /**
- * @brief Gets the image metadata handle for a given media info
+ * @brief Gets the image metadata handle for a given media info.
  * @details This function returns an image metadata handle retrieved from the media info.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the @a image handle using image_meta_destroy().
+ * @remarks The @a image should be released using image_meta_destroy().
  *
- * @param[in]  media  The media info handle
- * @param[out] image  A handle to image metadata
+ * @param[in] media The handle to the media info
+ * @param[out] image The handle to the image metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -543,10 +543,10 @@ int media_info_get_image(media_info_h media, image_meta_h *image);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the @a video handle using video_meta_destroy().
+ * @remarks The @a video should be released using video_meta_destroy().
  *
- * @param[in]  media The media info handle
- * @param[out] video A handle to the video meta
+ * @param[in] media The handle to the media info
+ * @param[out] video The handle to the video metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -565,10 +565,10 @@ int media_info_get_video(media_info_h media, video_meta_h *video);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the @a audio handle using audio_meta_destroy().
+ * @remarks The @a audio should be released using audio_meta_destroy().
  *
- * @param[in]  media The media info handle
- * @param[out] audio A handle to the audio meta
+ * @param[in] media The handle to the media info
+ * @param[out] audio The handle to the audio metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -582,11 +582,12 @@ int media_info_get_video(media_info_h media, video_meta_h *video);
 int media_info_get_audio(media_info_h media, audio_meta_h *audio);
 
 /**
- * @brief Gets the media ID
+ * @brief Gets the media ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @remarks The @a media_id should be released using free().
  *
- * @param[in]  media The media info handle
- * @param[out] media_id     The media ID
+ * @param[in] media The handle to the media info
+ * @param[out] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -601,10 +602,10 @@ int media_info_get_media_id(media_info_h media, char **media_id);
  * @brief Gets the full path of the content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a path using free().
+ * @remarks The @a path should be released using free().
  *
- * @param[in]  media The media info handle
- * @param[out] path  The full path of the content file
+ * @param[in] media The handle to the media info
+ * @param[out] path The full path of the content file
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -620,10 +621,10 @@ int media_info_get_file_path(media_info_h media, char **path);
  * @brief Gets the file name including the extension of the content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a name using free().
+ * @remarks The @a name should be released using free().
  *
- * @param[in]  media The media info handle
- * @param[out] name  The file name including the extension of the content file
+ * @param[in] media The handle to the media info
+ * @param[out] name The file name including the extension of the content file
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -638,8 +639,8 @@ int media_info_get_display_name(media_info_h media, char **name);
  * @brief Gets the content type of the content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media The media info handle
- * @param[out] type  The content type of the content file (#media_content_type_e)
+ * @param[in] media The handle to the media info
+ * @param[out] type The content type of the content file (#media_content_type_e)
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -655,9 +656,9 @@ int media_info_get_media_type(media_info_h media, media_content_type_e *type);
  * @brief Gets the MIME type of the content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a mime_type using free().
+ * @remarks The @a mime_type should be released using free().
  *
- * @param[in]  media     The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] mime_type The MIME type of the content file
  *
  * @return @c 0 on success,
@@ -673,8 +674,8 @@ int media_info_get_mime_type(media_info_h media, char **mime_type);
  * @brief Gets the content file size.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media The media info handle
- * @param[out] size  The content file size
+ * @param[in] media The handle to the media info
+ * @param[out] size The content file size
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -689,7 +690,7 @@ int media_info_get_size(media_info_h media, unsigned long long *size);
  * @details The added time refers to the time that content file was first added to media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media      The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] added_time The added time to the media database
  *
  * @return @c 0 on success,
@@ -705,8 +706,8 @@ int media_info_get_added_time(media_info_h media, time_t *added_time);
  * @details The modified time refers to the last modification time provided by the file system.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media The media info handle
- * @param[out] time  The last modification time of the content file
+ * @param[in] media The handle to the media info
+ * @param[out] time The last modification time of the content file
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -722,8 +723,8 @@ int media_info_get_modified_time(media_info_h media, time_t *time);
  *               Otherwise, timeline value is the same as modified time.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media The media info handle
- * @param[out] time  The timeline of content file
+ * @param[in] media The handle to the media info
+ * @param[out] time The timeline of content file
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -737,12 +738,12 @@ int media_info_get_timeline(media_info_h media, time_t *time);
  * @brief Gets the thumbnail path of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a path using free(). \n
- *                   If the thumbnail extraction for the given media has not been requested yet, this API returns NULL. To create a thumbnail, you should use media_info_create_thumbnail() API. \n
+ * @remarks The @a path should be released using free(). \n
+ *                   If the thumbnail extraction for the given media has not been requested yet, this function returns NULL. To create a thumbnail, you should use media_info_create_thumbnail() function. \n
  *                   Since 3.0, this function returns an empty string if media_info_create_thumbnail() has failed to create a thumbnail for the given media.
  *
- * @param[in]  media The media info handle
- * @param[out] path  The thumbnail path
+ * @param[in] media The handle to the media info
+ * @param[out] path The thumbnail path
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -759,9 +760,9 @@ int media_info_get_thumbnail_path(media_info_h media, char **path);
  *                Since 3.0, if the media info has no description, the method returns empty string.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a description using free().
+ * @remarks The @a description should be released using free().
  *
- * @param[in]  media       The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] description The description of the content file
  *
  * @return @c 0 on success,
@@ -777,7 +778,7 @@ int media_info_get_description(media_info_h media, char **description);
  * @brief Gets the longitude of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media     The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] longitude The longitude of the content file
  *
  * @return @c 0 on success,
@@ -792,7 +793,7 @@ int media_info_get_longitude(media_info_h media, double *longitude);
  * @brief Gets the latitude of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] latitude The latitude of the content file
  *
  * @return @c 0 on success,
@@ -808,7 +809,7 @@ int media_info_get_latitude(media_info_h media, double* latitude);
  * @brief Gets the altitude of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] altitude The altitude of the content file
  *
  * @return @c 0 on success,
@@ -823,8 +824,9 @@ int media_info_get_altitude(media_info_h media, double* altitude);
  * @deprecated Deprecated since 4.0.
  * @brief Gets the weather of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @remarks The @a weather should be released using free().
  *
- * @param[in]  media   The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] weather The weather of the content file
  *
  * @return @c 0 on success,
@@ -840,7 +842,7 @@ int media_info_get_weather(media_info_h media, char **weather) TIZEN_DEPRECATED_
  * @brief Gets the rating of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] rating The rating of the content file
  *
  * @return @c 0 on success,
@@ -855,8 +857,8 @@ int media_info_get_rating(media_info_h media, int *rating);
  * @brief Gets the favorite status of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media     The media info handle
- * @param[out] favorite  @c true if content file is set as favorite,
+ * @param[in] media The handle to the media info
+ * @param[out] favorite @c true if content file is set as favorite,
  *                       otherwise @c false if content file is not set as favorite
  *
  * @return @c 0 on success,
@@ -874,9 +876,9 @@ int media_info_get_favorite(media_info_h media, bool* favorite);
  * @brief Gets the author of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a author using free().
+ * @remarks The @a author should be released using free().
  *
- * @param[in]  media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] author The author of the content file
  *
  * @return @c 0 on success,
@@ -893,9 +895,9 @@ int media_info_get_author(media_info_h media, char **author) TIZEN_DEPRECATED_AP
  * @brief Gets the provider of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a provider using free().
+ * @remarks The @a provider should be released using free().
  *
- * @param[in]  media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] provider The provider of the content file
  *
  * @return @c 0 on success,
@@ -905,7 +907,6 @@ int media_info_get_author(media_info_h media, char **author) TIZEN_DEPRECATED_AP
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_provider()
  */
 int media_info_get_provider(media_info_h media, char **provider) TIZEN_DEPRECATED_API;
 
@@ -914,9 +915,9 @@ int media_info_get_provider(media_info_h media, char **provider) TIZEN_DEPRECATE
  * @brief Gets the content name of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a content_name using free().
+ * @remarks The @a content_name should be released using free().
  *
- * @param[in]  media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] content_name The content name of the content file
  *
  * @return @c 0 on success,
@@ -926,7 +927,6 @@ int media_info_get_provider(media_info_h media, char **provider) TIZEN_DEPRECATE
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_content_name()
  */
 int media_info_get_content_name(media_info_h media, char **content_name) TIZEN_DEPRECATED_API;
 
@@ -936,10 +936,10 @@ int media_info_get_content_name(media_info_h media, char **content_name) TIZEN_D
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a title using free().
+ * @remarks The @a title should be released using free().
  *
- * @param[in]  media  The media info handle
- * @param[out] title  The title of the content file
+ * @param[in] media The handle to the media info
+ * @param[out] title The title of the content file
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -955,9 +955,9 @@ int media_info_get_title(media_info_h media, char **title);
  * @brief Gets the category of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a category using free().
+ * @remarks The @a category should be released using free().
  *
- * @param[in]  media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] category The category of the content file
  *
  * @return @c 0 on success,
@@ -967,7 +967,6 @@ int media_info_get_title(media_info_h media, char **title);
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_category()
  */
 int media_info_get_category(media_info_h media, char **category) TIZEN_DEPRECATED_API;
 
@@ -976,9 +975,9 @@ int media_info_get_category(media_info_h media, char **category) TIZEN_DEPRECATE
  * @brief Gets the location tag of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a location_tag using free().
+ * @remarks The @a location_tag should be released using free().
  *
- * @param[in]  media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] location_tag The location of the content file
  *
  * @return @c 0 on success,
@@ -988,7 +987,6 @@ int media_info_get_category(media_info_h media, char **category) TIZEN_DEPRECATE
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_location_tag()
  */
 int media_info_get_location_tag(media_info_h media, char **location_tag) TIZEN_DEPRECATED_API;
 
@@ -997,9 +995,9 @@ int media_info_get_location_tag(media_info_h media, char **location_tag) TIZEN_D
  * @brief Gets the age_rating of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a age_rating using free().
+ * @remarks The @a age_rating should be released using free().
  *
- * @param[in]  media      The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] age_rating The age rating of the content file
  *
  * @return @c 0 on success,
@@ -1009,7 +1007,6 @@ int media_info_get_location_tag(media_info_h media, char **location_tag) TIZEN_D
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_age_rating()
  */
 int media_info_get_age_rating(media_info_h media, char **age_rating) TIZEN_DEPRECATED_API;
 
@@ -1018,9 +1015,9 @@ int media_info_get_age_rating(media_info_h media, char **age_rating) TIZEN_DEPRE
  * @brief Gets the keyword of content file which User set.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a keyword using free().
+ * @remarks The @a keyword should be released using free().
  *
- * @param[in]  media   The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] keyword The keyword of the content file
  *
  * @return @c 0 on success,
@@ -1030,7 +1027,6 @@ int media_info_get_age_rating(media_info_h media, char **age_rating) TIZEN_DEPRE
  * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY     Out of memory
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  *
- * @see media_info_set_keyword()
  */
 int media_info_get_keyword(media_info_h media, char **keyword) TIZEN_DEPRECATED_API;
 
@@ -1038,10 +1034,10 @@ int media_info_get_keyword(media_info_h media, char **keyword) TIZEN_DEPRECATED_
  * @brief Gets the storage id of content file.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_id using free().
+ * @remarks The @a storage_id should be released using free().
  *
- * @param[in]  media   The media info handle
- * @param[out] storage_id The storage id of the content file
+ * @param[in] media The handle to the media info
+ * @param[out] storage_id The ID of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1056,7 +1052,7 @@ int media_info_get_storage_id(media_info_h media, char **storage_id);
  * @brief Checks whether the media is protected via DRM.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] is_drm @c true if media is DRM media,
  *                    otherwise @c false if media is not DRM media
  *
@@ -1072,7 +1068,7 @@ int media_info_is_drm(media_info_h media, bool *is_drm);
  * @brief Checks whether the content file is 360 content.
  * @since_tizen 3.0
  *
- * @param[in]  media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] is_360 @c true if media is 360 content,
  *                    otherwise @c false if media is not 360 content
  *
@@ -1088,7 +1084,7 @@ int media_info_is_360_content(media_info_h media, bool *is_360);
  * @brief Gets the storage type of content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[out] storage_type The storage type of the content file
  *
  * @return @c 0 on success,
@@ -1105,8 +1101,8 @@ int media_info_get_storage_type(media_info_h media, media_content_storage_e *sto
  * @brief Gets number which represents how many times given content has been played.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param [in] media The handle to media info
- * @param [out] played_count The counter of content played
+ * @param[in] media The handle to the media info
+ * @param[out] played_count The counter of content played
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -1124,8 +1120,8 @@ int media_info_get_played_count(media_info_h media, int *played_count) TIZEN_DEP
  *          starting from the beginning of the track.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param [in] media The handle to media info
- * @param [out] played_time The elapsed time of the content
+ * @param[in] media The handle to the media info
+ * @param[out] played_time The elapsed time of the content
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -1143,10 +1139,10 @@ int media_info_get_played_time(media_info_h media, time_t *played_time) TIZEN_DE
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a media using media_tag_destroy().
+ * @remarks The @a media should be released using media_info_destroy().
  *
- * @param[in]  media_id The ID of media info
- * @param[out] media    The media handle associated with the media ID
+ * @param[in] media_id The media ID
+ * @param[out] media The handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1172,7 +1168,7 @@ int media_info_get_media_from_db(const char *media_id, media_info_h *media);
  * @details You can increase the played(opened) count of the content file.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param [in] media The handle to media info
+ * @param[in] media The handle to the media info
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -1191,7 +1187,7 @@ int media_info_increase_played_count(media_info_h media) TIZEN_DEPRECATED_API;
  * @details You can set the latest played(opened) time of the content file. the latest played time to be set the current time on the system.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param [in] media The handle to media info
+ * @param[in] media The handle to the media info
  *
  * @return 0 on success,
  *         otherwise a negative error value
@@ -1208,7 +1204,7 @@ int media_info_set_played_time(media_info_h media) TIZEN_DEPRECATED_API;
  * @brief Sets the file name including the extension of the content file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] display_name The file name including the extension of the content file.
  *
  * @return @c 0 on success,
@@ -1228,7 +1224,7 @@ int media_info_set_display_name(media_info_h media, const char *display_name) TI
  * @brief Sets the description of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media       The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] description The description of the media info
  *
  * @return @c 0 on success,
@@ -1248,7 +1244,7 @@ int media_info_set_description(media_info_h media, const char *description) TIZE
  * @brief Sets the longitude of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media     The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] longitude The longitude of the media info
  *
  * @return @c 0 on success,
@@ -1266,7 +1262,7 @@ int media_info_set_longitude(media_info_h media, double longitude) TIZEN_DEPRECA
  * @brief Sets the latitude of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] latitude The latitude of the media info
  *
  * @return @c 0 on success,
@@ -1284,7 +1280,7 @@ int media_info_set_latitude(media_info_h media, double latitude) TIZEN_DEPRECATE
  * @brief Sets the altitude of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] altitude The altitude of the media info
  *
  * @return @c 0 on success,
@@ -1302,7 +1298,7 @@ int media_info_set_altitude(media_info_h media, double altitude) TIZEN_DEPRECATE
  * @brief Sets the weather of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media   The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] weather The weather of the media info
  *
  * @return @c 0 on success,
@@ -1322,7 +1318,7 @@ int media_info_set_weather(media_info_h media, const char *weather) TIZEN_DEPREC
  * @brief Sets the rating of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] rating The rating of the media info
  *
  * @return @c 0 on success,
@@ -1343,7 +1339,7 @@ int media_info_set_rating(media_info_h media, int rating) TIZEN_DEPRECATED_API;
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] favorite Set @c true to set the media info as favorite,
  *                     otherwise set @c false to not set the media info as favorite
  *
@@ -1360,7 +1356,7 @@ int media_info_set_favorite(media_info_h media, bool favorite);
  * @brief Sets the author of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media  The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] author The author of the media info
  *
  * @return @c 0 on success,
@@ -1377,7 +1373,7 @@ int media_info_set_author(media_info_h media, const char *author) TIZEN_DEPRECAT
  * @brief Sets the provider of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] provider The provider of the media info
  *
  * @return @c 0 on success,
@@ -1394,7 +1390,7 @@ int media_info_set_provider(media_info_h media, const char *provider) TIZEN_DEPR
  * @brief Sets the content name of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] content_name The content name of the media info
  *
  * @return @c 0 on success,
@@ -1413,7 +1409,7 @@ int media_info_set_content_name(media_info_h media, const char *content_name) TI
  * @brief Sets the category of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] category The category of the media info
  *
  * @return @c 0 on success,
@@ -1432,7 +1428,7 @@ int media_info_set_category(media_info_h media, const char *category) TIZEN_DEPR
  * @brief Sets the location tag of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media        The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] location_tag The location of the media info
  *
  * @return @c 0 on success,
@@ -1451,7 +1447,7 @@ int media_info_set_location_tag(media_info_h media, const char *location_tag) TI
  * @brief Sets the age rating of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media      The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] age_rating The age rating of the media info
  *
  * @return @c 0 on success,
@@ -1470,7 +1466,7 @@ int media_info_set_age_rating(media_info_h media, const char *age_rating) TIZEN_
  * @brief Sets the keyword of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media   The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] keyword The keyword of the media info
  *
  * @return @c 0 on success,
@@ -1498,7 +1494,7 @@ int media_info_set_keyword(media_info_h media, const char *keyword) TIZEN_DEPREC
  *          for setting the name of the media, the media_info_update_to_db() function should be called so as to update
  *          the given media info attributes in the media database.
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1516,10 +1512,6 @@ int media_info_set_keyword(media_info_h media, const char *keyword) TIZEN_DEPREC
  *
  * @see media_content_connect()
  * @see media_info_set_favorite()
- * @see media_info_set_provider()
- * @see media_info_set_category()
- * @see media_info_set_location_tag()
- * @see media_info_set_age_rating()
  */
 int media_info_update_to_db(media_info_h media);
 
@@ -1534,11 +1526,11 @@ int media_info_update_to_db(media_info_h media);
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using  this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you should add all privilege.
  *
- * @param[in] media_id The ID of the media info
+ * @param[in] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1563,7 +1555,7 @@ int media_info_refresh_metadata_to_db(const char *media_id) TIZEN_DEPRECATED_API
  * @brief Sets the added time of media info.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] media      The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] added_time The added time of the media info
  *
  * @return @c 0 on success,
@@ -1580,8 +1572,8 @@ int media_info_set_added_time(media_info_h media, time_t added_time) TIZEN_DEPRE
 /**
  * @brief Moves the media info to the given destination path in the media database.
  * @details After moving or renaming a file in the filesystem, call this function to update the database. \n
- *               If the source path and destination path are the same, then this API does nothing.
- *               If you want to refresh media information, you should use media_content_scan_file() API.
+ *               If the source path and destination path are the same, then this function does nothing.
+ *               If you want to refresh media information, you should use media_content_scan_file() function.
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
@@ -1591,12 +1583,12 @@ int media_info_set_added_time(media_info_h media, time_t added_time) TIZEN_DEPRE
  *                   %http://tizen.org/privilege/externalstorage
  *
  * @remarks You must add privilege http://tizen.org/privilege/content.write. And You add more privilege depending on your choice of contents path. \n
- *                   If you want to access only internal storage by using  this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage by using this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ *                   If you want to access only internal storage by using this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage by using this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you should add all privilege. \n
- *                   This API does not support USB storage.
+ *                   This function does not support USB storage.
  *
- * @param[in] media    The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] dst_path The path of destination
  *
  * @return @c 0 on success,
@@ -1636,8 +1628,8 @@ int media_info_move_to_db(media_info_h media, const char* dst_path);
  *          Since 3.0, if creation of a thumbnail is failed, empty string will be passed through media_thumbnail_completed_cb().
  *          Items in external storage except MMC not supported.
  *
- * @param[in] media     The media info handle
- * @param[in] callback  The callback function to be invoked
+ * @param[in] media The handle to the media info
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -1665,9 +1657,9 @@ int media_info_create_thumbnail(media_info_h media, media_thumbnail_completed_cb
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @remarks If you request cancel for the already thumbnail created media, this API return MEDIA_CONTENT_ERROR_INVALID_OPERATION
+ * @remarks If you request cancel for the already thumbnail created media, this function return MEDIA_CONTENT_ERROR_INVALID_OPERATION
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1700,8 +1692,8 @@ int media_info_cancel_thumbnail(media_info_h media);
  *          If face detection fails, the @a face_count argument in media_face_detection_completed_cb() will be set to 0.
  *          Media items in external storage are not supported, with the exception of MMC items.
  *
- * @param[in] media     The media info handle
- * @param[in] callback  The callback function to be invoked when detection is completed
+ * @param[in] media The handle to the media info
+ * @param[in] callback The callback function to be invoked when detection is completed
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -1728,16 +1720,16 @@ int media_info_start_face_detection(media_info_h media, media_face_detection_com
  * @ingroup CAPI_CONTENT_MEDIA_FACE_DETECTION_MODULE
  * @brief Cancels face detection of image for the given media.
  * @details This function cancels face detection for given media item. \n
- *          If you cancel face detection request before callback is invoked, the callback registered by media_info_start_face_detection() API will not be invoked.
+ *          If you cancel face detection request before callback is invoked, the callback registered by media_info_start_face_detection() function will not be invoked.
  *
  * @since_tizen 3.0
  *
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @remarks If face detection is already done when you request the cancellation, this API return MEDIA_CONTENT_ERROR_INVALID_OPERATION
+ * @remarks If face detection is already done when you request the cancellation, this function return MEDIA_CONTENT_ERROR_INVALID_OPERATION
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -1757,28 +1749,29 @@ int media_info_cancel_face_detection(media_info_h media);
 /**
  * @deprecated Deprecated since 4.0. Use media_info_insert_to_db() instead.
  * @brief Creates the media info handle.
- * @details If the information about the file that is already known, you can use this API to generate empty handler.
+ * @details If the information about the file that is already known, you can use this function to generate empty handler.
  * @since_tizen 3.0
  *
  *
  * @privilege %http://tizen.org/privilege/mediastorage \n
- *                     %http://tizen.org/privilege/externalstorage
+ *               %http://tizen.org/privilege/externalstorage
  *
- * @remarks If you want to access only internal storage with this API, you should add privilege http://tizen.org/privilege/mediastorage. \n
- *                   Or if you want to access only external storage with this API, you should add privilege http://tizen.org/privilege/externalstorage. \n
+ * @remarks The @a media should be released using media_info_destroy().
+ * @remarks If you want to access only internal storage with this function, you should add privilege http://tizen.org/privilege/mediastorage. \n
+ *                   Or if you want to access only external storage with this function, you should add privilege http://tizen.org/privilege/externalstorage. \n
  *                   If you can access both storage, you must add all privilege.
  *
  * @param[in] path The path to create the media info handle
- * @param[out] media The media info handle
+ * @param[out] media The handle to the media info
  *
  * @return @c 0 on success,
  *           otherwise a negative error value
  *
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_DB_FAILED               DB operation failed
+ * @retval #MEDIA_CONTENT_ERROR_DB_FAILED DB operation failed
  * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION      Invalid operation
+ * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION Invalid operation
  *
  * @see media_info_destroy()
  */
@@ -1789,19 +1782,19 @@ int media_info_create(const char *path, media_info_h *media) TIZEN_DEPRECATED_AP
  * @brief Inserts media info to database with media info data.
  * @since_tizen 3.0
  *
- * @remarks You must release @a info using media_info_destroy().
- *
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] media The media info handle to be inserted
+ * @remarks The @a media should be released using media_info_destroy().
+ *
+ * @param[in] media The handle to the media info
  *
  * @return @c 0 on success,
  *           otherwise a negative error value
  *
  * @retval #MEDIA_CONTENT_ERROR_NONE Successful
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_DB_FAILED               DB operation failed
+ * @retval #MEDIA_CONTENT_ERROR_DB_FAILED DB operation failed
  * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
  */
 int media_info_insert_to_db_with_data(media_info_h media) TIZEN_DEPRECATED_API;
@@ -1811,7 +1804,7 @@ int media_info_insert_to_db_with_data(media_info_h media) TIZEN_DEPRECATED_API;
  * @brief Sets the title of media info handle.
  * @since_tizen 3.0
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] title The title of media info handle
  *
  * @return @c 0 on success,
@@ -1828,8 +1821,8 @@ int media_info_set_title(media_info_h media, const char *title) TIZEN_DEPRECATED
  * @brief Sets the album of media info handle.
  * @since_tizen 3.0
  *
- * @param[in] media The media info handle
- * @param[in] album The album of media info handle
+ * @param[in] media The handle to the media info
+ * @param[in] album The album of the media
  *
  * @return @c 0 on success,
  *           otherwise a negative error value
@@ -1845,7 +1838,7 @@ int media_info_set_album(media_info_h media, const char *album) TIZEN_DEPRECATED
  * @brief Sets the artist of media info handle.
  * @since_tizen 3.0
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] artist The artist of media info handle
  *
  * @return @c 0 on success,
@@ -1862,7 +1855,7 @@ int media_info_set_artist(media_info_h media, const char *artist) TIZEN_DEPRECAT
  * @brief Sets the genre of media info handle.
  * @since_tizen 3.0
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] genre The genre of media info handle
  *
  * @return @c 0 on success,
@@ -1879,7 +1872,7 @@ int media_info_set_genre(media_info_h media, const char *genre) TIZEN_DEPRECATED
  * @brief Sets the recorded date of media info handle.
  * @since_tizen 3.0
  *
- * @param[in] media The media info handle
+ * @param[in] media The handle to the media info
  * @param[in] recorded_date The recorded date of media info handle
  *
  * @return @c 0 on success,
@@ -1899,4 +1892,4 @@ int media_info_set_recorded_date(media_info_h media, const char *recorded_date)
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_INFORMATION_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_INFO_H__ */
index 4751a64..e4b30f5 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_INFO_PRIVATE_H__
-#define __TIZEN_MEDIA_INFO_PRIVATE_H__
+#ifndef __TIZEN_CONTENT_MEDIA_INFO_PRIVATE_H__
+#define __TIZEN_CONTENT_MEDIA_INFO_PRIVATE_H__
 
 
 #include <unistd.h>
@@ -920,94 +920,11 @@ int _media_db_get_pvr_group_item(const char *group_name, filter_h filter, media_
 int _media_db_get_uhd(filter_h filter, media_uhd_cb callback, void *user_data);
 void _media_uhd_item_get_detail(sqlite3_stmt* stmt, media_uhd_h uhd);
 
-/**
- * @internal
- * @brief Creates a media filter attribute handle.
- * @details This function creates a media filter attribute handle. The handle can be
- * used to convert to attributes of database from attributes of user.
- * @remarks The @a handle must be released with media_filter_attribute_destory() by you.
- * @param[out] filter A handle to media filter attribute
- * @return 0 on success, otherwise a negative error value.
- * @retval #MEDIA_CONTENT_ERROR_NONE Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @see media_filter_attribute_destory()
- *
- */
 int _media_filter_attribute_create(attribute_h *attr);
-
-/**
- * @internal
- * @brief Add the attributes to the handle.
- * @details This function add the attribute to handle.
- * @param[in] filter The handle to media filter attribute
- * @param[in] user_attr The user attribute
- * @param[in] platform_attr The platform attribute
- * @return 0 on success, otherwise a negative error value.
- * @retval #MEDIA_CONTENT_ERROR_NONE Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @see media_filter_attribute_remove()
- *
- */
 int _media_filter_attribute_add(attribute_h atrr, const char *user_attr, const char *platform_attr);
-
-/**
- * @internal
- * @brief Destroys a media filter attribute handle.
- * @details The function frees all resources related to the media filter attribute handle. The filter attribute
- * handle no longer can be used to perform any operation. A new handle
- * has to be created before the next usage.
- *
- * @param[in] filter The handle to media filter attribute
- * @return 0 on success, otherwise a negative error value.
- * @retval #MEDIA_CONTENT_ERROR_NONE Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @see media_filter_create()
- *
- */
 int _media_filter_attribute_destory(attribute_h attr);
-
-/**
- * @internal
- * @brief Replace to platform attributes from user attributes.
- * @details This function replace to platform attributes from user attributes to generate the WHERE clause
- * @param[in] filter The handle to media filter attribute
- * @param[in] user_attr The user attribute
- * @param[in] platform_attr The platform attribute
- * @return 0 on success, otherwise a negative error value.
- * @retval #MEDIA_CONTENT_ERROR_NONE Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @see media_filter_attribute_create()
- * @see media_filter_attribute_destory()
- *
- */
 int _media_filter_attribute_generate(attribute_h attr, filter_h filter, char **generated_condition);
-
-/**
- * @internal
- * @brief Replace to platform attributes from user attributes.
- * @details This function replace to platform attributes from user attributes to generate the WHERE clause
- * @param[in] filter The handle to media filter attribute
- * @param[in] attr The attribute
- * @param[in] generated_option The handle to generated option
- * @return 0 on success, otherwise a negative error value.
- * @retval #MEDIA_CONTENT_ERROR_NONE Successful
- * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #MEDIA_CONTENT_ERROR_DB_FAILED Filed DB
- * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
- * @see media_filter_attribute_create()
- * @see media_filter_attribute_destory()
- *
- */
-
 int _media_filter_attribute_option_generate(attribute_h attr, filter_h filter, char **generated_option);
-
 int _media_filter_attribute_option_generate_with_full_query(attribute_h attr, filter_h filter, char **generated_option);
 
 GMutex* _content_get_db_mutex(void);
@@ -1080,4 +997,4 @@ GMutex* _content_get_db_mutex(void);
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
-#endif /*__TIZEN_MEDIA_INFO_PRIVATE_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_INFO_PRIVATE_H__*/
index 362af84..8a18a54 100755 (executable)
@@ -14,8 +14,8 @@
 * limitations under the License.
 */
 
-#ifndef __TIZEN_MEDIA_PLAYLIST_H__
-#define __TIZEN_MEDIA_PLAYLIST_H__
+#ifndef __TIZEN_CONTENT_MEDIA_PLAYLIST_H__
+#define __TIZEN_CONTENT_MEDIA_PLAYLIST_H__
 
 #include <media_content_type.h>
 
@@ -41,7 +41,7 @@ extern "C" {
  * @brief Gets the number of playlists for the passed @a filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter         The handle to the filter
+ * @param[in] filter The handle to the media filter
  * @param[out] playlist_count The count of the media playlist
  *
  * @return @c 0 on success,
@@ -67,8 +67,8 @@ int media_playlist_get_playlist_count_from_db(filter_h filter, int *playlist_cou
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter    The handle to the audio filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -94,9 +94,9 @@ int media_playlist_foreach_playlist_from_db(filter_h filter, media_playlist_cb c
  * @brief Gets the number of the media info for the given playlist present in the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  playlist_id  The ID of the media playlist
- * @param[in]  filter       The media filter handle
- * @param[out] media_count  The number of media items
+ * @param[in] playlist_id The ID of the media playlist
+ * @param[in] filter The handle to the media filter
+ * @param[out] media_count The number of media items
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -122,9 +122,9 @@ int media_playlist_get_media_count_from_db(int playlist_id, filter_h filter, int
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
  * @param[in] playlist_id The ID of the media playlist
- * @param[in] filter      The audio filter handle
- * @param[in] callback    The callback function to be invoked
- * @param[in] user_data   The user data to be passed to the callback function
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
+ * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -152,10 +152,10 @@ int media_playlist_foreach_media_from_db(int playlist_id, filter_h filter, playl
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @remarks You must release the created handle using media_playlist_destroy().
+ * @remarks The @a playlist should be released using media_playlist_destroy().
  *
- * @param[in]  name     The name of the inserted playlist
- * @param[out] playlist A created handle to media playlist
+ * @param[in] name The name of the inserted playlist
+ * @param[out] playlist The handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -211,10 +211,10 @@ int media_playlist_delete_from_db(int playlist_id);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a playlist using media_playlist_destroy().
+ * @remarksThe @a playlist should be released using media_playlist_destroy().
  *
- * @param[in]  playlist_id The ID of the media playlist
- * @param[out] playlist    The media playlist handle associated with the playlist ID
+ * @param[in] playlist_id The ID of the media playlist
+ * @param[out] playlist The handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -241,7 +241,7 @@ int media_playlist_get_playlist_from_db(int playlist_id, media_playlist_h *playl
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -264,10 +264,10 @@ int media_playlist_destroy(media_playlist_h playlist);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks The destination handle must be released using media_playlist_destroy().
+ * @remarks The @ a dst should be released using media_playlist_destroy().
  *
- * @param[in]  src  The source handle of a media playlist
- * @param[out] dst  The destination handle to a media playlist
+ * @param[out] dst The destination handle to the media playlist
+ * @param[in] src The source handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -285,7 +285,7 @@ int media_playlist_clone(media_playlist_h *dst, media_playlist_h src);
  * @brief Gets the media playlist ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  playlist    The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  * @param[out] playlist_id The ID of the media playlist
  *
  * @return @c 0 on success,
@@ -300,9 +300,9 @@ int media_playlist_get_playlist_id(media_playlist_h playlist, int *playlist_id);
  * @brief Gets a name of the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a playlist_name using free().
+ * @remarks The @a playlist_name should be released using free().
  *
- * @param[in]  playlist      The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  * @param[out] playlist_name The playlist name
  *
  * @return @c 0 on success,
@@ -318,7 +318,7 @@ int media_playlist_get_name(media_playlist_h playlist, char **playlist_name);
  * @brief Sets the name of the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist      The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  * @param[in] playlist_name The name of the media playlist
  *
  * @return @c 0 on success,
@@ -337,10 +337,10 @@ int media_playlist_set_name(media_playlist_h playlist, const char *playlist_name
  * @brief Gets a thumbnail path of the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a path using free().
+ * @remarks The @a path should be released using free().
  *
- * @param[in]  playlist The media playlist handle
- * @param[out] path     The path of the thumbnail
+ * @param[in] playlist The handle to the media playlist
+ * @param[out] path The path of the thumbnail
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -355,8 +355,8 @@ int media_playlist_get_thumbnail_path(media_playlist_h playlist, char **path);
  * @brief Sets the thumbnail path of the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist The media playlist handle
- * @param[in] path     The path of the thumbnail
+ * @param[in] playlist The handle to the media playlist
+ * @param[in] path The path of the thumbnail
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -374,9 +374,9 @@ int media_playlist_set_thumbnail_path(media_playlist_h playlist, const char *pat
  * @brief Sets the playing order in the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist           The media playlist handle
- * @param[in] playlist_member_id The playlist member ID
- * @param[in] play_order         The playing order
+ * @param[in] playlist The handle to the media playlist
+ * @param[in] playlist_member_id The ID of the playlist member
+ * @param[in] play_order The playing order
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -393,8 +393,8 @@ int media_playlist_set_play_order(media_playlist_h playlist, int playlist_member
  * @brief Adds a new media info to the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist The media playlist handle
- * @param[in] media_id The ID to the media info which is added
+ * @param[in] playlist The handle to the media playlist
+ * @param[in] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -415,8 +415,8 @@ int media_playlist_add_media(media_playlist_h playlist, const char *media_id);
  * @brief Removes the playlist members related with the media from the given playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist           The media playlist handle
- * @param[in] playlist_member_id The playlist member ID
+ * @param[in] playlist The handle to the media playlist
+ * @param[in] playlist_member_id The ID of the playlist member
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -437,9 +437,9 @@ int media_playlist_remove_media(media_playlist_h playlist, int playlist_member_i
  * @brief Gets the played order of the playlist.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] playlist           The media playlist handle
- * @param[in] playlist_member_id The playlist member ID
- * @param[out] play_order        The played order
+ * @param[in] playlist The handle to the media playlist
+ * @param[in] playlist_member_id The ID of the playlist member
+ * @param[out] play_order The played order
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -463,7 +463,7 @@ int media_playlist_get_play_order(media_playlist_h playlist, int playlist_member
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] playlist The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -490,19 +490,20 @@ int media_playlist_update_to_db(media_playlist_h playlist);
 
 /**
  * @brief Imports the playlist from m3u playlist file.
- * @details This api reads a playlist from the m3u playlist file and insert into the db.
+ * @details This function reads a playlist from the m3u playlist file and insert into the db.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
+ * @remarks The @ a playlist should be released using media_playlist_destroy().
  * @remarks   http://tizen.org/privilege/mediastorage is needed if input or output path are relevant to media storage. \n
  *                     http://tizen.org/privilege/externalstorage is needed if input or output path are relevant to external storage. \n
- *                     This api does not support the file of extended m3u playlist.
+ *                     This function does not support the file of extended m3u playlist.
  *
- * @param[in] playlist_name The name of the playlist to save
+ * @param[in] playlist_name The name of the media playlist to save
  * @param[in] path The path to import the playlist file
- * @param[out] playlist The media playlist handle
+ * @param[out] playlist The handle to the media playlist
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -525,7 +526,7 @@ int media_playlist_import_from_file(const char *playlist_name, const char *path,
  * @remarks   http://tizen.org/privilege/mediastorage is needed if input or output path are relevant to media storage. \n
  *                     http://tizen.org/privilege/externalstorage is needed if input or output path are relevant to external storage. \n
  *
- * @param[in] playlist The media playlist handle
+ * @param[in] playlist The handle to the media playlist
  * @param[in] path path The path to export the playlist
  *
  * @return @c 0 on success,
@@ -549,4 +550,4 @@ int media_playlist_export_to_file(media_playlist_h playlist, const char* path);
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
-#endif /*__TIZEN_MEDIA_PLAYLIST_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_PLAYLIST_H__*/
index 94d94b1..56b8da5 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_STORAGE_H__
-#define __TIZEN_MEDIA_STORAGE_H__
+#ifndef __TIZEN_CONTENT_MEDIA_STORAGE_H__
+#define __TIZEN_CONTENT_MEDIA_STORAGE_H__
 
 
 #include <media_content_type.h>
@@ -41,21 +41,20 @@ extern "C" {
 * @brief Gets media storage from database.
 * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
 *
-* @remarks You must release the handle using media_storage_destroy(). \n
+* @remarks The @a storage should be released using media_storage_destroy().
 *
-* @param[in] storage_id The storage id to get media storage info
+* @param[in] storage_id The ID of the media storage
 * @param[out] storage The media storage handle
 *
 * @return @c 0 on success,
 *           otherwise a negative error value
 *
-* @retval #MEDIA_CONTENT_ERROR_NONE              Successful
+* @retval #MEDIA_CONTENT_ERROR_NONE Successful
 * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
-* @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY    Out of memory
-* @retval #MEDIA_CONTENT_ERROR_DB_FAILED                DB Operation failed
-* @retval #MEDIA_CONTENT_ERROR_DB_BUSY                  DB Operation busy
+* @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory
+* @retval #MEDIA_CONTENT_ERROR_DB_FAILED  DB Operation failed
+* @retval #MEDIA_CONTENT_ERROR_DB_BUSY DB Operation busy
 * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
-
 *
 * @pre This function requires opened connection to content service by media_content_connect().
 *
@@ -67,17 +66,17 @@ int media_storage_get_storage_info_from_db(const char *storage_id, media_storage
 * @brief Gets the count of media storage for the passed @a filter from the media database.
 * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
 *
-* @param[in] filter The handle to filter
+* @param[in] filter The handle to the media filter
 * @param[out] storage_count The count of storage
 *
 * @return @c 0 on success,
 *           otherwise a negative error value
 *
-* @retval #MEDIA_CONTENT_ERROR_NONE              Successful
+* @retval #MEDIA_CONTENT_ERROR_NONE Successful
 * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
 * @retval #MEDIA_CONTENT_ERROR_INVALID_OPERATION Invalid operation
-* @retval #MEDIA_CONTENT_ERROR_DB_FAILED                DB Operation failed
-* @retval #MEDIA_CONTENT_ERROR_DB_BUSY                  DB Operation busy
+* @retval #MEDIA_CONTENT_ERROR_DB_FAILED DB Operation failed
+* @retval #MEDIA_CONTENT_ERROR_DB_BUSY DB Operation busy
 * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied
 *
 * @pre This function requires opened connection to content service by media_content_connect().
@@ -94,8 +93,8 @@ int media_storage_get_storage_count_from_db(filter_h filter, int *storage_count)
  *
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in] filter    The media storage handle filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -117,11 +116,11 @@ int media_storage_get_storage_count_from_db(filter_h filter, int *storage_count)
 int media_storage_foreach_storage_from_db(filter_h filter, media_storage_cb callback, void *user_data);
 
 /**
- * @brief Gets the count of media files for the passed @a filter in the given @a storage from the media database.
+ * @brief Gets the count of media files for the passed @a filter in the given @a storage_id from the media database.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in] storage_id    The ID of the media storage
- * @param[in] filter       The filter of the media content
+ * @param[in] storage_id The ID of the media storage
+ * @param[in] filter The handle to the media filter
  * @param[out] media_count The count of media storage items
  *
  * @return @c 0 on success,
@@ -140,7 +139,7 @@ int media_storage_foreach_storage_from_db(filter_h filter, media_storage_cb call
 int media_storage_get_media_count_from_db(const char *storage_id, filter_h filter, int *media_count);
 
 /**
- * @brief Iterates through the media files with an optional @a filter in the given @a storage from the media database.
+ * @brief Iterates through the media files with an optional @a filter in the given @a storage_id from the media database.
  * @details This function gets all media files associated with the given storage and
  *          meeting desired filter option and calls @a callback for
  *          every retrieved media item. If @c NULL is passed to the @a filter, no filtering is applied.
@@ -153,8 +152,8 @@ int media_storage_get_media_count_from_db(const char *storage_id, filter_h filte
  *                    We do not recommend you call updating DB function in callback of foreach function.
  *
  * @param[in] storage_id The ID of the media storage
- * @param[in] filter    The handle to the media info filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -184,7 +183,7 @@ int media_storage_foreach_media_from_db(const char *storage_id, filter_h filter,
  *
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in]  storage  The media storage handle
+ * @param[in] storage The media storage handle
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -208,10 +207,10 @@ int media_storage_destroy(media_storage_h storage);
  *
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release the destination handle using media_storage_destroy().
+ * @remarksThe @a dst should be released using media_storage_destroy().
  *
- * @param[out] dst  The destination handle to the media storage
- * @param[in]  src  The source handle to media storage
+ * @param[out] dst The destination handle to the media storage
+ * @param[in] src The source handle to the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -230,10 +229,10 @@ int media_storage_clone(media_storage_h *dst, media_storage_h src);
  * @brief Gets the storage id of media storage.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_id using free().
+ * @remarks The @a storage_id should be released using free().
  *
- * @param[in]  storage The media storage handle
- * @param[out] storage_id  The storage id of the media storage
+ * @param[in] storage The media storage handle
+ * @param[out] storage_id The ID of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -249,11 +248,11 @@ int media_storage_get_id(media_storage_h storage, char **storage_id);
  * @brief Gets the storage name of media storage.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_name using free().
- *                   If the requested storage is not the cloud storage, this API returns NULL.
+ * @remarks The @a storage_name should be released using free().
+ *                   If the requested storage is not the cloud storage, this function returns NULL.
  *
- * @param[in]  storage The media storage handle
- * @param[out] storage_name  The storage name of the media storage
+ * @param[in] storage The media storage handle
+ * @param[out] storage_name The storage name of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -268,10 +267,10 @@ int media_storage_get_name(media_storage_h storage, char **storage_name) TIZEN_D
  * @brief Gets the storage path of media storage.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @remarks You must release @a storage_path using free().
+ * @remarks The @a storage_path should be released using free().
  *
- * @param[in]  storage The media storage handle
- * @param[out] storage_path  The storage path of the media storage
+ * @param[in] storage The media storage handle
+ * @param[out] storage_path The storage path of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -286,8 +285,8 @@ int media_storage_get_path(media_storage_h storage, char **storage_path);
  * @brief Gets the storage type of media storage.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  *
- * @param[in]  storage The media storage handle
- * @param[out] storage_type  The storage type of the media storage
+ * @param[in] storage The media storage handle
+ * @param[out] storage_type The storage type of the media storage
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -305,4 +304,4 @@ int media_storage_get_type(media_storage_h storage, media_content_storage_e *sto
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_STORAGE_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_STORAGE_H__ */
index f61d23c..31cdabc 100755 (executable)
@@ -16,8 +16,8 @@
 
 
 
-#ifndef __TIZEN_MEDIA_TAG_H__
-#define __TIZEN_MEDIA_TAG_H__
+#ifndef __TIZEN_CONTENT_MEDIA_TAG_H__
+#define __TIZEN_CONTENT_MEDIA_TAG_H__
 
 #include <media_content_type.h>
 
@@ -46,10 +46,10 @@ extern "C" {
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @remarks The created tag handle must be released using media_tag_destroy().
+ * @remarks The @a tag should be released using media_tag_destroy().
  *
- * @param[in]  tag_name The tag name to be inserted
- * @param[out] tag      The created handle to the media tag
+ * @param[in] tag_name The tag name to be inserted
+ * @param[out] tag The handle to the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -78,7 +78,7 @@ int media_tag_insert_to_db(const char *tag_name, media_tag_h *tag);
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] tag_id The ID of media tag
+ * @param[in] tag_id The ID of the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -102,7 +102,7 @@ int media_tag_delete_from_db(int tag_id);
  * @brief Gets the count of the tag for the passed @a filter from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  filter    The handle to the filter
+ * @param[in] filter The handle to the media filter
  * @param[out] tag_count The count of the media tag
  *
  * @return @c 0 on success,
@@ -128,8 +128,8 @@ int media_tag_get_tag_count_from_db(filter_h filter, int *tag_count);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] filter    The tag filter handle
- * @param[in] callback  The callback function to be invoked
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -152,11 +152,11 @@ int media_tag_get_tag_count_from_db(filter_h filter, int *tag_count);
 int media_tag_foreach_tag_from_db(filter_h filter, media_tag_cb callback, void *user_data);
 
 /**
- * @brief Gets the number of media files for the passed @a filter in the given @a tag from the media database.
+ * @brief Gets the number of media files for the passed @a filter in the given @a tag_id from the media database.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  tag_id      The ID of the media tag
- * @param[in]  filter      The handle to the media filter
+ * @param[in] tag_id The ID of the media tag
+ * @param[in] filter The handle to the media filter
  * @param[out] media_count The count of media items
  *
  * @return @c 0 on success,
@@ -182,9 +182,9 @@ int media_tag_get_media_count_from_db(int tag_id, filter_h filter, int *media_co
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] tag_id    The ID of the media tag
- * @param[in] filter    The handle to the media filter
- * @param[in] callback  The callback function to be invoked
+ * @param[in] tag_id The ID of the media tag
+ * @param[in] filter The handle to the media filter
+ * @param[in] callback The callback function to be invoked
  * @param[in] user_data The user data to be passed to the callback function
  *
  * @return @c 0 on success,
@@ -215,10 +215,10 @@ int media_tag_foreach_media_from_db(int tag_id, filter_h filter, media_info_cb c
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the destination handle using media_tag_destroy().
+ * @remarks The @a dst should be released using media_tag_destroy().
  *
  * @param[out] dst The destination handle to the media tag
- * @param[in]  src The source handle to the media tag
+ * @param[in] src The source handle to the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -238,7 +238,7 @@ int media_tag_clone(media_tag_h *dst, media_tag_h src);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] tag The media tag handle
+ * @param[in] tag The handle to the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -257,8 +257,8 @@ int media_tag_destroy(media_tag_h tag);
  * @brief Gets the media tag ID.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in]  tag     The media tag handle
- * @param[out] tag_id  The ID of the media tag
+ * @param[in] tag The handle to the media tag
+ * @param[out] tag_id The ID of the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -272,10 +272,10 @@ int media_tag_get_tag_id(media_tag_h tag, int *tag_id);
  * @brief Gets the tag name.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a tag_name using free().
+ * @remarks The @a tag_name should be released using free().
  *
- * @param[in]  tag      The media tag handle
- * @param[out] tag_name The name of the tag
+ * @param[in] tag The handle to the media tag
+ * @param[out] tag_name The name of the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -294,10 +294,10 @@ int media_tag_get_name(media_tag_h tag, char **tag_name);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a folder using media_tag_destroy().
+ * @remarksThe @a tag should be released using media_tag_destroy().
  *
- * @param[in]  tag_id The ID of the media tag
- * @param[out] tag    The media tag handle associated with the tag ID
+ * @param[in] tag_id The ID of the media tag
+ * @param[out] tag The handle to the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -320,8 +320,8 @@ int media_tag_get_tag_from_db(int tag_id, media_tag_h *tag);
  * @brief Adds a new media info to the tag.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] tag      The media tag handle
- * @param[in] media_id The ID to the media info which is added
+ * @param[in] tag The handle to the media tag
+ * @param[in] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -342,8 +342,8 @@ int media_tag_add_media(media_tag_h tag, const char *media_id);
  * @brief Removes the media info from the given tag.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] tag      The media tag handle
- * @param[in] media_id The ID to the media info which is removed
+ * @param[in] tag The handle to the media tag
+ * @param[in] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -364,7 +364,7 @@ int media_tag_remove_media(media_tag_h tag, const char *media_id);
  * @brief Sets the name of the tag.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] tag      The media tag handle
+ * @param[in] tag The handle to the media tag
  * @param[in] tag_name The name of the media tag
  *
  * @return @c 0 on success,
@@ -390,7 +390,7 @@ int media_tag_set_name(media_tag_h tag, const char *tag_name);
  * @privlevel public
  * @privilege %http://tizen.org/privilege/content.write
  *
- * @param[in] tag The media tag handle
+ * @param[in] tag The handle to the media tag
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -422,4 +422,4 @@ int media_tag_update_to_db(media_tag_h tag);
 }
 #endif /* __cplusplus */
 
-#endif /* __TIZEN_MEDIA_TAG_H__ */
+#endif /* __TIZEN_CONTENT_MEDIA_TAG_H__ */
index d765349..0abd2fe 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_MEDIA_UTIL_PRIVATE_H__
-#define __TIZEN_MEDIA_UTIL_PRIVATE_H__
+#ifndef __TIZEN_CONTENT_MEDIA_UTIL_PRIVATE_H__
+#define __TIZEN_CONTENT_MEDIA_UTIL_PRIVATE_H__
 
 
 #ifdef __cplusplus
@@ -44,4 +44,4 @@ bool _media_content_is_support_senior_mode();
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
-#endif /*__TIZEN_MEDIA_UTIL_PRIVATE_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_UTIL_PRIVATE_H__*/
index 449a483..a5c1c89 100755 (executable)
@@ -15,8 +15,8 @@
 */
 
 
-#ifndef __TIZEN_VIDEO_META_H__
-#define __TIZEN_VIDEO_META_H__
+#ifndef __TIZEN_CONTENT_MEDIA_VIDEO_H__
+#define __TIZEN_CONTENT_MEDIA_VIDEO_H__
 
 #include <media_content_type.h>
 
@@ -42,10 +42,10 @@ extern "C" {
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release the destination handle using video_meta_destroy().
+ * @remarksThe @a dst should be released using video_meta_destroy().
  *
  * @param[out] dst The destination handle to the video metadata
- * @param[in]  src The source handle to the video metadata
+ * @param[in] src The source handle to the video metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -66,7 +66,7 @@ int video_meta_clone(video_meta_h *dst, video_meta_h src);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @param[in] video The video metadata handle
+ * @param[in] video The handle to the video metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -84,10 +84,10 @@ 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
  *
- * @remarks You must release @a media_id using free().
+ * @remarks The @a media_id should be released using free().
  *
- * @param[in]  video    The video metadata handle
- * @param[out] media_id The ID of the video
+ * @param[in] video The handle to the video metadata
+ * @param[out] media_id The media ID
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -105,9 +105,9 @@ int video_meta_get_media_id(video_meta_h video, char **media_id);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album using free().
+ * @remarks The @a album should be released using free().
  *
- * @param[in]  video The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] album The album of the video metadata
  *
  * @return @c 0 on success,
@@ -126,9 +126,9 @@ int video_meta_get_album(video_meta_h video, char **album);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a artist using free().
+ * @remarks The @a artist should be released using free().
  *
- * @param[in]  video  The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] artist The artist of the video metadata
  *
  * @return @c 0 on success,
@@ -147,9 +147,9 @@ int video_meta_get_artist(video_meta_h video, char **artist);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a album_artist using free().
+ * @remarks The @a album_artist should be released using free().
  *
- * @param[in]  video        The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] album_artist The album artist of the video metadata
  *
  * @return @c 0 on success,
@@ -168,9 +168,9 @@ int video_meta_get_album_artist(video_meta_h video, char **album_artist);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a genre using free().
+ * @remarks The @a genre should be released using free().
  *
- * @param[in]  video The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] genre The genre of the video metadata
  *
  * @return @c 0 on success,
@@ -189,9 +189,9 @@ int video_meta_get_genre(video_meta_h video, char **genre);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a composer using free().
+ * @remarks The @a composer should be released using free().
  *
- * @param[in]  video    The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] composer The composer of the video metadata
  *
  * @return @c 0 on success,
@@ -210,10 +210,10 @@ int video_meta_get_composer(video_meta_h video, char **composer);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a year using free().
+ * @remarks The @a year should be released using free().
  *
- * @param[in]  video The video metadata handle
- * @param[out] year  The year of the video metadata
+ * @param[in] video The handle to the video metadata
+ * @param[out] year The year of the video metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -231,9 +231,9 @@ int video_meta_get_year(video_meta_h video, char **year);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a recorded_date using free().
+ * @remarks The @a recorded_date should be released using free().
  *
- * @param[in]  video         The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] recorded_date The recorded date of the video metadata
  *
  * @return @c 0 on success,
@@ -252,9 +252,9 @@ int video_meta_get_recorded_date(video_meta_h video, char **recorded_date);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a copyright using free().
+ * @remarks The @a copyright should be released using free().
  *
- * @param[in]  video     The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] copyright The copyright of the video metadata
  *
  * @return @c 0 on success,
@@ -273,9 +273,9 @@ int video_meta_get_copyright(video_meta_h video, char **copyright);
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarks You must release @a track_num using free().
+ * @remarks The @a track_num should be released using free().
  *
- * @param[in]  video     The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] track_num The track number of the video metadata
  *
  * @return @c 0 on success,
@@ -291,7 +291,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
  *
- * @param[in]  video    The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] bit_rate The video bit rate in bit per second [bps]
  *
  * @return @c 0 on success,
@@ -306,7 +306,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
  *
- * @param[in]  video    The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] duration The video duration in milliseconds
  *
  * @return @c 0 on success,
@@ -321,7 +321,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
  *
- * @param[in]  video The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] width The video width in pixels
  *
  * @return @c 0 on success,
@@ -336,7 +336,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
  *
- * @param[in]  video  The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] height The video height in pixels
  *
  * @return @c 0 on success,
@@ -351,7 +351,7 @@ int video_meta_get_height(video_meta_h video, int *height);
  * @brief Gets the rotation of the given video metadata.
  * @since_tizen 4.0
  *
- * @param[in]  video  The video metadata handle
+ * @param[in] video The handle to the video metadata
  * @param[out] rotation The clockwise rotation angle of the video in degrees (can be returned from 0 to less than 360)
  *
  * @return @c 0 on success,
@@ -375,7 +375,7 @@ int video_meta_get_rotation(video_meta_h video, int *rotation);
  *
  * @remarks Do not call this function in callback function of foreach function like media_info_foreach_media_from_db().
  *
- * @param[in] video The video metadata handle
+ * @param[in] video The handle to the video metadata
  *
  * @return @c 0 on success,
  *         otherwise a negative error value
@@ -403,4 +403,4 @@ int video_meta_update_to_db(video_meta_h video) TIZEN_DEPRECATED_API;
 }
 #endif /* __cplusplus */
 
-#endif /*__TIZEN_VIDEO_META_H__*/
+#endif /*__TIZEN_CONTENT_MEDIA_VIDEO_H__*/