Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ OPENCL_INCLUDE_PATH := $(OPENCL_PATH)/qualcomm/include

LTDL_LIB_PATH := $(LOCAL_PATH)/libltdl-2.4.6

IMAGE_MAGICK_BASEDIR := ImageMagick-7.1.2-4
IMAGE_MAGICK_BASEDIR := ImageMagick-7.1.2-5
IMAGE_MAGICK := $(LOCAL_PATH)/$(IMAGE_MAGICK_BASEDIR)

JPEG_LIB_PATH := $(LOCAL_PATH)/libjpeg-turbo-2.0.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@ MagickExport Image *AcquireImage(const ImageInfo *image_info,
if ((flags & GreaterValue) != 0)
{
if ((double) image->delay > floor(geometry_info.rho+0.5))
image->delay=(size_t) CastDoubleToSsizeT(floor(geometry_info.rho+0.5));
image->delay=(size_t) CastDoubleToSsizeT(floor(geometry_info.rho+
0.5));
}
else
if ((flags & LessValue) != 0)
Expand All @@ -296,9 +297,11 @@ MagickExport Image *AcquireImage(const ImageInfo *image_info,
geometry_info.sigma+0.5));
}
else
image->delay=(size_t) CastDoubleToSsizeT(floor(geometry_info.rho+0.5));
image->delay=(size_t) CastDoubleToSsizeT(floor(geometry_info.rho+
0.5));
if ((flags & SigmaValue) != 0)
image->ticks_per_second=CastDoubleToSsizeT(floor(geometry_info.sigma+0.5));
image->ticks_per_second=CastDoubleToSsizeT(floor(geometry_info.sigma+
0.5));
}
option=GetImageOption(image_info,"dispose");
if (option != (const char *) NULL)
Expand Down
Loading
Loading