/third_party/skia/third_party/externals/libpng/contrib/gregbook/ |
H A D | writepng.c | 88 int color_type, interlace_type; in writepng_init() local 153 interlace_type = mainprog_ptr->interlaced? PNG_INTERLACE_ADAM7 : in writepng_init() 157 mainprog_ptr->sample_depth, color_type, interlace_type, in writepng_init()
|
/third_party/skia/third_party/externals/libpng/contrib/libtests/ |
H A D | pngvalid.c | 381 int bit_depth, unsigned int npalette, int interlace_type, in standard_name() 399 if (interlace_type != PNG_INTERLACE_NONE) in standard_name() 2434 int interlace_type :9; /* int, but must store '1' */ member 2534 pm->interlace_type = PNG_INTERLACE_NONE; in modifier_init() 3738 npasses_from_interlace_type(png_const_structp pp, int interlace_type) in npasses_from_interlace_type() argument 3740 switch (interlace_type) in npasses_from_interlace_type() 3988 check_interlace_type(int const interlace_type) in check_interlace_type() argument 3994 if (interlace_type != PNG_INTERLACE_NONE) in check_interlace_type() 4107 int interlace_type, png_const_charp name) in make_transform_image() 4111 check_interlace_type(interlace_type); in make_transform_image() 380 standard_name(char *buffer, size_t bufsize, size_t pos, png_byte colour_type, int bit_depth, unsigned int npalette, int interlace_type, png_uint_32 w, png_uint_32 h, int do_interlace) standard_name() argument 4105 make_transform_image(png_store* const ps, png_byte const colour_type, png_byte const bit_depth, unsigned int palette_number, int interlace_type, png_const_charp name) make_transform_image() argument 4284 int interlace_type; make_transform_images() local 4324 make_size_image(png_store* const ps, png_byte const colour_type, png_byte const bit_depth, int const interlace_type, png_uint_32 const w, png_uint_32 const h, int const do_interlace) make_size_image() argument 4639 make_error(png_store* const ps, png_byte const colour_type, png_byte bit_depth, int interlace_type, int test, png_const_charp name) make_error() argument 4783 int interlace_type; make_errors() local 4944 png_byte interlace_type; global() member 5820 int interlace_type; test_standard() local 10553 gamma_threshold_test(png_modifier *pm, png_byte colour_type, png_byte bit_depth, int interlace_type, double file_gamma, double screen_gamma) gamma_threshold_test() argument 10609 gamma_transform_test(png_modifier *pm, png_byte colour_type, png_byte bit_depth, int palette_number, int interlace_type, const double file_gamma, const double screen_gamma, png_byte sbit, int use_input_precision, int scale16) gamma_transform_test() argument 10770 gamma_composition_test(png_modifier *pm, png_byte colour_type, png_byte bit_depth, int palette_number, int interlace_type, const double file_gamma, const double screen_gamma, int use_input_precision, int do_background, int expand_16) gamma_composition_test() argument [all...] |
/third_party/skia/third_party/externals/libpng/contrib/oss-fuzz/ |
H A D | libpng_read_fuzzer.cc | 148 int bit_depth, color_type, interlace_type, compression_type; in LLVMFuzzerTestOneInput() local 152 &height, &bit_depth, &color_type, &interlace_type, in LLVMFuzzerTestOneInput()
|
/third_party/ffmpeg/libavcodec/ |
H A D | mmaldec.c | 284 MMAL_PARAMETER_VIDEO_INTERLACE_TYPE_T interlace_type; in ffmal_update_format() local 311 interlace_type.hdr.id = MMAL_PARAMETER_VIDEO_INTERLACE_TYPE; in ffmal_update_format() 312 interlace_type.hdr.size = sizeof(MMAL_PARAMETER_VIDEO_INTERLACE_TYPE_T); in ffmal_update_format() 313 status = mmal_port_parameter_get(decoder->output[0], &interlace_type.hdr); in ffmal_update_format() 317 ctx->interlaced_frame = (interlace_type.eMode != MMAL_InterlaceProgressive); in ffmal_update_format() 318 ctx->top_field_first = (interlace_type.eMode == MMAL_InterlaceFieldsInterleavedUpperFirst); in ffmal_update_format()
|
H A D | pngdec.c | 86 int interlace_type; member 337 if (s->interlace_type) { in percent_missing() 350 if (!s->interlace_type) { in png_handle_row() 606 s->interlace_type = bytestream2_get_byte(gb); in decode_ihdr_chunk() 610 "compression_type=%d filter_type=%d interlace_type=%d\n", in decode_ihdr_chunk() 612 s->compression_type, s->filter_type, s->interlace_type); in decode_ihdr_chunk() 752 p->interlaced_frame = !!s->interlace_type; in decode_idat_chunk() 757 if (!s->interlace_type) { in decode_idat_chunk() 776 if (s->interlace_type || in decode_idat_chunk() 1658 pdst->interlace_type in update_thread_context() [all...] |
/third_party/cups-filters/cupsfilters/ |
H A D | image-png.c | 48 interlace_type, /* Interlace type */ in _cupsImageReadPNG() local 82 &interlace_type, &compression_type, &filter_type); in _cupsImageReadPNG()
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | rdtarga.c | 333 int idlen, cmaptype, subtype, flags, interlace_type, components; in start_input_tga() local 358 interlace_type = flags >> 6; /* bits 6/7 are interlace code */ in start_input_tga() 363 interlace_type != 0 || /* currently don't allow interlaced image */ in start_input_tga()
|
/third_party/skia/third_party/externals/libpng/ |
H A D | pnginfo.h | 70 png_byte interlace_type; /* One of PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */ member
|
H A D | pngget.c | 100 return info_ptr->interlace_type; in png_get_interlace_type() 827 int *color_type, int *interlace_type, int *compression_type, in png_get_IHDR() 853 if (interlace_type != NULL) in png_get_IHDR() 854 *interlace_type = info_ptr->interlace_type; in png_get_IHDR() 862 info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type, in png_get_IHDR() 825 png_get_IHDR(png_const_structrp png_ptr, png_const_inforp info_ptr, png_uint_32 *width, png_uint_32 *height, int *bit_depth, int *color_type, int *interlace_type, int *compression_type, int *filter_type) png_get_IHDR() argument
|
H A D | pngwutil.c | 674 int interlace_type) in png_write_IHDR() 784 if (interlace_type != PNG_INTERLACE_NONE && in png_write_IHDR() 785 interlace_type != PNG_INTERLACE_ADAM7) in png_write_IHDR() 788 interlace_type = PNG_INTERLACE_ADAM7; in png_write_IHDR() 791 interlace_type=PNG_INTERLACE_NONE; in png_write_IHDR() 797 png_ptr->interlaced = (png_byte)interlace_type; in png_write_IHDR() 819 buf[12] = (png_byte)interlace_type; in png_write_IHDR() 672 png_write_IHDR(png_structrp png_ptr, png_uint_32 width, png_uint_32 height, int bit_depth, int color_type, int compression_type, int filter_type, int interlace_type) png_write_IHDR() argument
|
H A D | pngset.c | 256 int color_type, int interlace_type, int compression_type, in png_set_IHDR() 270 info_ptr->interlace_type = (png_byte)interlace_type; in png_set_IHDR() 273 info_ptr->bit_depth, info_ptr->color_type, info_ptr->interlace_type, in png_set_IHDR() 254 png_set_IHDR(png_const_structrp png_ptr, png_inforp info_ptr, png_uint_32 width, png_uint_32 height, int bit_depth, int color_type, int interlace_type, int compression_type, int filter_type) png_set_IHDR() argument
|
H A D | pngtest.c | 1088 int interlace_type, compression_type, filter_type; in test_one_file() local 1091 &color_type, &interlace_type, &compression_type, &filter_type) != 0) in test_one_file() 1094 color_type, interlace_type, compression_type, filter_type); in test_one_file() 1098 switch (interlace_type) in test_one_file()
|
H A D | pngrutil.c | 843 int interlace_type; in png_handle_IHDR() local 865 interlace_type = buf[12]; in png_handle_IHDR() 871 png_ptr->interlaced = (png_byte)interlace_type; in png_handle_IHDR() 907 color_type, interlace_type, compression_type, filter_type); in png_handle_IHDR()
|
H A D | png.c | 2549 int color_type, int interlace_type, int compression_type, in png_check_IHDR() 2645 if (interlace_type >= PNG_INTERLACE_LAST) in png_check_IHDR() 2547 png_check_IHDR(png_const_structrp png_ptr, png_uint_32 width, png_uint_32 height, int bit_depth, int color_type, int interlace_type, int compression_type, int filter_type) png_check_IHDR() argument
|
H A D | pngpriv.h | 1745 int color_type, int interlace_type, int compression_type,
|
H A D | pngwrite.c | 111 info_ptr->interlace_type in png_write_info_before_PLTE()
|