Skip to content

Commit

Permalink
eliminate C compiler exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed Mar 21, 2021
1 parent 54c04fb commit 8531905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coders/heic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 1044,7 @@ static MagickBooleanType WriteHEICImage(const ImageInfo *image_info,
lossless;

colorspace=heif_colorspace_YCbCr;
lossless=image_info->quality == 100;
lossless=image_info->quality == 100 ? MagickTrue : MagickFalse;
chroma=lossless ? heif_chroma_444 : heif_chroma_420;


Expand Down

0 comments on commit 8531905

Please sign in to comment.