Home
last modified time | relevance | path

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

/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,
Dpngwrite.c43 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type, in png_write_info_before_PLTE()
/external/libpng/
Dpngget.c111 return info_ptr->compression_type; in png_get_compression_type()
515 png_charpp name, int *compression_type, in png_get_iCCP() argument
528 *compression_type = (int)info_ptr->iccp_compression; in png_get_iCCP()
567 int *color_type, int *interlace_type, int *compression_type, in png_get_IHDR() argument
586 if (compression_type != NULL) in png_get_IHDR()
587 *compression_type = info_ptr->compression_type; in png_get_IHDR()
Dpngtest.c896 int interlace_type, compression_type, filter_type; in test_one_file() local
899 &color_type, &interlace_type, &compression_type, &filter_type)) in test_one_file()
903 color_type, interlace_type, compression_type, filter_type); in test_one_file()
905 color_type, PNG_INTERLACE_NONE, compression_type, filter_type); in test_one_file()
959 int compression_type; in test_one_file() local
961 if (png_get_iCCP(read_ptr, read_info_ptr, &name, &compression_type, in test_one_file()
964 png_set_iCCP(write_ptr, write_info_ptr, name, compression_type, in test_one_file()
Dpngset.c220 int color_type, int interlace_type, int compression_type, in png_set_IHDR() argument
265 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_set_IHDR()
300 info_ptr->compression_type = (png_byte)compression_type; in png_set_IHDR()
650 png_charp name, int compression_type, in png_set_iCCP() argument
686 info_ptr->iccp_compression = (png_byte)compression_type; in png_set_iCCP()
Dpngrutil.c402 int bit_depth, color_type, compression_type, filter_type; in png_handle_IHDR() local
423 compression_type = buf[10]; in png_handle_IHDR()
436 png_ptr->compression_type = (png_byte)compression_type; in png_handle_IHDR()
467 color_type, interlace_type, compression_type, filter_type); in png_handle_IHDR()
1008 png_byte compression_type; in png_handle_iCCP() local
1076 compression_type = *profile++; in png_handle_iCCP()
1077 if (compression_type) in png_handle_iCCP()
1080 compression_type = 0x00; /* Reset it to zero (libpng-1.0.6 through 1.0.8 in png_handle_iCCP()
1085 png_decompress_chunk(png_ptr, compression_type, in png_handle_iCCP()
1117 compression_type, png_ptr->chunkdata + prefix_length, profile_length); in png_handle_iCCP()
Dpngwutil.c390 int bit_depth, int color_type, int compression_type, int filter_type, in png_write_IHDR() argument
444 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_write_IHDR()
447 compression_type = PNG_COMPRESSION_TYPE_BASE; in png_write_IHDR()
491 png_ptr->compression_type = (png_byte)compression_type; in png_write_IHDR()
507 buf[10] = (png_byte)compression_type; in png_write_IHDR()
642 png_ptr->compression_type == PNG_COMPRESSION_TYPE_BASE) in png_write_IDAT()
755 png_write_iCCP(png_structp png_ptr, png_charp name, int compression_type, in png_write_iCCP() argument
778 if (compression_type != PNG_COMPRESSION_TYPE_BASE) in png_write_iCCP()
Dpng.h795 png_byte compression_type; /* must be PNG_COMPRESSION_TYPE_BASE (IHDR) */ member
1487 png_byte compression_type; member
2430 png_infop info_ptr, png_charpp name, int *compression_type,
2437 png_infop info_ptr, png_charp name, int compression_type,
3239 png_charp name, int compression_type,
Dpngwrite.c46 info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type, in png_write_info_before_PLTE()
DCHANGES1248 Added compression_type to png_struct, and optimized the window size