| 4676 | #endif /*LODEPNG_COMPILE_DISK*/ |
| 4677 | |
| 4678 | void lodepng_decoder_settings_init(LodePNGDecoderSettings* settings) |
| 4679 | { |
| 4680 | settings->color_convert = 1; |
| 4681 | #ifdef LODEPNG_COMPILE_ANCILLARY_CHUNKS |
| 4682 | settings->read_text_chunks = 1; |
| 4683 | settings->remember_unknown_chunks = 0; |
| 4684 | #endif /*LODEPNG_COMPILE_ANCILLARY_CHUNKS*/ |
| 4685 | settings->ignore_crc = 0; |
| 4686 | lodepng_decompress_settings_init(&settings->zlibsettings); |
| 4687 | } |
| 4688 | |
| 4689 | #endif /*LODEPNG_COMPILE_DECODER*/ |
| 4690 |
no test coverage detected