mm_util_retvm_if((gif_image->width > 0) && (left + width > gif_image->width), MM_UTIL_ERROR_INVALID_PARAMETER, "Invalid parameter");
mm_util_retvm_if((gif_image->height > 0) && (top + height > gif_image->height), MM_UTIL_ERROR_INVALID_PARAMETER, "Invalid parameter");
- mm_util_info("%s l = %d, t = %d, w= %d, h = %d", __func__, left, top, width, height);
+ mm_util_info("l = %d, t = %d, w= %d, h = %d", left, top, width, height);
gif_image->image_desc.Left = left;
gif_image->image_desc.Top = top;
mm_util_retvm_if(gif_image == NULL, MM_UTIL_ERROR_INVALID_PARAMETER, "Invalid parameter");
- mm_util_info("%s mode = %d", __func__, disposal_mode);
+ mm_util_info("mode = %d", disposal_mode);
gif_image->graphic_control_block.DisposalMode = (int)disposal_mode;
mm_util_retvm_if(gif_image == NULL, MM_UTIL_ERROR_INVALID_PARAMETER, "Invalid parameter");
mm_util_retvm_if(delay_time < 0, MM_UTIL_ERROR_INVALID_PARAMETER, "Invalid parameter");
- mm_util_info("%s mode = %d", __func__, delay_time);
+ mm_util_info("delay_time = %d", delay_time);
gif_image->graphic_control_block.DelayTime = delay_time;
mm_util_retvm_if(number_of_colors == 0, MM_UTIL_ERROR_INVALID_PARAMETER, "Invalid parameter");
mm_util_retvm_if(colors == NULL, MM_UTIL_ERROR_INVALID_PARAMETER, "Invalid parameter");
- mm_util_info("%s ptr = %p, number_of_colors = %d", __func__, colors, number_of_colors);
+ mm_util_info("ptr = %p, number_of_colors = %d", colors, number_of_colors);
GifColorType *color_map = (GifColorType*)colors;
mm_util_retvm_if(image_data == NULL, MM_UTIL_ERROR_INVALID_PARAMETER, "Invalid parameter");
mm_util_retvm_if(size == 0, MM_UTIL_ERROR_INVALID_PARAMETER, "Invalid parameter");
- mm_util_info("%s ptr = %p, size = %lu", __func__, image_data, size);
+ mm_util_info("ptr = %p, size = %lu", image_data, size);
gif_image->image_data = (void *)image_data;
gif_image->image_data_size = size;
mm_util_retvm_if(height <= 0, MM_UTIL_ERROR_INVALID_PARAMETER, "Invalid parameter");
mm_util_retvm_if(gif_file->is_started, MM_UTIL_ERROR_INVALID_OPERATION, "Encoding has already started");
- mm_util_info("%s w = %d, h = %d", __func__, width, height);
+ mm_util_info("w = %d, h = %d", width, height);
gif_file->width = width;
gif_file->height = height;
mm_util_retvm_if(gif_file == NULL, MM_UTIL_ERROR_INVALID_PARAMETER, "Invalid parameter");
mm_util_retvm_if(gif_file->is_started, MM_UTIL_ERROR_INVALID_OPERATION, "Encoding has already started");
- mm_util_info("%s repeat = %d, count = %d", __func__, repeat_mode, repeat_count);
+ mm_util_info("repeat = %d, count = %d", repeat_mode, repeat_count);
gif_file->is_repeat = repeat_mode;
gif_file->repeat_count = repeat_count;