| 4826 | #endif /*LODEPNG_COMPILE_DISK*/ |
| 4827 | |
| 4828 | void lodepng_decoder_settings_init(LodePNGDecoderSettings* settings) |
| 4829 | { |
| 4830 | settings->color_convert = 1; |
| 4831 | #ifdef LODEPNG_COMPILE_ANCILLARY_CHUNKS |
| 4832 | settings->read_text_chunks = 1; |
| 4833 | settings->remember_unknown_chunks = 0; |
| 4834 | #endif /*LODEPNG_COMPILE_ANCILLARY_CHUNKS*/ |
| 4835 | settings->ignore_crc = 0; |
| 4836 | settings->fix_png = 0; |
| 4837 | lodepng_decompress_settings_init(&settings->zlibsettings); |
| 4838 | } |
| 4839 | |
| 4840 | #endif /*LODEPNG_COMPILE_DECODER*/ |
| 4841 |
no test coverage detected