877 Commits

Author SHA1 Message Date
Randy
b242400042 meson: add option to disable example 2021-09-24 15:39:12 +02:00
Randy
084139b4d5 cmake: add option to disable examples 2021-09-24 15:33:05 +02:00
Randy
ee9460be8d fix indentation in test_png.h 2021-09-24 14:58:51 +02:00
Randy
bc383951e9 docs: update valid formats for encoder [skip-ci] 2021-09-03 16:13:33 +02:00
Randy
a413382cf3
encode: enable support for SPNG_FMT_RAW (#175) 2021-09-03 16:08:01 +02:00
Randy
046dbae156 spng_set_unknown_chunks(): improve error reporting 2021-09-01 21:01:18 +02:00
Randy
5c47f25d22 document SPNG_CHUNK_COUNT_LIMIT [skip-ci] 2021-09-01 17:43:43 +02:00
Randy
fdc526b5ff
add spng_decode_chunks() (#173) 2021-09-01 17:27:48 +02:00
Randy
6730c0b874 introduce chunk count limit, default limit 2021-08-12 14:04:18 +02:00
Randy
8bc0cd7e8f spng_encode_image(): cleanup
ctx->bytes_per_pixel is already set to 1 for <8-bit images
2021-08-05 15:17:46 +02:00
Randy
4a167c15dd spng_set_text(): disable strict checks by default 2021-08-05 15:17:46 +02:00
Randy
f70bc10569 spng_set_png_stream(): cleanup
require_bytes() already handles encode buffer allocations
2021-08-05 15:17:46 +02:00
Randy
53662302f7 fix encoding of large chunks, optimize initial buffer size
also fixed an issue where realloc() was used instead of spng__realloc()
2021-08-05 15:17:46 +02:00
Daniel Krupiński
7b0535e20f Force spng's memory allocation methods to use calling convention defined by SPNG_CDECL
(cherry picked from commit 459b4d1b66ec63a5c7a186d4efa5b2d5c690bc55)
2021-08-02 16:41:39 +02:00
Daniel Krupiński
e82e0b250e Add SPNG_CDECL preprocessor definition resulting in __cdecl calling convention under MSVC
(cherry picked from commit 819c7d60eb5f990d0e0ab05a80e823594fea3c9e)
2021-08-02 16:41:03 +02:00
Randy
d517041044 fix testsuite
the reencoded length check was supposed to stay commented out,
checking against the original file is too simple and not always correct.
2021-08-02 16:28:38 +02:00
Randy
1cb3d225e5 spng_decode_scanline(): rename variable
make it clear a separate variable is used and ret isn't set to zero,
that would cause an infinite loop.
2021-08-02 16:13:02 +02:00
Randy
997408e38c testsuite: warning fixes 2021-08-02 15:55:50 +02:00
Randy
640c33d456 added more length checks, warning fixes
fixed MSVC warnings
changed some numeric types
added more length checks (user functions and internal)
2021-08-02 15:49:52 +02:00
Randy
8141dc6dba encode_row(): optimize for last pass 2021-08-01 16:13:38 +02:00
Randy
d1d5bbe974 paeth(): cleanup 2021-07-29 22:56:45 +02:00
Randy
181cf7573c encode: add to_bigendian flag 2021-07-29 22:55:16 +02:00
Randy
1dd7e96920 decode: clean up integer read functions 2021-07-29 21:10:16 +02:00
Randy
0e3200f55c update README [skip-ci] v0.7.0-rc3 2021-07-29 15:00:42 +02:00
Randy
95e2f0724e docs: add encode api, updates [skip-ci]
added encode api docs
moved some things from decode.md to context.md and vice versa
2021-07-28 16:41:18 +02:00
Randy
fc661a8df0 test: change input file for example_notext
Interlaced, >8-bit images are causing false
positives with MSan, the previous image
 was 1-bit 32x32, it has no trailing padding bits
 when decoded.
2021-07-28 16:41:18 +02:00
Randy
fa2c990865 fix miniz.wrap 2021-07-28 16:41:18 +02:00
Randy
9d2585c362 ci: use zlib with msan tests 2021-07-28 16:41:18 +02:00
Randy
d67a1702c9 update miniz.wrap 2021-07-28 16:41:18 +02:00
Randy
4a86292fee docs: update chunk.md 2021-07-28 16:41:18 +02:00
Randy
6ad8aea5ed update README 2021-07-28 16:41:18 +02:00
Randy
eede75c90e expand example.c with encoder api 2021-07-28 16:41:18 +02:00
Randy
f10126ff93 decode: set unknown chunk location regardless of length 2021-07-28 16:41:18 +02:00
Randy
eafc9a55c8 decode: keep tRNS high bits when parsing
masking off high bits is only necessary for
transparency testing, it should otherwise
be stored unmodified.
2021-07-28 16:41:18 +02:00
Randy
c43d61107e spng_set_trns(): preserve high bits, refactor
Don't mask off high bits, check for too many
palette indices.
2021-07-28 16:41:18 +02:00
Randy
dd552d19c3 test: update and add extended tests 2021-07-28 16:41:18 +02:00
Randy
e2f1663336 FILE* / stream write support, new context flag
SPNG_CTX_ENCODER is a necessity internally,
it should also make user code more readable.
Not sure if SPNG_ENCODE_FINALIZE will ship
in v0.7.0 but it does mirror the decoder's behavior
and libpng.
2021-07-28 16:41:18 +02:00
Randy
cef00cafbf spng_ctx_new(): cleanup 2021-07-28 16:41:18 +02:00
Randy
b1e2d6e55d api tweaks for stream write support 2021-07-28 16:41:18 +02:00
Randy
1308559928 update tests/README.md 2021-07-28 16:41:18 +02:00
Randy
705aec10c9 docs: add note for spng_set_splt() 2021-07-28 16:41:18 +02:00
Randy
f6f9fc1a47 docs: add spng_set_unknown_chunks() 2021-07-28 16:41:18 +02:00
Randy
c911c58eaa ignore input buffer for progressive encode 2021-07-28 16:41:18 +02:00
Randy
81ef3d46e8 get_best_filter/expand_row(): add missing static keyword 2021-07-28 16:41:18 +02:00
Randy
cfa69a79e8 deduplicate row/scanline iteration 2021-07-28 16:41:18 +02:00
Randy
ec43bfa9fe encode: add progressive image write api 2021-07-28 16:41:18 +02:00
Randy
413733b666 encode: init and write_idat_bytes() cleanup 2021-07-28 16:41:18 +02:00
Randy
27adb53701 add option to configure filter selection 2021-07-28 16:41:18 +02:00
Randy
b02e60e54a docs: update errors.md 2021-07-28 16:41:18 +02:00
Randy
c429edeae4 fix coverity issue 2021-07-28 16:41:18 +02:00