| 4880 | #endif /*LODEPNG_COMPILE_DISK*/ |
| 4881 | |
| 4882 | void lodepng_decoder_settings_init(LodePNGDecoderSettings* settings) |
| 4883 | { |
| 4884 | settings->color_convert = 1; |
| 4885 | #ifdef LODEPNG_COMPILE_ANCILLARY_CHUNKS |
| 4886 | settings->read_text_chunks = 1; |
| 4887 | settings->remember_unknown_chunks = 0; |
| 4888 | #endif /*LODEPNG_COMPILE_ANCILLARY_CHUNKS*/ |
| 4889 | settings->ignore_crc = 0; |
| 4890 | settings->ignore_critical = 0; |
| 4891 | settings->ignore_end = 0; |
| 4892 | lodepng_decompress_settings_init(&settings->zlibsettings); |
| 4893 | } |
| 4894 | |
| 4895 | #endif /*LODEPNG_COMPILE_DECODER*/ |
| 4896 |
no test coverage detected