/* * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef __TIZEN_CONTENT_MEDIA_FACE_H__ #define __TIZEN_CONTENT_MEDIA_FACE_H__ #include #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /** * @file media_face.h * @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() function. And you can insert,update,delete face information manually. */ /** * @addtogroup CAPI_CONTENT_MEDIA_FACE_MODULE * @{ */ /** * @deprecated Deprecated since 8.0. * @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 * @remarks The @a dst should be released using media_face_destroy(). * * @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. * * @retval #MEDIA_CONTENT_ERROR_NONE Successful * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory * * @see media_face_destroy() * @see media_face_foreach_face_from_db() */ int media_face_clone(media_face_h *dst, media_face_h src) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @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 operations. New handle has to * be created before next usage. * * @since_tizen 3.0 * * @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 * * @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) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @brief Gets the face id from the media face handle. * * @since_tizen 3.0 * * @remarks The @a face_id should be released using free(). * * @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. * * @retval #MEDIA_CONTENT_ERROR_NONE Successful * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter */ int media_face_get_face_id(media_face_h face, char **face_id) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @brief Gets the media id from the media face handle. * * @since_tizen 3.0 * * @remarks The @a media_id should be released using free(). * * @param[in] face The media face handle * @param[out] media_id The media ID * * @return 0 on success, otherwise a negative error value. * * @retval #MEDIA_CONTENT_ERROR_NONE Successful * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter */ int media_face_get_media_id(media_face_h face, char **media_id) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @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 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 * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter */ 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) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @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 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 * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter */ int media_face_get_orientation(media_face_h face, media_content_orientation_e *orientation) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @brief Gets the tag from the media face handle. * * @since_tizen 3.0 * * @remarks The @a tag should be released using free(). * * @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 * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter */ int media_face_get_tag(media_face_h face, char **tag) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @brief Creates the media face handle. * * @since_tizen 3.0 * * @remarks The @a face should be released using media_face_destroy(). \n * Since 5.5, this function supports only image type. * * @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 * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter * * @see media_face_destroy() */ int media_face_create(const char *media_id, media_face_h *face) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @brief Sets the face rectangle of the media face handle. * * @since_tizen 3.0 * * @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_h The integer to set as a height of face rectangle * * @return 0 on success, otherwise a negative error value. * @retval #MEDIA_CONTENT_ERROR_NONE Successful * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter * * @post media_face_insert_to_db() * @post media_face_update_to_db() * */ 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) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @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 media face handle * @param[in] orientation The integer to set as an orientation * * @return 0 on success, otherwise a negative error value. * @retval #MEDIA_CONTENT_ERROR_NONE Successful * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter * * @post media_face_insert_to_db() * @post media_face_update_to_db() * */ int media_face_set_orientation(media_face_h face, media_content_orientation_e orientation) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @brief Sets the tag of the media face handle. * * @since_tizen 3.0 * * @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 * @retval #MEDIA_CONTENT_ERROR_INVALID_PARAMETER Invalid parameter * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory * * @post media_face_insert_to_db() * @post media_face_update_to_db() */ int media_face_set_tag(media_face_h face, const char *tag) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @brief Inserts a new face in the media database. * @since_tizen 3.0 * * @privlevel public * @privilege %http://tizen.org/privilege/content.write * * @remarks The @a face should be released using media_face_destroy(). * * @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 * @retval #MEDIA_CONTENT_ERROR_OUT_OF_MEMORY Out of memory * @retval #MEDIA_CONTENT_ERROR_PERMISSION_DENIED Permission denied * @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 * * @see media_content_connect() * @see media_face_destroy() * @see media_face_set_face_rect() * @see media_face_set_orientation() * @see media_face_set_tag() */ int media_face_insert_to_db(media_face_h face) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @brief Updates the face details to the media database. * * @details The function updates the given media face in the media database. The function should be called after any change in face, to be updated to the media * database. For example, after using media_face_set_orientation() for setting the orientation of the face, media_face_update_to_db() function should be called so as to update * the given face attributes in the media database. * @since_tizen 3.0 * * @privlevel public * @privilege %http://tizen.org/privilege/content.write * * @param[in] face The media face handle to update * * @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 * @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 * * @pre This function requires opened connection to content service by media_content_connect(). * * @see media_content_connect() * @see media_face_destroy() * @see media_face_set_face_rect() * @see media_face_set_orientation() * @see media_face_set_tag() * */ int media_face_update_to_db(media_face_h face) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @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 the media face * * @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 * @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 * * @pre This function requires opened connection to content service by media_content_connect(). * @see media_content_connect() * */ int media_face_delete_from_db(const char *face_id) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @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 media filter * @param[out] face_count The count of the media faces * * @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_BUSY DB Operation busy * * @pre This function requires opened connection to content service by media_content_connect(). * * @see media_content_connect() * @see media_filter_create() */ int media_face_get_face_count_from_db(filter_h filter, int *face_count) TIZEN_DEPRECATED_API; /** * @deprecated Deprecated since 8.0. * @brief Iterates through the faces with an optional filter from the media database. * @details This function gets all faces associated with the given filter and calls @a callback for every retrieved media face. * 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 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 * * @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 * * @pre This function requires opened connection to content service by media_content_connect(). * @post This function invokes media_face_cb(). * * @see media_content_connect() * @see media_face_cb() * @see media_filter_create() */ int media_face_foreach_face_from_db(filter_h filter, media_face_cb callback, void *user_data) TIZEN_DEPRECATED_API; /** * @} */ #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __TIZEN_CONTENT_MEDIA_FACE_H__ */