From: Tae-Young Chung Date: Mon, 15 Feb 2016 09:23:47 +0000 (+0900) Subject: Remove app_get_shared_data_path() usasge from remarks X-Git-Tag: accepted/tizen/common/20160229.161113^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=91df4c68c5c499da10e0be9af82a2ca2745bca68;p=platform%2Fcore%2Fapi%2Fmediavision.git Remove app_get_shared_data_path() usasge from remarks app_get_shared_data_path() API is deprecated since Tizen 3.0 Change-Id: I5df660cb5f7933e01b3857e282b7989b3d983897 Signed-off-by: Tae-Young Chung --- diff --git a/include/mv_face.h b/include/mv_face.h index e0f765b..18e4772 100644 --- a/include/mv_face.h +++ b/include/mv_face.h @@ -662,8 +662,7 @@ int mv_face_recognition_model_clone( * @ref mv_face_recognition_model_reset() function if * it is needed to clear the memory. * @remarks @a recognition_model is saved to the absolute path directory. - * Use @ref app_get_data_path for the private app storage path or - * @ref app_get_shared_data_path for the app shared storage path. + * Use @ref app_get_data_path for the private app storage path. * After model is saved to the file, it can be loaded from this file * by @ref mv_face_recognition_model_load() function. * @param [in] file_name Name of the path/file to save the model @@ -686,7 +685,6 @@ int mv_face_recognition_model_clone( * @see mv_face_recognition_model_load() * @see mv_face_recognition_model_create() * @see app_get_data_path() - * @see app_get_shared_data_path() */ int mv_face_recognition_model_save( const char *file_name, @@ -704,8 +702,7 @@ int mv_face_recognition_model_save( * is recommended to clear the memory if learning algorithm doesn't * support reinforcement learning. * @remarks @a recognition_model is loaded from the absolute path directory. - * Use @ref app_get_data_path for the private app storage path or - * @ref app_get_shared_data_path for the app shared storage path. + * Use @ref app_get_data_path for the private app storage path. * @a recognition_model must be destroyed using * @ref mv_face_recognition_model_destroy(). * @param [in] file_name Name of path/file to load the model @@ -726,7 +723,6 @@ int mv_face_recognition_model_save( * @see mv_face_recognition_model_save() * @see mv_face_recognition_model_destroy() * @see app_get_data_path() - * @see app_get_shared_data_path() */ int mv_face_recognition_model_load( const char *file_name, @@ -1042,8 +1038,7 @@ int mv_face_tracking_model_clone( * * @since_tizen 3.0 * @remarks @a tracking_model is saved to the absolute path directory. - * Use @ref app_get_data_path for the private app storage path or - * @ref app_get_shared_data_path for the app shared storage path. + * Use @ref app_get_data_path for the private app storage path. * After model is saved to the file, it can be loaded from this file * with @ref mv_face_tracking_model_load() function. * @param [in] file_name Name of the path/file to save the model @@ -1066,7 +1061,6 @@ int mv_face_tracking_model_clone( * @see mv_face_tracking_model_load() * @see mv_face_tracking_model_create() * @see app_get_data_path() - * @see app_get_shared_data_path() */ int mv_face_tracking_model_save( const char *file_name, @@ -1077,8 +1071,7 @@ int mv_face_tracking_model_save( * * @since_tizen 3.0 * @remarks @a tracking_model is loaded from the absolute path directory. - * Use @ref app_get_data_path for the private app storage path or - * @ref app_get_shared_data_path for the app shared storage path. + * Use @ref app_get_data_path for the private app storage path. * @a tracking_model must be destroyed using * @ref mv_face_tracking_model_destroy. * @param [in] file_name Name of path/file to load the model @@ -1104,7 +1097,6 @@ int mv_face_tracking_model_save( * @see mv_face_tracking_model_save() * @see mv_face_tracking_model_destroy() * @see app_get_data_path() - * @see app_get_shared_data_path() */ int mv_face_tracking_model_load( const char *file_name, diff --git a/include/mv_image.h b/include/mv_image.h index a1a3d34..ec18dcd 100644 --- a/include/mv_image.h +++ b/include/mv_image.h @@ -618,8 +618,7 @@ int mv_image_object_clone( * * @since_tizen 3.0 * @remarks @a image_object is saved to the absolute path directory. - * Use @ref app_get_data_path for the private app storage path or - * @ref app_get_shared_data_path for the app shared storage path. + * Use @ref app_get_data_path for the private app storage path. * @param [in] file_name Name of the file to path/save the image object * @param [in] image_object The handle to the image object which will be saved * @return @c 0 on success, otherwise a negative error value @@ -645,8 +644,7 @@ int mv_image_object_save( * * @since_tizen 3.0 * @remarks @a image_object is loaded from the absolute path directory. - * Use @ref app_get_data_path for the private app storage path or - * @ref app_get_shared_data_path for the app shared storage path. + * Use @ref app_get_data_path for the private app storage path. * @a image_object must be destroyed using * @ref mv_image_object_destroy(). * @param [in] file_name Name of path/file to load the image object @@ -804,8 +802,7 @@ int mv_image_tracking_model_clone( * * @since_tizen 3.0 * @remarks @a image_tracking_model is saved to the absolute path directory. - * Use @ref app_get_data_path for the private app storage path or - * @ref app_get_shared_data_path for the app shared storage path. + * Use @ref app_get_data_path for the private app storage path. * @param [in] file_name Name of path/file to save the model * @param [in] image_tracking_model The handle to the image tracking model * to be saved @@ -833,8 +830,7 @@ int mv_image_tracking_model_save( * * @since_tizen 3.0 * @remarks @a image_tracking_model is loaded from the absolute path directory. - * Use @ref app_get_data_path for the private app storage path or - * @ref app_get_shared_data_path for the app shared storage path. + * Use @ref app_get_data_path for the private app storage path. * @a image_tracking_model must be destroyed using * @ref mv_image_tracking_model_destroy. * @param [in] file_name Name of path/file to load model diff --git a/packaging/capi-media-vision.spec b/packaging/capi-media-vision.spec index a6b0f47..55aae32 100644 --- a/packaging/capi-media-vision.spec +++ b/packaging/capi-media-vision.spec @@ -1,7 +1,7 @@ Name: capi-media-vision Summary: Media Vision library for Tizen Native API -Version: 0.3.6 -Release: 2 +Version: 0.3.7 +Release: 0 Group: Multimedia/Framework License: Apache-2.0 and BSD-2.0 Source0: %{name}-%{version}.tar.gz