Change image info getting API 48/169248/1 accepted/tizen/unified/20180206.064127 submit/tizen/20180205.005408
authorMinje Ahn <minje.ahn@samsung.com>
Mon, 5 Feb 2018 07:11:19 +0000 (16:11 +0900)
committerMinje Ahn <minje.ahn@samsung.com>
Mon, 5 Feb 2018 07:11:19 +0000 (16:11 +0900)
Change-Id: If6bf1e5cd72206531543c7901e96d7acd8c76406
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
src/thumbnail_util.c

index d93120c..e2c5791 100755 (executable)
@@ -543,11 +543,11 @@ int _thumbnail_util_check_media_type(const char *path, thumbnail_util_media_type
 bool _thumbnail_util_is_support_img(const char *path)
 {
        int ret = 0;
-       ImgCodecType t = IMG_CODEC_NONE;
+       mm_util_img_codec_type t = IMG_CODEC_NONE;
        unsigned int w = 0;
        unsigned int h = 0;
 
-       ret = ImgGetImageInfo(path, &t, &w, &h);
+       ret = mm_util_extract_image_info(path, &t, &w, &h);
        if (ret != 0)
                return false;