Remove profile tag
[platform/core/api/media-content.git] / include / media_bookmark.h
index d712439..5991c5b 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>
 
@@ -39,13 +39,13 @@ extern "C" {
 
 /**
  * @brief Inserts a new bookmark in media on the specified time offset to the media database.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @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.
  *
@@ -69,12 +69,12 @@ int media_bookmark_insert_to_db(const char *media_id, time_t time, const char *t
 
 /**
  * @brief Removes a media bookmark from the media database.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @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
@@ -96,9 +96,9 @@ 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
+ * @since_tizen 2.3
  *
- * @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,
@@ -108,7 +108,6 @@ int media_bookmark_delete_from_db(int bookmark_id);
  * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter
  * @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().
  *
@@ -118,13 +117,13 @@ int media_bookmark_get_bookmark_count_from_db(filter_h filter, int *bookmark_cou
 
 /**
  * @brief Iterates through the bookmarks with an optional filter from the media database.
- * @details This function gets all bookmarks associated with the given filter and calls registered callback function for every retrieved media bookmark.
+ * @details This function gets all bookmarks associated with the given filter and calls @a callback for every retrieved media bookmark.
  *          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
@@ -134,7 +133,6 @@ int media_bookmark_get_bookmark_count_from_db(filter_h filter, int *bookmark_cou
  * @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().
  * @post This function invokes media_bookmark_cb().
@@ -151,12 +149,12 @@ int media_bookmark_foreach_bookmark_from_db(filter_h filter, media_bookmark_cb c
  *          The media_bookmark_h is created internally and available through media bookmark foreach function such as media_info_foreach_bookmark_from_db().
  *          To use this handle outside of these foreach functions, use this function.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
- * @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
@@ -173,12 +171,12 @@ int media_bookmark_clone(media_bookmark_h *dst, media_bookmark_h src);
 /**
  * @brief Destroys a media bookmark.
  * @details This function frees all the resources related to the bookmark handle. This handle
- *          no longer can be used to perform any operation. A new handle has to
+ *          no longer can be used to perform any operations. A new handle has to
  *          be created before the next use.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
- * @param[in] 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,10 +192,10 @@ 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
+ * @since_tizen 2.3
  *
- * @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,9 +210,9 @@ int media_bookmark_get_bookmark_id(media_bookmark_h bookmark, int *bookmark_id);
  * @details This function returns time offset in seconds from beginning of the movie on which bookmark
  *          was placed.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
- * @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,12 +225,12 @@ 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
+ * @since_tizen 2.3
  *
- * @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
@@ -247,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,
@@ -266,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
@@ -292,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().
  *
@@ -320,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__*/