Home | History | Annotate | Download | only in coders

Lines Matching refs:configure

235     configure;
238 *magick_restrict webp_image = &configure.output;
241 *magick_restrict features = &configure.input;
260 if (WebPInitDecoderConfig(&configure) == 0)
296 webp_status=WebPDecode(stream,length,&configure);
530 configure;
552 if ((WebPPictureInit(&picture) == 0) || (WebPConfigInit(&configure) == 0))
565 configure.quality=(float) image->quality;
567 configure.lossless=1;
570 configure.lossless=(int) ParseCommandOption(MagickBooleanOptions,
574 configure.method=StringToInteger(value);
579 configure.image_hint=WEBP_HINT_DEFAULT;
581 configure.image_hint=WEBP_HINT_PHOTO;
583 configure.image_hint=WEBP_HINT_PICTURE;
586 configure.image_hint=WEBP_HINT_GRAPH;
591 configure.target_size=StringToInteger(value);
594 configure.target_PSNR=(float) StringToDouble(value,(char **) NULL);
597 configure.segments=StringToInteger(value);
600 configure.sns_strength=StringToInteger(value);
603 configure.filter_strength=StringToInteger(value);
606 configure.filter_sharpness=StringToInteger(value);
609 configure.filter_type=StringToInteger(value);
612 configure.autofilter=(int) ParseCommandOption(MagickBooleanOptions,
616 configure.alpha_compression=StringToInteger(value);
619 configure.alpha_filtering=StringToInteger(value);
622 configure.alpha_quality=StringToInteger(value);
625 configure.pass=StringToInteger(value);
628 configure.show_compressed=StringToInteger(value);
631 configure.preprocessing=StringToInteger(value);
634 configure.partitions=StringToInteger(value);
637 configure.partition_limit=StringToInteger(value);
641 configure.emulate_jpeg_size=(int) ParseCommandOption(MagickBooleanOptions,
645 configure.low_memory=(int) ParseCommandOption(MagickBooleanOptions,
649 configure.thread_level=StringToInteger(value);
651 if (WebPValidateConfig(&configure) == 0)
691 webp_status=WebPEncode(&configure,&picture);