Merge "Match columns of face table with filter keyword" into tizen
[platform/core/api/media-content.git] / include / media_video.h
index a5c1c89..7883094 100755 (executable)
@@ -28,7 +28,7 @@ extern "C" {
  * @file media_video.h
  * @brief This file contains the video metadata API and related functions to proceed with video metadata. \n
  *        Functions include cloning and destroying video metadata, getting video metadata such as width, height, \n
- *        album, genre, played parameters etc. and updating video to DB.
+ *        album, genre, etc.
  */
 
 /**
@@ -42,7 +42,7 @@ extern "C" {
  *
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
  *
- * @remarksThe @a dst should be released using video_meta_destroy().
+ * @remarks The @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
@@ -61,7 +61,7 @@ int video_meta_clone(video_meta_h *dst, video_meta_h src);
 /**
  * @brief Destroys the video metadata.
  * @details This function frees all resources related to the video metadata 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
@@ -363,39 +363,6 @@ int video_meta_get_height(video_meta_h video, int *height);
 int video_meta_get_rotation(video_meta_h video, int *rotation);
 
 /**
- * @deprecated Deprecated since 4.0. Related setter functions are deprecated, therefore this function is not needed anymore.
- * @brief Updates an video metadata with modified attributes in the media database.
- * @details The function updates the given video meta in the media database. The function should be called after any change in video attributes, to be updated to the media
- *          database.
- *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
- *
- * @privlevel public
- * @privilege %http://tizen.org/privilege/content.write
- *
- * @remarks Do not call this function in callback function of foreach function like media_info_foreach_media_from_db().
- *
- * @param[in] video The handle to the video metadata
- *
- * @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
- *
- * @pre This function requires opened connection to content service by media_content_connect().
- *
- * @see media_content_connect()
- */
-int video_meta_update_to_db(video_meta_h video) TIZEN_DEPRECATED_API;
-
-/**
  *@}
  */