1091 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
230715737d
Add precompiled header to CharLS library build (#340)
All modern C++ compiler support precompiled headers, add one to increase build performance.
2025-01-18 16:54:35 +01:00
Victor Derks
e88e42007c
Add support to charls.ixx for import std; (#339)
Use the macro __cpp_lib_modules to detect if usage of import std; is possible.
2024-12-06 11:44:25 +01:00
Victor Derks
66a3605fd9
Add REUSE compatibility (#338)
- Follow the best practices of https://reuse.software/ to ensure BSD-3 licence is correctly applied.
- Add a badge to README.md
- Note: remove arm build as the CI pipeline is broken for this architecture
2024-12-04 12:33:36 +01:00
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
021d48c6b1
Re-enable warning C26493 (#336)
- The MSVC warning C26493 was broken in VS 2022 17.11. It has been fixed in 17.12
- Update .clang-tidy. Disable new but not useful warnings.
2024-11-13 13:37:41 +01:00
Dimitri Papadopoulos Orfanos
5a9b526180
Fix typos found by codespell (#335)
* Fix typos found by codespell

* Add missing >

---------

Co-authored-by: Victor Derks <vbaderks@gmail.com>
2024-09-25 22:59:02 +02:00
Victor Derks
5071134af7
Prevent endless loop during decoding for invalid JPEG-LS input data (#334)
Fuzzing testing of the C# implementation found a scenario that would cause an endless loop during decoding. This defect was also present in the C++ implementation.
This condition was tested with an ASSERT. Using an ASSERT is fine when encoding, but an explicit check is needed when decoding as the input data is in that case untrusted.
2024-09-16 19:42:40 +02:00
Victor Derks
bb529e463b
Remove duplicate code from make_scan_codec + undef_macros.h (#333)
- Remove code from make_scan_codec that was not used
- Unsure that undef_macro.h file is added to the list of public headers in CMakeLists.txt
2024-09-16 10:33:16 +02: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
fae5060b39
Add support to encode and decode 2 components by line and sample interleave mode (#331)
2 components in interleave mode none was already supported. But the options line and sample were not implemented.
Add these 2 options to support all interleave options.
2024-09-09 12:39:08 +02:00
Victor Derks
507f26b685
Add support for DNL segments with lines > 2^16 (#59) (#330)
Section ISO/IEC 14495-1, C.2.6 specifies that JPEG-LS allows DNL segments with a length between 4 and 6 bytes. Update the code to handle these DNL segments.
2024-09-06 11:50:57 +02:00
Victor Derks
5a348dce6f
Add support to retrieve height from a DNL marker segment. (#329)
DNL markers are part of the official JPEG-LS standard (but almost never used). Add support to scan the buffer for this
marker segment if the height is zero.
By design CharLS itself will never write DNL marker segment as it always knows the height of the image before it writes the SOF marker segment.
2024-09-03 23:21:24 +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
6952b2d635
Update the name of golomb_code to golomb_code_match and POD conversion (#327)
The main purpose of golomb_code_match is to see if there is a precomputed match which allows to just skip the bytes.
Rename the struct to make it clear it is not the actual glomb code itself.
Update the golomb_code_match struct back into a POD. The Windows x64 ABI cannot return non-POD structs in a single register even when the would fit.
2024-09-02 16:05:09 +02:00
Victor Derks
70d0a22991
Add method charls_decoder_get_compressed_data_format (#325)
The JPEG-LS standard defines 3 compressed data formats. Only the interchange format (the most common) can normally be decoded.
Add a method to allow application code to retrieve the data format of the JPEG-LS stream. This allows an application to decide if it want to display the image
or process it differently.
2024-08-27 13:08:33 +02:00
Victor Derks
bbd2d34404
Replace functors with function pointers (#324)
* Replace functors with function pointers during decoding

The functors were constructed on the heap and the actual implemenation was called using a virtual method call.
The main advantage of a functor (insert inline) could not be leveraged.
As a first step replace these functors with basic function pointers. It replaces a virtual call to a member function with a
function pointer call to a static method (no need to pass this pointer).

* Rename process_decoded_line.hpp in copy_from_line_buffer.hpp

* Replace functors with function pointers during encoding

The functors were constructed on the heap and the actual implementation was called using a virtual method call.
The main advantage of a functor (insert inline) could not be leveraged.
As a first step replace these functors with basic function pointers. It replaces a virtual call to a member function with a
function pointer call to a static method (no need to pass this pointer).

* Rename process_encoded_line.hpp to copy_to_line_buffer.hpp
2024-08-26 18:02:26 +02: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
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
a72bb398c7
Remove duplicate code in jpeg_stream_writer (#316) 2024-08-09 13:07:46 +02:00
Victor Derks
79c9a58913
Use positive indexes to acces the line buffer during encoding (#315)
The line buffer is 2 pixels longer then required to make is easier to encode pixels on the edges. The start of the pointers was set to the first real pixel.
This caused the problem that negative indexes needed to be used in the code, which looks incorrect at first sight and makes the code harder to port.
The same was already done for the decoding process.
2024-08-09 11:12:11 +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
e9ebb7e551
Use positive indexes to acces the line buffer during decoding (#313)
The line buffer is 2 pixels longer then required to make is easier to decode pixels on the edges. The start of the pointers was set to the first real pixel.
This caused the problem that negative indexes needed to be used in the code, which looks incorrect at first sight and makes the code harder to port.
2024-08-02 17:24:53 +02:00
Victor Derks
1460f8df5f
Improve names and reduce line buffer (#312)
- Move constant values that are only used once to the method that uses these constant values (reduces scope)
- Rename context_regular_mode to regular_mode_context and context_run_mode to run_mode_context
- Reduce the line buffer from 4 extra items to 2 (2 are needed for the borders).
- Replace dynamic run_index buffer with static buffer (max size is only 4 items)
2024-08-02 14:24:53 +02:00
Victor Derks
1127459953
Add missing #include <optional> to charls.ixx (#311) 2024-07-25 12:05:55 +02:00
Victor Derks
19afb35985
Simplify enums: only define used values (#310)
Remove values from the enum that are only needed for slightly better error reporting (handle this locally)

Also add support matrix to readme
2024-07-24 12:28:57 +02:00
Victor Derks
02dd513015
Update SonarCloud github action (#309) 2024-07-23 15:14:10 +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
dependabot[bot]
5deecd2c8a
Bump SonarSource/sonarcloud-github-c-cpp from 2 to 3 (#307)
Bumps [SonarSource/sonarcloud-github-c-cpp](https://github.com/sonarsource/sonarcloud-github-c-cpp) from 2 to 3.
- [Release notes](https://github.com/sonarsource/sonarcloud-github-c-cpp/releases)
- [Commits](https://github.com/sonarsource/sonarcloud-github-c-cpp/compare/v2...v3)

---
updated-dependencies:
- dependency-name: SonarSource/sonarcloud-github-c-cpp
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-07-23 13:34:52 +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
f2ff4448c2
Improve checked build of Visual Studio 2022 17.9 (#304) 2024-02-13 23:16:58 +01:00
dependabot[bot]
3998c6f343
Bump microsoft/setup-msbuild from 1 to 2 (#303)
Bumps [microsoft/setup-msbuild](https://github.com/microsoft/setup-msbuild) from 1 to 2.
- [Release notes](https://github.com/microsoft/setup-msbuild/releases)
- [Changelog](https://github.com/microsoft/setup-msbuild/blob/main/building-release.md)
- [Commits](https://github.com/microsoft/setup-msbuild/compare/v1...v2)

---
updated-dependencies:
- dependency-name: microsoft/setup-msbuild
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-08 22:26:51 +01: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
c9c417c1a4
Rename frame_info to prevent GCC warning [-Werror=shadow] (#299) 2023-12-29 20:52:57 +01:00
Victor Derks
eb8c55e629
HP color transformations are limited to 3 components: remove not needed code
The HP color transformations apply only to RGB colors in sample and line mode.
- Add more unit tests
- Remove not used  transformations for quad (4 component pixels)
- Remove not needed color transformations
2023-12-29 16:55:16 +01: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
0a7e707b53
Replace set_presets with extra constructor parameter (#297)
set_presets was used as a second constructor. Pass the pc_parameter to the base constructor to get rid of this method.
2023-12-28 21:40:34 +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
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
dependabot[bot]
d038738dbd
Bump github/codeql-action from 2 to 3 (#292) 2023-12-19 08:00:11 +01:00
Victor Derks
0f47e2bcbe
Resolve SonarQube warnings (#291) 2023-12-10 16:27:27 +01:00
Victor Derks
1760183f02
Update Github actions use the semver schema. (#290)
It is beter to only use the major version to make it possible to automatically pickup the latest version (instead of a specific tag). Upgrades of major versions are done useing dependabot
2023-12-10 13:17:13 +01:00
Victor Derks
220bd832c8
Add a dependabot configuration file for Github actions (#289)
Github actions need to be updated from time to time.
Use DependaBot to do this.
2023-12-10 00:33:05 +01:00
Victor Derks
98d8e15f3e
Update Github actions for the CI pipeline (#288) 2023-12-09 18:37:40 +01:00