summaryrefslogtreecommitdiff
path: root/src/include/common
diff options
context:
space:
mode:
authorMinje Ahn <minje.ahn@samsung.com>2018-11-07 10:53:55 +0900
committerMinje Ahn <minje.ahn@samsung.com>2018-11-07 10:53:55 +0900
commite4418fdfe2952ab895ef475d18920683ec82bfab (patch)
treea7c269ed45ad9db112d9205b7c7a49db2df3aa60 /src/include/common
parent04b1e8eff9904c0b5429653e599fa7848897b700 (diff)
downloadlibmedia-service-e4418fdfe2952ab895ef475d18920683ec82bfab.tar.gz
libmedia-service-e4418fdfe2952ab895ef475d18920683ec82bfab.tar.bz2
libmedia-service-e4418fdfe2952ab895ef475d18920683ec82bfab.zip
[ACR-1308] Remove deprecated APIssubmit/tizen/20181122.233111
Change-Id: I153afe01ce343a6a9d84e26d874003e903c925ae Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
Diffstat (limited to 'src/include/common')
-rwxr-xr-xsrc/include/common/media-svc-album.h1
-rwxr-xr-xsrc/include/common/media-svc-media.h3
-rwxr-xr-xsrc/include/common/media-svc-storage.h1
-rwxr-xr-xsrc/include/common/media-svc-util.h1
4 files changed, 1 insertions, 5 deletions
diff --git a/src/include/common/media-svc-album.h b/src/include/common/media-svc-album.h
index fe53da7..11ae80d 100755
--- a/src/include/common/media-svc-album.h
+++ b/src/include/common/media-svc-album.h
@@ -26,7 +26,6 @@
#include <sys/types.h>
int _media_svc_get_album_id(sqlite3 *handle, const char *album, const char *artist, int *album_id);
-int _media_svc_get_album_art_by_album_id(sqlite3 *handle, int album_id, char **album_art);
int _media_svc_append_album(sqlite3 *handle, const char *album, const char *artist, const char *album_art, int *album_id, uid_t uid);
#endif /*_MEDIA_SVC_ALBUM_H_*/
diff --git a/src/include/common/media-svc-media.h b/src/include/common/media-svc-media.h
index 97e4d9d..f0e0f24 100755
--- a/src/include/common/media-svc-media.h
+++ b/src/include/common/media-svc-media.h
@@ -29,11 +29,10 @@
#include "media-svc-noti.h"
int _media_svc_count_record_with_path(sqlite3 *handle, const char *storage_id, const char *path, int *count);
-int _media_svc_insert_item_with_data(sqlite3 *handle, const char *storage_id, media_svc_content_info_s *content_info, int is_burst, bool stack_query, uid_t uid);
+int _media_svc_insert_item_with_data(sqlite3 *handle, const char *storage_id, media_svc_content_info_s *content_info, bool stack_query, uid_t uid);
int _media_svc_update_item_with_data(const char *storage_id, media_svc_content_info_s *content_info, uid_t uid);
int _media_svc_get_thumbnail_path_by_path(sqlite3 *handle, const char *path, char *thumbnail_path);
int _media_svc_get_media_type_by_path(sqlite3 *handle, const char *storage_id, const char *path, int *media_type);
-int _media_svc_get_burst_id(sqlite3 *handle, const char *storage_id, int *id);
int _media_svc_delete_item_by_path(const char *storage_id, const char *path, bool stack_query, uid_t uid);
int _media_svc_delete_invalid_items(sqlite3 *handle, const char *storage_id, media_svc_storage_type_e storage_type, uid_t uid);
int _media_svc_update_storage_item_validity(const char *storage_id, media_svc_storage_type_e storage_type, int validity, uid_t uid);
diff --git a/src/include/common/media-svc-storage.h b/src/include/common/media-svc-storage.h
index bdf185c..cccbba8 100755
--- a/src/include/common/media-svc-storage.h
+++ b/src/include/common/media-svc-storage.h
@@ -30,7 +30,6 @@ int _media_svc_update_storage_path(sqlite3 *handle, const char *storage_id, cons
int _media_svc_delete_invalid_storage(sqlite3 *handle, media_svc_storage_type_e storage_type, uid_t uid);
int _media_svc_update_storage_validity(const char *storage_id, int validity, uid_t uid);
int _media_svc_get_storage_uuid(sqlite3 *handle, const char *path, char *storage_id, uid_t uid);
-int _media_svc_get_storage_path(sqlite3 *handle, const char *storage_id, char **storage_path);
int _media_svc_get_all_storage(sqlite3 *handle, char ***storage_list, char ***storage_id_list, int *count);
#endif /*_MEDIA_SVC_STORAGE_H_*/
diff --git a/src/include/common/media-svc-util.h b/src/include/common/media-svc-util.h
index f33d24d..31828f7 100755
--- a/src/include/common/media-svc-util.h
+++ b/src/include/common/media-svc-util.h
@@ -50,7 +50,6 @@ extern "C" {
#define SAFE_STRLCPY(dst, src, n) g_strlcpy(dst, src, n);
char *_media_info_generate_uuid(void);
-int _media_svc_rename_file(const char *old_name, const char *new_name);
int _media_svc_remove_file(const char *path);
int _media_svc_get_thumbnail_path(media_svc_media_type_e media_type, char *thumb_path, const char *pathname, const char *img_format, uid_t uid);
int _media_svc_get_file_time(const char *full_path);