961 Commits

Author SHA1 Message Date
Randy
9473c48e88 fuzz: fix sanity checks for spng_get_splt() 2021-07-28 16:41:18 +02:00
Randy
ada3824c2d test: check unknown chunk location 2021-07-28 16:41:18 +02:00
Randy
0abeec3d04 save location of unknown chunks, expose thru API 2021-07-28 16:41:18 +02:00
Randy
0a24cca91a update check_ihdr() with more specific error codes 2021-07-28 16:41:18 +02:00
Randy
2b336d7379 decode: keep bKGD high bits
the high bits should only be ignored when compositing against a background
2021-07-28 16:41:18 +02:00
Randy
4237d8b00d spng_set_bkgd(): dont copy unrelated values, keep high bits
also fixes an issue where the user's value was modified through the reference
2021-07-28 16:41:18 +02:00
Randy
94e15d6de3 encode: check for PLTE when it's required 2021-07-28 16:41:18 +02:00
Randy
3a19268519 fix scan-build warning 2021-07-28 16:41:18 +02:00
Randy
78f9c57cac fix oFFs writing (use write_s32()) 2021-07-28 16:41:18 +02:00
Randy
2aae14963e Initial encode support
* Encode support for all PNG formats, interlacing for >= 8-bit
* Initial chunk write support for most standard chunks
* Fixed spng_set_text(), spng_set_bkgd()
* Added spng_encode_image(), spng_get_png_buffer(), spng_set_unknown_chunks()
* Split up spng_decoded_image_size() internally
* check_png_keyword(): add length check
* read_ihdr(): set ctx->current_chunk, cleanup
* Set default image limits in spng_ctx_new2(), not the decoder

Testing
* Added test case to verify encoding against libpng
* Encoded PNG's that fail a roundtrip test are dumped to disk
* Cleaned up test case generation
2021-07-28 16:41:18 +02:00
Randy
0db82d5f6d refactor testsuite, compare chunk data 2021-07-28 16:41:18 +02:00
Randy
bd00bfd816 add spng_get_gama_int(), spng_set_gama_int() 2021-07-28 16:41:18 +02:00
Randy
da6a402244 bump version to v0.7.0-rc3 2021-07-28 16:41:18 +02:00
Randy
98008a94f3 docs: document SPNG_ARM 2021-07-28 16:41:18 +02:00
Randy
fb88873269 adapt NEON filter optimizations 2021-07-28 16:41:18 +02:00
Randy
4072359aab refactor indexed color decoding
reduced decode palette to 8 bits to improve compatibility with libpng optimizations
moved 8 -> 16 bit upscaling to the decode loop,
gamma correction is now a separate pass
2021-07-28 16:41:18 +02:00
Randy
1126a6ca2c paeth_arm(): remove abort()
circleci compiles with NEON optimizations as expected
2021-07-28 16:41:18 +02:00
Randy
87e515f165 initial circleci integration
also induce an error to confirm NEON optimizations are enabled
2021-07-28 16:41:18 +02:00
Randy
c3e0eec38f next release will be v0.7.0-rc2 2021-07-28 16:41:18 +02:00
Randy
32fa7d5441 test: improve workaround for libpng gamma correction bug
G16 -> RGB(A)8 with gamma correction is buggy with libpng,
skip the failing test cases instead of the whole file
2021-07-28 16:41:18 +02:00
Randy
5b620fc56a enable filter optimizations for arm64 2021-07-28 16:41:18 +02:00
Randy
f115d2887b oversize buffers used for defiltering
fixes issues with NEON optimizations
2021-07-28 16:41:18 +02:00
Randy
2f935c4724 fix indentation for arm neon optimizations 2021-07-28 16:41:18 +02:00
Randy
f8519195f7 fix spng_get_splt() 2021-07-28 16:41:18 +02:00
Randy
a335a797b7 read_scanline(): initialize next_filter 2021-07-28 16:41:18 +02:00
Randy
8ccba20e6a unknown chunk support, tests & docs 2021-07-28 16:41:18 +02:00
Randy
1e5c93f71e bump version to v0.7.0-rc1 2021-07-28 16:41:18 +02:00
Randy
952022a3f5 clean up up indentation for x86 optimizations 2021-07-28 16:41:18 +02:00
Randy
19e3475571 split off scanline read+defilter step to separate function 2021-07-28 16:41:18 +02:00
Randy
de6f83bc64 docs: add section on memory usage [skip-ci]
also moved notes on memory usage from usage.md
v0.6.3
2021-04-23 16:10:39 +02:00
Randy
573f2db93c
Expand decoder docs (#163) [skip-ci] 2021-04-16 20:24:01 +02:00
Randy
24110bb4a0 testsuite: improve messages [skip-ci] 2021-03-25 10:34:32 +01:00
Randy
eeb93f4da8
Improve non-critical error handling (#161) 2021-03-25 09:01:01 +01:00
Randy
6e22313aee
Cleanup for v0.6.3 (#158) 2021-03-24 16:45:17 +01:00
Randy
93b4789e07 update check_png_keyword() 2021-03-24 16:10:52 +01:00
Randy
944f54e519 fix msvc warnings 2021-03-24 15:33:54 +01:00
Randy
e73157808e read_non_idat_chunks(): cleanup 2021-03-24 15:32:35 +01:00
Randy
119b053215 read_and_check_crc(): fix typo, read chunk crc every time 2021-03-23 16:46:48 +01:00
Randy
24fe7ae27a decode: simplify crc action check 2021-03-23 16:03:47 +01:00
Randy
17a35105a6 spng_decode_scanline/row(): cleanup, add const qualifiers 2021-03-23 15:20:27 +01:00
Randy
4721efc8a6 work towards making chunk reading resumable
read_non_idat_chunks() will be called in a loop until a certain state is reached,
this will allow handling of non-critical errors
2021-03-23 15:02:48 +01:00
Randy
c50b7445a1 clean up packed sample iteration 2021-03-22 16:22:39 +01:00
Randy
66a7f6c84b reduce use of memcpy() 2021-03-22 15:36:13 +01:00
Randy
da306c21d5
test: check against libpng for presence of metadata (#157) 2021-03-22 15:29:09 +01:00
Randy
264476a152 update README [ci-skip] 2021-03-02 06:37:55 +01:00
Randy
1cf2b38665 README: clarify what spng stands for 2021-02-08 16:17:51 +01:00
Randy
1a5270bd3c bump version to 0.6.3 2021-02-03 21:13:16 +01:00
Randy
cd491e6a29 README: add more OpenCollective stuff [skip-ci] v0.6.2 2021-01-28 21:46:13 +01:00
Randy
e770ff2032 update README [skip-ci] 2021-01-28 21:31:26 +01:00
Randy
5be1ba433b Merge branch 'master' of https://github.com/randy408/libspng 2021-01-28 18:51:10 +01:00