Home
last modified time | relevance | path

Searched refs:compression_type (Results 1 – 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/libpng/
Dpngget.c112 return info_ptr->compression_type; in png_get_compression_type()
525 png_charpp name, int *compression_type, in png_get_iCCP() argument
539 *compression_type = (int)info_ptr->iccp_compression; in png_get_iCCP()
579 int *color_type, int *interlace_type, int *compression_type, in png_get_IHDR() argument
594 if (compression_type != NULL) in png_get_IHDR()
595 *compression_type = info_ptr->compression_type; in png_get_IHDR()
610 info_ptr->compression_type, info_ptr->filter_type); in png_get_IHDR()
Dpngset.c229 int color_type, int interlace_type, int compression_type, in png_set_IHDR() argument
241 info_ptr->compression_type = (png_byte)compression_type; in png_set_IHDR()
247 info_ptr->compression_type, info_ptr->filter_type); in png_set_IHDR()
595 png_charp name, int compression_type, in png_set_iCCP() argument
633 info_ptr->iccp_compression = (png_byte)compression_type; in png_set_iCCP()
Dpngrutil.c445 int bit_depth, color_type, compression_type, filter_type; in png_handle_IHDR() local
466 compression_type = buf[10]; in png_handle_IHDR()
479 png_ptr->compression_type = (png_byte)compression_type; in png_handle_IHDR()
510 color_type, interlace_type, compression_type, filter_type); in png_handle_IHDR()
1053 png_byte compression_type; in png_handle_iCCP() local
1121 compression_type = *profile++; in png_handle_iCCP()
1122 if (compression_type) in png_handle_iCCP()
1125 compression_type = 0x00; /* Reset it to zero (libpng-1.0.6 through 1.0.8 in png_handle_iCCP()
1130 png_decompress_chunk(png_ptr, compression_type, in png_handle_iCCP()
1162 compression_type, png_ptr->chunkdata + prefix_length, profile_length); in png_handle_iCCP()
Dpngwutil.c393 int bit_depth, int color_type, int compression_type, int filter_type, in png_write_IHDR() argument
449 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_write_IHDR()
452 compression_type = PNG_COMPRESSION_TYPE_BASE; in png_write_IHDR()
496 png_ptr->compression_type = (png_byte)compression_type; in png_write_IHDR()
512 buf[10] = (png_byte)compression_type; in png_write_IHDR()
651 png_ptr->compression_type == PNG_COMPRESSION_TYPE_BASE) in png_write_IDAT()
769 png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type, in png_write_iCCP() argument
792 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_write_iCCP()
Dpng.c962 int color_type, int interlace_type, int compression_type, in png_check_IHDR() argument
1050 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_check_IHDR()
Dpng.h825 png_byte compression_type PNG_DEPSTRUCT; /* must be PNG_COMPRESSION_TYPE_BASE (IHDR) */
1528 png_byte compression_type PNG_DEPSTRUCT;
2472 png_infop info_ptr, png_charpp name, int *compression_type,
2479 png_infop info_ptr, png_charp name, int compression_type,
3287 png_charp name, int compression_type,
3776 int color_type, int interlace_type, int compression_type,
Dpngwrite.c50 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type, in png_write_info_before_PLTE()
/external/libpng/
Dpngget.c112 return info_ptr->compression_type; in png_get_compression_type()
525 png_charpp name, int *compression_type, in png_get_iCCP() argument
539 *compression_type = (int)info_ptr->iccp_compression; in png_get_iCCP()
579 int *color_type, int *interlace_type, int *compression_type, in png_get_IHDR() argument
594 if (compression_type != NULL) in png_get_IHDR()
595 *compression_type = info_ptr->compression_type; in png_get_IHDR()
610 info_ptr->compression_type, info_ptr->filter_type); in png_get_IHDR()
Dpngtest.c907 int interlace_type, compression_type, filter_type; in test_one_file() local
910 &color_type, &interlace_type, &compression_type, &filter_type)) in test_one_file()
914 color_type, interlace_type, compression_type, filter_type); in test_one_file()
916 color_type, PNG_INTERLACE_NONE, compression_type, filter_type); in test_one_file()
970 int compression_type; in test_one_file() local
972 if (png_get_iCCP(read_ptr, read_info_ptr, &name, &compression_type, in test_one_file()
975 png_set_iCCP(write_ptr, write_info_ptr, name, compression_type, in test_one_file()
Dpngset.c229 int color_type, int interlace_type, int compression_type, in png_set_IHDR() argument
241 info_ptr->compression_type = (png_byte)compression_type; in png_set_IHDR()
247 info_ptr->compression_type, info_ptr->filter_type); in png_set_IHDR()
595 png_charp name, int compression_type, in png_set_iCCP() argument
633 info_ptr->iccp_compression = (png_byte)compression_type; in png_set_iCCP()
Dpngrutil.c461 int bit_depth, color_type, compression_type, filter_type; in png_handle_IHDR() local
482 compression_type = buf[10]; in png_handle_IHDR()
495 png_ptr->compression_type = (png_byte)compression_type; in png_handle_IHDR()
526 color_type, interlace_type, compression_type, filter_type); in png_handle_IHDR()
1069 png_byte compression_type; in png_handle_iCCP() local
1137 compression_type = *profile++; in png_handle_iCCP()
1138 if (compression_type) in png_handle_iCCP()
1141 compression_type = 0x00; /* Reset it to zero (libpng-1.0.6 through 1.0.8 in png_handle_iCCP()
1146 png_decompress_chunk(png_ptr, compression_type, in png_handle_iCCP()
1178 compression_type, png_ptr->chunkdata + prefix_length, profile_length); in png_handle_iCCP()
Dpngwutil.c393 int bit_depth, int color_type, int compression_type, int filter_type, in png_write_IHDR() argument
449 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_write_IHDR()
452 compression_type = PNG_COMPRESSION_TYPE_BASE; in png_write_IHDR()
496 png_ptr->compression_type = (png_byte)compression_type; in png_write_IHDR()
512 buf[10] = (png_byte)compression_type; in png_write_IHDR()
651 png_ptr->compression_type == PNG_COMPRESSION_TYPE_BASE) in png_write_IDAT()
769 png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type, in png_write_iCCP() argument
792 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_write_iCCP()
Dpng.c932 int color_type, int interlace_type, int compression_type, in png_check_IHDR() argument
1020 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_check_IHDR()
Dpng.h872 png_byte compression_type PNG_DEPSTRUCT; /* must be PNG_COMPRESSION_TYPE_BASE (IHDR) */
1581 png_byte compression_type PNG_DEPSTRUCT;
2544 png_infop info_ptr, png_charpp name, int *compression_type,
2551 png_infop info_ptr, png_charp name, int compression_type,
3371 png_charp name, int compression_type,
3865 int color_type, int interlace_type, int compression_type,
Dlibpng-1.2.46.txt526 &compression_type, &filter_method);
559 compression_type - (must be PNG_COMPRESSION_TYPE_BASE
564 Any or all of interlace_type, compression_type, or
585 compression_type = png_get_compression_type(png_ptr,
635 &compression_type, &profile, &proflen);
1827 compression_type, filter_method)
1857 compression_type - (must be
1870 If you wish, you can reset the compression_type, interlace_type, or
1913 png_set_iCCP(png_ptr, info_ptr, name, compression_type,
Dlibpng-1.2.44.txt526 &compression_type, &filter_method);
559 compression_type - (must be PNG_COMPRESSION_TYPE_BASE
564 Any or all of interlace_type, compression_type, or
585 compression_type = png_get_compression_type(png_ptr,
635 &compression_type, &profile, &proflen);
1827 compression_type, filter_method)
1857 compression_type - (must be
1870 If you wish, you can reset the compression_type, interlace_type, or
1913 png_set_iCCP(png_ptr, info_ptr, name, compression_type,
Dpngwrite.c50 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type, in png_write_info_before_PLTE()
/external/qemu/distrib/libpng-1.2.19/
Dpngget.c112 return info_ptr->compression_type; in png_get_compression_type()
490 png_charpp name, int *compression_type, in png_get_iCCP() argument
502 *compression_type = (int)info_ptr->iccp_compression; in png_get_iCCP()
541 int *color_type, int *interlace_type, int *compression_type, in png_get_IHDR() argument
557 if (compression_type != NULL) in png_get_IHDR()
558 *compression_type = info_ptr->compression_type; in png_get_IHDR()
Dpngset.c262 int color_type, int interlace_type, int compression_type, in png_set_IHDR() argument
307 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_set_IHDR()
342 info_ptr->compression_type = (png_byte)compression_type; in png_set_IHDR()
677 png_charp name, int compression_type, in png_set_iCCP() argument
710 info_ptr->iccp_compression = (png_byte)compression_type; in png_set_iCCP()
Dpngwutil.c377 int bit_depth, int color_type, int compression_type, int filter_type, in png_write_IHDR() argument
429 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_write_IHDR()
432 compression_type = PNG_COMPRESSION_TYPE_BASE; in png_write_IHDR()
476 png_ptr->compression_type = (png_byte)compression_type; in png_write_IHDR()
492 buf[10] = (png_byte)compression_type; in png_write_IHDR()
617 png_ptr->compression_type == PNG_COMPRESSION_TYPE_BASE) in png_write_IDAT()
728 png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type, in png_write_iCCP() argument
754 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_write_iCCP()
Dpngrutil.c352 int bit_depth, color_type, compression_type, filter_type; in png_handle_IHDR() local
373 compression_type = buf[10]; in png_handle_IHDR()
386 png_ptr->compression_type = (png_byte)compression_type; in png_handle_IHDR()
414 color_type, interlace_type, compression_type, filter_type); in png_handle_IHDR()
991 png_byte compression_type; in png_handle_iCCP() local
1055 compression_type = *profile++; in png_handle_iCCP()
1056 if (compression_type) in png_handle_iCCP()
1059 compression_type=0x00; /* Reset it to zero (libpng-1.0.6 through 1.0.8 in png_handle_iCCP()
1064 chunkdata = png_decompress_chunk(png_ptr, compression_type, chunkdata, in png_handle_iCCP()
1093 png_set_iCCP(png_ptr, info_ptr, chunkdata, compression_type, in png_handle_iCCP()
Dpng.h709 png_byte compression_type; /* must be PNG_COMPRESSION_TYPE_BASE (IHDR) */ member
1396 png_byte compression_type; member
2319 png_infop info_ptr, png_charpp name, int *compression_type,
2326 png_infop info_ptr, png_charp name, int compression_type,
3066 png_charp name, int compression_type,
/external/chromium_org/third_party/ots/src/
Dwoff2.cc750 const uint8_t* src_buf, size_t src_size, uint32_t compression_type) { in Woff2Uncompress() argument
751 if (compression_type == kCompressionTypeGzip) { in Woff2Uncompress()
759 } else if (compression_type == kCompressionTypeLzma) { in Woff2Uncompress()
966 uint32_t compression_type = flags & kCompressionTypeMask; in ConvertWOFF2ToTTF() local
972 } else if (compression_type == kCompressionTypeNone) { in ConvertWOFF2ToTTF()
995 src_buf, table->src_length, compression_type)) { in ConvertWOFF2ToTTF()
/external/chromium_org/tools/imagediff/
Dimage_diff_png.cc156 int bit_depth, color_type, interlace_type, compression_type; in DecodeInfoCallback() local
160 &interlace_type, &compression_type, &filter_type); in DecodeInfoCallback()
/external/chromium_org/ui/gfx/codec/
Dpng_codec.cc167 int bit_depth, color_type, interlace_type, compression_type; in DecodeInfoCallback() local
171 &interlace_type, &compression_type, &filter_type); in DecodeInfoCallback()

12