[ACR-1838] Deprecate all bookmark and playlist funtions
[platform/core/api/media-content.git] / include_product / media_info.h
index 918eacc..a75380b 100755 (executable)
@@ -30,8 +30,7 @@ extern "C" {
  * @file media_info.h
  * @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 favorite etc. \n
- *        And you can get bookmark, face, tag info related the content file.
+ *        You can get properties of content file such as size, mime_type, modified_time etc. And you can set properties such as favorite etc.
  */
 
 
@@ -305,6 +304,7 @@ int media_info_get_tag_count_from_db(const char *media_id, filter_h filter, int
 int media_info_foreach_tag_from_db(const char *media_id, filter_h filter, media_tag_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
+ * @deprecated Deprecated since 9.0.
  * @brief Gets the number of bookmarks for the passed @a filter in the given media ID from the media database.
  * @details If @c NULL is passed to the @a filter, then no filtering is applied.
  *
@@ -327,9 +327,10 @@ int media_info_foreach_tag_from_db(const char *media_id, filter_h filter, media_
  * @see media_content_connect()
  * @see media_filter_create()
  */
-int media_info_get_bookmark_count_from_db(const char *media_id, filter_h filter, int *bookmark_count);
+int media_info_get_bookmark_count_from_db(const char *media_id, filter_h filter, int *bookmark_count) TIZEN_DEPRECATED_API;
 
 /**
+ * @deprecated Deprecated since 9.0.
  * @brief Iterates through the media bookmark in the given media info from the media database.
  * @details This function gets all media bookmarks associated with the given media and calls @a callback for every retrieved media bookmark.
  *                If @c NULL is passed to the @a filter, then no filtering is applied.
@@ -357,7 +358,7 @@ int media_info_get_bookmark_count_from_db(const char *media_id, filter_h filter,
  * @see media_bookmark_cb()
  * @see media_filter_create()
  */
-int media_info_foreach_bookmark_from_db(const char *media_id, filter_h filter, media_bookmark_cb callback, void *user_data);
+int media_info_foreach_bookmark_from_db(const char *media_id, filter_h filter, media_bookmark_cb callback, void *user_data) TIZEN_DEPRECATED_API;
 
 /**
  * @deprecated Deprecated since 8.0.