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;
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);
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)) {