252 Commits

Author SHA1 Message Date
Victor Derks
11a4308204
Resolve clang-tidy 19.1 warnings (#341) 2025-02-13 23:23:04 +01:00
Victor Derks
8421eef930
Extend API of jpeg_encoder with encode_components methods (#332)
Add an additional method for advanced encodings scenarios. This methods allow to encode components with different
coding parameters like: near lossless, jpeg-ls preset coding parameters or scans with different interleave modes.
Extend the decoder to also be able to decode scans with different interleave modes.
2024-09-10 14:25:12 +02:00
Victor Derks
e7b2d6f1fd
Move processing of restart marker to base class + reset_threshold (#328)
reset_threshold is just a parameter. Remove it from the traits class to have more flexibility.
2024-09-03 00:35:33 +02:00
Victor Derks
b035a731f7
Rename headers from .h to .hpp to identify CharLS as a C++ project (#322)
To make it more clear to users and tooling that the project is a C++ project use the extension .hpp for pure C++ headers.
Add a new public header file charls.hpp. External C++ projects should this header file, C projects should still use charls.h.
2024-08-23 19:44:39 +02:00
Victor Derks
2c48039847
Update the API to align with the C# implementation (#320) 2024-08-23 12:51:30 +02:00
Victor Derks
e462982106
Re-order the failure values of the enum jpegls_errc (breaking change) (#318)
Group the error IDs in errors that cannot be prevented and can be reported at runtime and in a set of errors that can be prevented.

Note 1: the error destination_too_small is considerd a runtime failure, but can in many cases be prevented.
Note 2: unexpected exceptions will now trigger a call to std::terminate (improved crash dumps)
2024-08-15 16:36:03 +02:00
Victor Derks
256ad01358
Align the mapping table API with the C# implementation (#317)
* Allign the mapping table API with the C# implementation

* Update to build with Visual Studio 2019
2024-08-15 12:57:28 +02:00
Victor Derks
045cf21d9c
Apply small improvements based on porting the code to another implementation (#314) 2024-08-08 16:19:18 +02:00
Victor Derks
67ced15540
Update charls::jpegls_decoder and charls::jpegls_encoder to follow the same const pattern as the C API (#308) 2024-07-23 14:41:50 +02:00
Victor Derks
eaba4b02a1
Add support to encode and decode mapping tables (#302)
* Add support to write mapping tables to the JPEG byte stream.
* Add API method to set the table ID for a component
* Add method to create JPEG-LS file with mapping tables only.
* Add support to read mapping tables
* Parse table-ids from the scan segment
* Extend API of charls_decoder_get_mapping_table_index to return -1 if index is not found
* Add support to read mapping table continuation segments
* Document new API methods
* Add sample image from appendix H.4.5 "Example of a palletised image" / Figure H.10 to unit test
* Update the get_mapping_table API to include size of the buffer
2024-07-23 13:17:12 +02:00
Victor Derks
1ba2294516
Use span and improve spelling (#301) 2024-01-20 22:09:55 +01:00
Victor Derks
cb6a9d715f
Rename all template parameters that indicate the type used to hold the sample to SampleType (#300)
Background: a pixel consist of 1 or more samples. (RGB has 3 samples for example).
CharLS uses as SampleType a byte (uint8_t) or a 16 bit byte (uint16_t)
2023-12-30 00:19:10 +01:00
Victor Derks
eb6657f36c
Add check to prevent out-of-bounds read during decoding (#295)
Invalid input data may trigger an invalid read.
This scenario will be hit for invalid input data that completes
a scan but hasn't a marker start byte at the expected position.
The current algorithm will add additional bits to the cache, but this requires an additional check for the position.

Note: found with LibFuzzer
2023-12-28 12:53:08 +01:00
Victor Derks
bd605773cd
Add support to fuzz with LibFuzzer (#294)
Both MSVC and clang have support for fuzzing with LibFuzzer. Add a console app that can be used to fuzz with LibFuzzer.
2023-12-27 19:40:23 +01:00
Victor Derks
e7b1e58ab5
Update coding style (.clang-format) to BreakAfterAttributes: Always ([[nodiscard]]) (#293)
Follow the common cross language pattern to apply function attributes before the function definition/implementation.
2023-12-25 12:08:21 +01:00
Victor Derks
b193efd8cd
Replace byte_span and const_byte_span with template span (#265)
Update the span classes to a template based span class (like the C++20 std::span class)
2023-04-21 23:45:48 +02:00
Victor Derks
647f96ca4e
Remove usage of const_cast (#263) 2023-04-21 19:53:15 +02:00
Victor Derks
7eb529a2a3
Report missing file in encode performance test (#247) 2023-04-07 14:03:23 +02:00
Victor Derks
2aecc4932a
Update the test code to use C++17 language constructions (#243)
- Use structured binding (when it makes sense)
- Add [[nodiscard]]

- Disable structured binding ReSharper warnings (it also advises to use structured binding for variables that will explode in too many parameters)
2023-04-01 15:27:59 +02:00
Victor Derks
80285e14e8
Replace uint8_t with std::byte in test projects (#238)
C++17 introduced std::byte. Use it to replace uint8_t that was used as C++14 was lacking a byte type.
2023-03-26 20:20:44 +02:00
Victor Derks
c0bd29757e
Remove legacy 1.x option output_bgr (#234)
This was a Windows only option. Conversion is often not needed and Windows can do the conversion more efficient by itself. DirectX supports RGB encoded bitmaps.
2023-03-25 14:14:57 +01:00
Victor Derks
3acfee4c65
Remove the legacy 1.x API and types. (#232)
v3.0.0 is a major version number increase, which allows breaking changes.
Remove the legacy 1.x API and types.
2023-03-25 00:44:24 +01:00
Victor Derks
635ee6a933
Use consistenly uniform initialization (#217) 2022-12-29 11:50:22 +01:00
Victor Derks
c9c018fbdf
Add -Wconversion to GCC and clang as compiler option (#210)
-Wconversion will warn when implicit conversion may cause data loss.
2022-12-27 17:46:07 +01:00
Jamaika1
bb8bf1bed4
Added <cstdint> for GCC (#208) 2022-12-25 09:50:00 +01:00
Victor Derks
1e5b199c0a
Add support for ARM64 to MSBuild projects (#207)
Extend the MSBuild (Visual Studio) project with an ARM64 configuration.
Windows 11 for ARM64 is required to run the created binaries.
2022-12-10 16:08:47 +01:00
Victor Derks
636700604d
Resolve clang-tidy warnings (#204) 2022-11-03 00:06:17 +01:00
Victor Derks
3d8c59fc61
Add a unit test for unsupported mixed interleave modes (#201)
CharLS doesn't support mixing interleave modes.
Add a unit test to ensure that CharLS will throw a not supported exception.
The actual checking was already done.

Note: also resolve some static analyzer warnings, reported with the latest version of ReSharper\clang-tidy.
2022-10-08 13:08:40 +02:00
Victor Derks
ea98d4b8b5
Use explicit ofstream.close() and replace static_cast with uniform initialization (#197)
The destructor of std::ofstream will close the stream, but not report any failures (by design).
Call close to trigger an exception when the close fails.

static_cast for constant values can be replaced with uniform initialization, this allows
to reduce the number of static_casts.

Change the bin+intermediate to be sub-directories of build for MSBuild builds.
This makes it easier to clean.
2022-09-24 20:23:44 +02:00
Victor Derks
4f80953a0d
Update for Visual Studio 2022 17.3 Preview 3.0 (#193)
Visual Studio 2022 17.3 Preview 3.0 comes with an updated clang-tidy and STL headers.
2022-07-14 22:10:39 +02:00
Victor Derks
18cd6ab07d
Replace legacy test images (#176) 2022-02-12 16:10:02 +01:00
Victor Derks
77d3c349e6
Use charlstest -unittest as ctest step during CI build (#173)
The unit test project can only be used on Windows. Enable the tests included in charlstest during the CI build.
2022-02-05 12:37:59 +01:00
Victor Derks
283882874c
Resolve clang-tidy warnings (#172) 2022-02-04 23:20:03 +01:00
Victor Derks
2991763583
Add -Wcast-align=strict and use void+static_cast (#163)
CharLS is cross-platform. -Wcast-align=strict will always warn for alignment issues, even when current platform can handle it (for example x86)
Use void*+static_cast to increase alignment. This is safe for dynamic allocated memory.
2022-01-27 23:39:12 +01:00
Victor Derks
de333dd3b2
Add unit test and benchmark for log2_ceil (#149)
- Rename the log_2 function into log2_ceil as that is what the function performs.
- Add unit test and benchmark test to get insights if using it in more places has benefits.
2022-01-22 21:36:20 +01:00
Victor Derks
23a3043be8
Resolve some minor SonarLint warnings (#148) 2022-01-22 14:30:37 +01:00
Victor Derks
0b3ac703e0
Backport C++20 countl_zero (#128)
Backport C++20 countl_zero

1) countl_zero can be used in peek_0_bits and is 2X faster.
Note: peek_0_bits is not on a hot path, overall gain is limited.

2) Apply updates for clang-tidy v13 (ships with VS 2022 17.1 Preview 2)

3) Increase upper range of supported CMake to 3.22
2022-01-06 16:06:23 +01:00
Victor Derks
26478a8ba3
Add benchmark project and use memchr (#127)
* Add an initial benchmark project to research optimizations.
* Use memchr to search for 0xFF during decoding.
* Rename function to make intent more clear.
* Use const pointers (decoding only need to read).
2022-01-05 18:27:22 +01:00
Victor Derks
7d1b06ee07
Improve API docs and decode perf measurement (#126)
- Add missing API docs
- std::vector perform an initialization when its size is resized. This has a significant impact
on the performance measurements. Ensure that this step is done outside the timed loop.
2022-01-05 17:20:13 +01:00
Mathieu Malaterre
96eee0e3e1
Use unordered (bullet) list (#112) 2021-12-15 20:56:17 +01:00
Victor Derks
735fa71db4
Resolve minor ReSharper warnings (#110) 2021-11-15 22:31:32 +01:00
Victor Derks
cb44fab24d
Add support to decode JPEG-LS images with restart markers (#99)
* Add support to parse DRI segments

* Add support to decode restart markers

* Update CharLSTest to also decode color images none interleaved to ppm

* Replace static_cast<void> with std::ignore

* Update readme, changelog and refactor
2021-09-26 22:21:07 +02:00
Victor Derks
482417c66d
Move the streamsize casts to helper functions 2021-08-21 14:24:31 +02:00
Victor Derks
c270e8c024
Update clang-tidy settings for Clang-Tidy 13 2021-07-25 23:31:23 +02:00
Victor Derks
e42ffc3086
Use consistently != in for loop (instead of <)
The typical pattern is to use != for C++ iterators, use it also for "normal" loops.
2021-07-06 22:12:09 +02:00
Victor Derks
0ed5a5e332
Use more direct initialization
Use direct initialization, as it can be used consistently in all initialization scenarios (member variables, auto, etc.)
2021-03-17 22:13:36 +01:00
Victor Derks
478dbd8593
Exclude options in the CMakeLists.txt for Visual Studio 2015
Visual Studio 2015 cannot handle the /Zc:__cplusplus option and the new options in the manifest file. Exclude this things when build with Visual Studio 2015.
2021-01-04 22:56:08 +01:00
Victor Derks
3a56e84a81
Add additional qualifer to support GCC 5.4 2021-01-04 21:35:32 +01:00
Victor Derks
0b910bc58f
Resolve some spelling and ReSharper issues 2021-01-03 17:04:20 +01:00
Victor Derks
6a30e19167
Mask high input bits during encoding
When encoding images ensure that only the valid bits are used. For bit size 16 and 8 there is no change and memcpy will be used.
Encoding with masking is not measurable slower.

Setting explicit InlineFunctionExpansion for debug needs to be removed as it prevents debugging.  For release mode it is also not needed as MaxSpeed will already enable it.

Mask high input bits during encoding (interleave_mode::sample)

Mask high input bits during encoding
2021-01-01 23:00:42 +01:00