From 84005f3beb854fdf47f6e7ad9c780a00240a6425 Mon Sep 17 00:00:00 2001 From: Jiyong Min Date: Thu, 8 Feb 2018 16:24:53 +0900 Subject: Updates color enums for refactoring of libmm-utility Change-Id: I81c17682bd9c921938128cefae747dcd389b5f09 --- packaging/libmedia-thumbnail.spec | 2 +- src/media-thumb-internal.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packaging/libmedia-thumbnail.spec b/packaging/libmedia-thumbnail.spec index 6e2b021..40df784 100644 --- a/packaging/libmedia-thumbnail.spec +++ b/packaging/libmedia-thumbnail.spec @@ -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 diff --git a/src/media-thumb-internal.c b/src/media-thumb-internal.c index 5b9ea44..b1bf357 100755 --- a/src/media-thumb-internal.c +++ b/src/media-thumb-internal.c @@ -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)) { -- cgit v1.2.3