Updates color enums for refactoring of libmm-utility 68/169668/3
authorJiyong Min <jiyong.min@samsung.com>
Thu, 8 Feb 2018 07:24:53 +0000 (16:24 +0900)
committerMinje ahn <minje.ahn@samsung.com>
Thu, 8 Feb 2018 08:26:18 +0000 (08:26 +0000)
Change-Id: I81c17682bd9c921938128cefae747dcd389b5f09

packaging/libmedia-thumbnail.spec
src/media-thumb-internal.c

index 6e2b021eabd365e15f577f03160145a7141d0657..40df784dba8070cbb4bcea1bf7dff9ad938f32cf 100644 (file)
@@ -1,6 +1,6 @@
 Name:       libmedia-thumbnail
 Summary:    Media thumbnail service library for multimedia applications
-Version: 0.2.18
+Version: 0.2.19
 Release:    0
 Group:      Multimedia/Libraries
 License:    Apache-2.0 and PD
index 5b9ea444a1ffb1b70b7830885a57ea530925e6d1..b1bf3574e613fdeb8a9777ea3ae4a6bbd3b79a71 100755 (executable)
@@ -65,12 +65,12 @@ int _media_thumb_general(const char *origin_path, const char *thumb_path, int th
        unsigned int width = 0;
        unsigned int height = 0;
        size_t size = 0;
-       mm_util_magick_format format = MM_UTIL_IMG_FMT_NUM;
+       mm_util_color_format_e format = MM_UTIL_COLOR_NUM;
 
        if (thumb_path != NULL) {
                err = mm_util_resize_P_P(origin_path, thumb_width, thumb_height, thumb_path);
        } else {
-               err = mm_util_resize_P_B(origin_path, thumb_width, thumb_height, MM_UTIL_IMG_FMT_BGRA8888, &img);
+               err = mm_util_resize_P_B(origin_path, thumb_width, thumb_height, MM_UTIL_COLOR_BGRA, &img);
                if (err != MM_UTIL_ERROR_NONE) {
                        thumb_err("mm_util_resize_P_B failed : %d", err);
                        return MS_MEDIA_ERR_INTERNAL;
@@ -154,7 +154,7 @@ int _media_thumb_video(const char *origin_path, const char *thumb_path, int thum
        size_t res_size = 0;
        unsigned int res_width = 0;
        unsigned int res_height = 0;
-       mm_util_magick_format res_format;
+       mm_util_color_format_e res_format;
 
        /* Get Content Tag attribute for orientation */
        err = mm_file_create_tag_attrs(&tag, origin_path);
@@ -245,7 +245,7 @@ int _media_thumb_video(const char *origin_path, const char *thumb_path, int thum
 
                thumb_dbg("Origin:W[%d] H[%d] Proper:W[%d] H[%d]", width, height, thumb_width, thumb_height);
 
-               err = mm_util_create_handle(&img, (unsigned char *)frame, width, height, size, MM_UTIL_IMG_FMT_RGB888);
+               err = mm_util_create_handle(&img, (unsigned char *)frame, width, height, size, MM_UTIL_COLOR_RGB24);
                if (width > thumb_width || height > thumb_height) {
                        if (rot_type != MM_UTIL_ROTATE_0) {
                                if (STRING_VALID(thumb_path)) {