21 Commits

Author SHA1 Message Date
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
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
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
1ba2294516
Use span and improve spelling (#301) 2024-01-20 22:09:55 +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
c4f429b900
Enable code coverage in CI pipeline (#279)
The Azure CI Pipeline can analyze code coverage when running the unit tests. Enable this option. It provides an additional tab on the CI status report. On this tab a single code coverage number is displayed. The .coverage file can be downloaded and opened in Visual Studio to get more insights.
Only the debug DLL is code covered as it provided a good report. The release build has too many optimalizations to provide a report that is useful. 

Note 1: The unit test DLL needs to link with the CharLS .obj files to make it possible to unit test low level methods. This means however the the unit test DLL needs to be code covered and not the actual CharLS DLL.

Note 2: the Cobertura format was also tested, but it didn't provide additional details (only more warnings and complexity)
Enable code coverage in CI pipeline
2023-06-16 14:05:51 +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
635ee6a933
Use consistenly uniform initialization (#217) 2022-12-29 11:50:22 +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
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
283882874c
Resolve clang-tidy warnings (#172) 2022-02-04 23:20:03 +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
864720927f
Check component count in start of scan (SOS) (#140) 2022-01-16 12:42:27 +01:00
Victor Derks
798dad59cc
Benchmark the update_variables for context (#139) 2022-01-15 18:10:18 +01:00
Victor Derks
14ee03e97e
Improve the benchmark project (exclude from always build) (#138)
Add benchmark project to CharLS.sln
2022-01-14 19:31:29 +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