1091 Commits

Author SHA1 Message Date
Victor Derks
2c4d3f439c
Update version to 3.0.0 and minimum C++ version to 17 (#230)
The release of C++17 has been 5 years ago. The supported period of C++14 has ended and the minimum required C++ version will be increased to C++17 for building the library and using it.
2023-03-24 22:27:26 +01:00
Victor Derks
1938dc38c5
Resolve SonarQube warnings (#228) 2023-02-11 14:33:47 +01:00
Victor Derks
38d95d0067
Add a SonarCloud badge to README.md (#226) 2023-01-05 00:38:57 +01:00
Victor Derks
bd5f97bdd4
Update main branch name in build.yml (#225)
Main branch is still called master.
2023-01-04 23:03:19 +01:00
Victor Derks
0036d24da0
Add GitHub action for SonarCloud (#224) 2023-01-04 22:07:03 +01:00
Victor Derks
dd9e90d2d2
Update version to v2.4.1 (#223) 2.4.1 2023-01-02 17:20:36 +01:00
Victor Derks
7722ae8db1
Fix the stride checking during encoding/decoding for the last line (#222)
Update decoding and encoding for custom stride

Not all bytes are used in the last line when decoding\encoding with a custom stride.
Take this into account for the destination size computation and the destination size check.
and also for the source buffer check during encoding.
2023-01-02 16:58:02 +01:00
Victor Derks
c781c3ec78
Update URLs in README.md (#220) 2.4.0 2022-12-29 14:49:12 +01:00
Victor Derks
3e6603465d
Apply minor textual improvements (#219) 2022-12-29 14:13:45 +01:00
Victor Derks
27ac63cf99
Finalize changelog for the 2.4.0 release (#218) 2022-12-29 14:08:42 +01:00
Victor Derks
635ee6a933
Use consistenly uniform initialization (#217) 2022-12-29 11:50:22 +01:00
Victor Derks
96a3b29bdd
Ensure building with CMake uses correct DLL name for ARM64 (#216)
To support platform neutral adapters like Java, Python and C# that need to load depending on the platform different versions, CharLS uses different filenames on Windows. Extend this option for the ARM64 architecture.
2022-12-29 01:30:48 +01:00
Victor Derks
95b2e3684d
Enable signed returns for ARM64 platform (#215) 2022-12-28 21:25:42 +01:00
Victor Derks
d3fa929a27
Add support for deterministic builds with MSVC (#214) 2022-12-28 16:44:13 +01:00
Victor Derks
e2ae376e6a
Add constexpr workaround for Visual Studio 2017 (#213) 2022-12-28 00:19:51 +01:00
Victor Derks
3f160e66c1
Make macro CONSTEXPR public (#212)
Rename macro CONSTEXPR into CHARLS_CONSTEXPR and also use it in public_types.
This is required for Visual Studio 2015.
2022-12-27 22:59:55 +01:00
Victor Derks
82e883e92e
Update version to 2.4.0 (#211) 2022-12-27 20:25:34 +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
Victor Derks
823d24a8ad
Add 2 unit test for stride with 16 bit (#209) 2022-12-27 15:32:45 +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
208b1bf4f0
Update max supported CMake version to 3.25 (#206) 2022-12-02 10:03:57 +01:00
Victor Derks
17c747296d
Resolve MSVC warning C26496 (#205)
MSVC 2022 17.5.0 Preview 1.0 has improved warning C26496 detection, resolve the report warning.
2022-11-11 11:35:40 +01:00
Victor Derks
636700604d
Resolve clang-tidy warnings (#204) 2022-11-03 00:06:17 +01:00
Victor Derks
e4e4ef8c3d
Resolve warnings reported by Visual Studio 2022 17.4.0 Preview 4.0 (#203) 2022-10-19 22:56:33 +02:00
Victor Derks
ec7946b4b9
Validate the stride argument passed to jpegls_decoder::destination_size (#202) 2022-10-08 23:37:25 +02: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
09bce5e65f
Improve the compatibility with VS static analyzers (#200)
Ensure that CharLS can be compiled with zero static analyzer warnings in VS2019 and VS2022.
VS2019 needs more explicit lambda capture.
2022-10-05 13:03:11 +02:00
Victor Derks
a973e5792e
Add _throws to unit tests that verify failures (#199)
CharLS is designed to throw when a method fails. End all unit test that verify this behaviour with _throws at the end.
2022-10-05 00:19:25 +02:00
Victor Derks
4e5334f050
Fix the incorrect computation for bytes_per_plane if a custom stride is passed during decoding. (#198)
The bytes_per_plane value was using the default stride and not the passed custom stride.
For multi component images with interleave mode none this caused the second plane
to overwrite part of the first decoded plane, etc.

Also added a check to verify the passed stride argument, it should minimal be the default stride.
2022-09-26 23:17:55 +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
4be5c2aab3
Improve the inline for constexpr fix for compatibility with C++20 (#195) 2022-09-22 22:17:57 +02:00
Victor Derks
328a1740b9
Add inline to constexpr for compatibility with C++20 (#194) 2022-09-22 21:29:40 +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
eadd1dc525
Move enum encoding_options in its own private namespace (#192)
- Using a private namespace makes it possible to prevent that the helper functions are in the charls namespace.
- As encoding_options is used as a flag enum it makes more sense to use an unsigned type (with well defined behaviour for bitwise operations)
- Using the same type helps ReSharper to match the definition and the implementation
2022-06-17 20:53:16 +02:00
Victor Derks
c6af80bf17
Add method write_spiff_end_of_directory_entry (#191)
This helper function can be used to add SPIFF headers to existing JPEG-LS streams.
2022-05-30 00:31:21 +02:00
Victor Derks
f1d2f691b1
Add documentation to charls_validate_spiff_header (#190) 2022-05-27 16:38:04 +02:00
Victor Derks
4697b10a59
Add method to validate SPIFF header (#189)
To ensure that the SPIFF (when present) is valid validate the properties of the header. This can be only be done after the frame info is also available.
2022-05-10 00:07:48 +02:00
Mathieu Malaterre
e9a1b78231
Switch order of APP8 and SOF55 (#188)
This will be consistent with the ordering of the new API introduced in
commit 8225d16 where APPx markers can only be inserted before SOF55.
2022-04-22 23:43:58 +02:00
Victor Derks
cbddf0d529
Use GCC 10 on the CI server (#186)
The latest CI build agent also supports GCC 10. Update one of the build configurations to use GCC 10 to get beter compiler coverage.
2022-04-10 10:46:00 +02:00
Mathieu Malaterre
8b221c8fd4
Fix off-by-one function attribute declaration (#184)
This should fix the following compilation error on gcc-10:

In file included from charls/src/charls_jpegls_encoder.cpp:4:
charls/include/charls/charls_jpegls_encoder.h:520:119: error: attribute ‘access(read_only, 2, 3)’ positional argument 1 references non-pointer argument type ‘int32_t’ {aka ‘int’}
  520 |                                            CHARLS_IN_READS_BYTES(size) const void* application_data, const size_t size)
      |
2022-04-04 22:08:40 +02:00
Victor Derks
8225d1627d
Add support to write and read APPn markers (#183)
* Add support to install callback for APPn segments

* Add support to write APPn segments
2022-04-03 23:19:17 +02:00
Mathieu Malaterre
22b0d9d15b
Add documentation for special include_pc_parameters_jai case (#178) 2022-02-24 00:05:05 +01:00
Mathieu Malaterre
8adaa90a04
Add a bitwise OR assigment operator for encoding_options (#179)
This should help user write shorter code:

encoding_option |= encoding_options::even_destination_size;
2022-02-24 00:03:54 +01:00
Victor Derks
662d4f2a02
Update version to v2.3.4 (#177) 2.3.4 2022-02-12 16:37:23 +01:00
Victor Derks
18cd6ab07d
Replace legacy test images (#176) 2022-02-12 16:10:02 +01:00
Victor Derks
4f02873018
Update version to v2.3.3 (#174) 2.3.3 2022-02-05 13:57:55 +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
461df4b0e6
Add LITTLE_ENDIAN_ARCHITECTURE macro (#168) 2022-02-02 00:53:56 +01:00