X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include_product%2Fmedia_bookmark.h;h=5991c5b36cfe279a411190661382ff957e63b2ae;hb=59af7cc1b17ec5b5d52aec4a274c4d8bd1226045;hp=e901e807f404f5c5637bc17220e0fe67f32a1b3b;hpb=eeea2a97e04fc8f255853b3127759c9442309c7d;p=platform%2Fcore%2Fapi%2Fmedia-content.git diff --git a/include_product/media_bookmark.h b/include_product/media_bookmark.h index e901e80..5991c5b 100755 --- a/include_product/media_bookmark.h +++ b/include_product/media_bookmark.h @@ -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 @@ -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, @@ -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 @@ -149,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 @@ -171,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 @@ -192,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 @@ -210,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, @@ -225,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 @@ -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__*/