Searched refs:compression_type (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/third_party/libpng/
H A Dpngget.c112 return info_ptr->compression_type;
525 png_charpp name, int *compression_type,
539 *compression_type = (int)info_ptr->iccp_compression;
579 int *color_type, int *interlace_type, int *compression_type,
594 if (compression_type != NULL)
595 *compression_type = info_ptr->compression_type;
610 info_ptr->compression_type, info_ptr->filter_type);
524 png_get_iCCP(png_structp png_ptr, png_infop info_ptr, png_charpp name, int *compression_type, png_charpp profile, png_uint_32 *proflen) argument
577 png_get_IHDR(png_structp png_ptr, png_infop 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) argument
H A Dpngset.c229 int color_type, int interlace_type, int compression_type,
241 info_ptr->compression_type = (png_byte)compression_type;
247 info_ptr->compression_type, info_ptr->filter_type);
595 png_charp name, int compression_type,
633 info_ptr->iccp_compression = (png_byte)compression_type;
227 png_set_IHDR(png_structp png_ptr, png_infop 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) argument
594 png_set_iCCP(png_structp png_ptr, png_infop info_ptr, png_charp name, int compression_type, png_charp profile, png_uint_32 proflen) argument
H A Dpngrutil.c445 int bit_depth, color_type, compression_type, filter_type; local
466 compression_type = buf[10];
479 png_ptr->compression_type = (png_byte)compression_type;
510 color_type, interlace_type, compression_type, filter_type);
1053 png_byte compression_type; local
1121 compression_type = *profile++;
1122 if (compression_type)
1125 compression_type = 0x00; /* Reset it to zero (libpng-1.0.6 through 1.0.8
1130 png_decompress_chunk(png_ptr, compression_type,
[all...]
H A Dpngwutil.c393 int bit_depth, int color_type, int compression_type, int filter_type,
449 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
452 compression_type = PNG_COMPRESSION_TYPE_BASE;
496 png_ptr->compression_type = (png_byte)compression_type;
512 buf[10] = (png_byte)compression_type;
651 png_ptr->compression_type == PNG_COMPRESSION_TYPE_BASE)
769 png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type, argument
792 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
392 png_write_IHDR(png_structp 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) argument
H A Dpng.c962 int color_type, int interlace_type, int compression_type,
1050 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
960 png_check_IHDR(png_structp 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) argument
H A Dpng.h825 png_byte compression_type PNG_DEPSTRUCT; /* must be PNG_COMPRESSION_TYPE_BASE (IHDR) */
1528 png_byte compression_type PNG_DEPSTRUCT;
2295 /* Returns image compression_type. */
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,
H A Dpngwrite.c50 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type,
/external/libpng/
H A Dpngget.c112 return info_ptr->compression_type;
525 png_charpp name, int *compression_type,
539 *compression_type = (int)info_ptr->iccp_compression;
579 int *color_type, int *interlace_type, int *compression_type,
594 if (compression_type != NULL)
595 *compression_type = info_ptr->compression_type;
610 info_ptr->compression_type, info_ptr->filter_type);
524 png_get_iCCP(png_structp png_ptr, png_infop info_ptr, png_charpp name, int *compression_type, png_charpp profile, png_uint_32 *proflen) argument
577 png_get_IHDR(png_structp png_ptr, png_infop 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) argument
H A Dpngtest.c907 int interlace_type, compression_type, filter_type; local
910 &color_type, &interlace_type, &compression_type, &filter_type))
914 color_type, interlace_type, compression_type, filter_type);
916 color_type, PNG_INTERLACE_NONE, compression_type, filter_type);
970 int compression_type; local
972 if (png_get_iCCP(read_ptr, read_info_ptr, &name, &compression_type,
975 png_set_iCCP(write_ptr, write_info_ptr, name, compression_type,
H A Dpngset.c229 int color_type, int interlace_type, int compression_type,
241 info_ptr->compression_type = (png_byte)compression_type;
247 info_ptr->compression_type, info_ptr->filter_type);
595 png_charp name, int compression_type,
633 info_ptr->iccp_compression = (png_byte)compression_type;
227 png_set_IHDR(png_structp png_ptr, png_infop 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) argument
594 png_set_iCCP(png_structp png_ptr, png_infop info_ptr, png_charp name, int compression_type, png_charp profile, png_uint_32 proflen) argument
H A Dpngrutil.c461 int bit_depth, color_type, compression_type, filter_type; local
482 compression_type = buf[10];
495 png_ptr->compression_type = (png_byte)compression_type;
526 color_type, interlace_type, compression_type, filter_type);
1069 png_byte compression_type; local
1137 compression_type = *profile++;
1138 if (compression_type)
1141 compression_type = 0x00; /* Reset it to zero (libpng-1.0.6 through 1.0.8
1146 png_decompress_chunk(png_ptr, compression_type,
[all...]
H A Dpngwutil.c393 int bit_depth, int color_type, int compression_type, int filter_type,
449 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
452 compression_type = PNG_COMPRESSION_TYPE_BASE;
496 png_ptr->compression_type = (png_byte)compression_type;
512 buf[10] = (png_byte)compression_type;
651 png_ptr->compression_type == PNG_COMPRESSION_TYPE_BASE)
769 png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type, argument
792 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
392 png_write_IHDR(png_structp 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) argument
H A Dpng.c932 int color_type, int interlace_type, int compression_type,
1020 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
930 png_check_IHDR(png_structp 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) argument
H A Dpng.h872 png_byte compression_type PNG_DEPSTRUCT; /* must be PNG_COMPRESSION_TYPE_BASE (IHDR) */
1581 png_byte compression_type PNG_DEPSTRUCT;
2367 /* Returns image compression_type. */
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,
H A Dpngwrite.c50 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type,
/external/qemu/distrib/libpng-1.2.19/
H A Dpngget.c112 return info_ptr->compression_type;
490 png_charpp name, int *compression_type,
499 /* compression_type is a dummy so the API won't have to change
502 *compression_type = (int)info_ptr->iccp_compression;
541 int *color_type, int *interlace_type, int *compression_type,
557 if (compression_type != NULL)
558 *compression_type = info_ptr->compression_type;
489 png_get_iCCP(png_structp png_ptr, png_infop info_ptr, png_charpp name, int *compression_type, png_charpp profile, png_uint_32 *proflen) argument
539 png_get_IHDR(png_structp png_ptr, png_infop 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) argument
H A Dpngset.c262 int color_type, int interlace_type, int compression_type,
307 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
342 info_ptr->compression_type = (png_byte)compression_type;
677 png_charp name, int compression_type,
710 info_ptr->iccp_compression = (png_byte)compression_type;
260 png_set_IHDR(png_structp png_ptr, png_infop 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) argument
676 png_set_iCCP(png_structp png_ptr, png_infop info_ptr, png_charp name, int compression_type, png_charp profile, png_uint_32 proflen) argument
H A Dpngwutil.c377 int bit_depth, int color_type, int compression_type, int filter_type,
429 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
432 compression_type = PNG_COMPRESSION_TYPE_BASE;
476 png_ptr->compression_type = (png_byte)compression_type;
492 buf[10] = (png_byte)compression_type;
617 png_ptr->compression_type == PNG_COMPRESSION_TYPE_BASE)
728 png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type, argument
754 if (compression_type != PNG_COMPRESSION_TYPE_BASE)
376 png_write_IHDR(png_structp 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) argument
H A Dpngrutil.c352 int bit_depth, color_type, compression_type, filter_type; local
373 compression_type = buf[10];
386 png_ptr->compression_type = (png_byte)compression_type;
414 color_type, interlace_type, compression_type, filter_type);
991 png_byte compression_type; local
1054 /* compression_type should always be zero */
1055 compression_type = *profile++;
1056 if (compression_type)
1059 compression_type
[all...]
H A Dpng.h709 png_byte compression_type; /* must be PNG_COMPRESSION_TYPE_BASE (IHDR) */ member in struct:png_info_struct
1396 png_byte compression_type; member in struct:png_struct_def
2142 /* Returns image compression_type. */
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,
H A Dpngwrite.c43 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type,
/external/chromium_org/third_party/ots/src/
H A Dwoff2.cc750 const uint8_t* src_buf, size_t src_size, uint32_t compression_type) {
751 if (compression_type == kCompressionTypeGzip) {
759 } else if (compression_type == kCompressionTypeLzma) {
966 uint32_t compression_type = flags & kCompressionTypeMask; local
972 } else if (compression_type == kCompressionTypeNone) {
995 src_buf, table->src_length, compression_type)) {
749 Woff2Uncompress(uint8_t* dst_buf, size_t dst_size, const uint8_t* src_buf, size_t src_size, uint32_t compression_type) argument
/external/chromium_org/tools/imagediff/
H A Dimage_diff_png.cc156 int bit_depth, color_type, interlace_type, compression_type; local
160 &interlace_type, &compression_type, &filter_type);
/external/chromium_org/ui/gfx/codec/
H A Dpng_codec.cc167 int bit_depth, color_type, interlace_type, compression_type; local
171 &interlace_type, &compression_type, &filter_type);

Completed in 617 milliseconds