8 Commits

Author SHA1 Message Date
Victor Derks
1460d014ba
Fix triplet problem with vcpkg and ARM64 platform (#337)
vcpkg requires lowercase triplet names. Using ARM64 will trigger a failure. Add an explicit override to resolve this.
2024-11-21 23:43:12 +01:00
Victor Derks
bb7185254c
Update benchmark project for code changes + enable ARM64 build (#323)
By design the benchmark project is not build as it relies on Google Benchmark that is retrieved using vcpkg.
Vcpkg is now part of Visual Studio 2022, so building with VS 2022 works.
One of the build steps of the CI pipeline build CharLS however with VS 2019 to ensure that VS 2019 still can be used. Enabled benchmark in the solution file for x86 and X64 would break VS 2019.
ARM64 build are only support in VS 2022, so enabling that version doesn't break VS 2019.
2024-08-24 19:06:41 +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
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
b0ecf3e61c
Replace ASSERT(false) with unreachable() (#298)
C++23 comes with std::unreachable().
Add this method to util.h and use it.
2023-12-29 00:11:47 +01:00
Victor Derks
162ce021c1
Convert template class scan_codec_factory into template method (#296)
The class scan_codec_factory has no state and can be replaced by just a template function.
2023-12-28 14:48:12 +01:00