Home
last modified time | relevance | path

Searched refs:interlace_type (Results 1 – 24 of 24) sorted by relevance

/external/libpng/contrib/gregbook/
Dwritepng.c88 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()
/external/libpng/contrib/libtests/
Dpngvalid.c381 int bit_depth, unsigned int npalette, int interlace_type, in standard_name() argument
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() argument
4111 check_interlace_type(interlace_type); in make_transform_image()
[all …]
/external/libpng/contrib/oss-fuzz/
Dlibpng_read_fuzzer.cc148 int bit_depth, color_type, interlace_type, compression_type; in LLVMFuzzerTestOneInput() local
152 &height, &bit_depth, &color_type, &interlace_type, in LLVMFuzzerTestOneInput()
/external/libpng/
Dexample.c279 int bit_depth, color_type, interlace_type;
291 int bit_depth, color_type, interlace_type;
366 &interlace_type, NULL, NULL);
Dpngget.c100 return info_ptr->interlace_type; in png_get_interlace_type()
827 int *color_type, int *interlace_type, int *compression_type, in png_get_IHDR() argument
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()
Dpnginfo.h70 png_byte interlace_type; /* One of PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */ member
Dpngwutil.c674 int interlace_type) in png_write_IHDR() argument
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()
Dpngset.c256 int color_type, int interlace_type, int compression_type, in png_set_IHDR() argument
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()
Dpngtest.c1088 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()
Dpngrutil.c844 int interlace_type; in png_handle_IHDR() local
866 interlace_type = buf[12]; in png_handle_IHDR()
872 png_ptr->interlaced = (png_byte)interlace_type; in png_handle_IHDR()
908 color_type, interlace_type, compression_type, filter_type); in png_handle_IHDR()
Dpng.c2549 int color_type, int interlace_type, int compression_type,
2645 if (interlace_type >= PNG_INTERLACE_LAST)
Dpngpriv.h1713 int color_type, int interlace_type, int compression_type,
Dlibpng-manual.txt1258 &bit_depth, &color_type, &interlace_type,
1290 interlace_type - (PNG_INTERLACE_NONE or
1303 interlace_type, compression_type, or filter_method can
1325 interlace_type = png_get_interlace_type(png_ptr,
2226 interlace_type == PNG_INTERLACE_NONE), this is simple:
2239 If the file is interlaced (interlace_type != 0 in the IHDR chunk), things
2241 interlacing type for PNG is (interlace_type == PNG_INTERLACE_ADAM7);
2262 if (interlace_type == PNG_INTERLACE_ADAM7)
2956 bit_depth, color_type, interlace_type,
2989 interlace_type - PNG_INTERLACE_NONE or
[all …]
Dpngwrite.c111 info_ptr->interlace_type in png_write_info_before_PLTE()
/external/libjpeg-turbo/
Drdtarga.c333 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()
/external/pdfium/third_party/libpng16/
Dpngget.c100 return info_ptr->interlace_type; in png_get_interlace_type()
827 int *color_type, int *interlace_type, int *compression_type, in png_get_IHDR() argument
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()
Dpnginfo.h70 png_byte interlace_type; /* One of PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */ member
Dpngwutil.c674 int interlace_type) in png_write_IHDR() argument
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()
Dpngset.c256 int color_type, int interlace_type, int compression_type, in png_set_IHDR() argument
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()
Dpngrutil.c844 int interlace_type; in png_handle_IHDR() local
866 interlace_type = buf[12]; in png_handle_IHDR()
872 png_ptr->interlaced = (png_byte)interlace_type; in png_handle_IHDR()
908 color_type, interlace_type, compression_type, filter_type); in png_handle_IHDR()
Dpng.c2550 int color_type, int interlace_type, int compression_type,
2646 if (interlace_type >= PNG_INTERLACE_LAST)
Dpngpriv.h1713 int color_type, int interlace_type, int compression_type,
Dpngwrite.c111 info_ptr->interlace_type in png_write_info_before_PLTE()
/external/pdfium/testing/image_diff/
Dimage_diff_png.cpp181 int bit_depth, color_type, interlace_type, compression_type; in DecodeInfoCallback() local
185 &interlace_type, &compression_type, &filter_type); in DecodeInfoCallback()
230 if (interlace_type == PNG_INTERLACE_ADAM7) in DecodeInfoCallback()