24 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
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
3790e10a44
Simplify quad<SampleType>struct to get rid of warning suppression (#262)
Don't derive quad from triplet, but make it a standalone type with just 4 members.
Note: additional dummy operators are needed for the color transforms. This is required for the current template design.
HP never defined the (non-standard JPEG-LS) color transformation for anything else then 3 components.
2023-04-18 15:36:42 +02:00
Victor Derks
942d010010
Remove not needed macros (#236)
The upgrade to C++17 allows to get rid of the following macros:

CHARLS_NO_DISCARD : [[nodiscard]] can now always be used in C++ code
CHARLS_DEPRECATED: there are no deprecated types\methods anymore
CHARLS_CONSTEXPR_INLINE: inline constexpr is allowed in C++17
CHARLS_CONSTEXPR: Support for VS 2015 has been dropped, constexpr can always be used.
2023-03-25 17:35:40 +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
4be5c2aab3
Improve the inline for constexpr fix for compatibility with C++20 (#195) 2022-09-22 22:17:57 +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
a3066f33d0
Add overflow detection for estimated_destination_size in x86 build (#150)
As CharLS now supports oversized image dimensions, the x86 build should check that the calculated estimated destination buffer size doesn't overflow.
2022-01-23 16:26:40 +01:00
Victor Derks
864720927f
Check component count in start of scan (SOS) (#140) 2022-01-16 12:42:27 +01:00
Victor Derks
b16aa20c5a
Mark branches that will throw an error exception with "unlikely" (#132) 2022-01-08 01:36:14 +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
bef43d5efc
Use CHARLS_CHECK_RETURN instead of CHARLS_NO_DISCARD (#117)
The C++ attribute [[nodiscard]] requires C++17.
Using _Check_return_ or __attribute__((warn_unused_result)) ensures C++14 and C apps are covered.

__attribute__((warn_unused_result)) cannot be used in front of an enum.
Using CHARLS_CHECK_RETURN directly in front of the API functions ensure the best coverage.

Add also CHARLS_ATTRIBUTE_ACCESS((access()) annotations.
Note that only GCC 10 or newer is required for this annotation attribute.
2021-12-19 22:37:40 +01:00
Victor Derks
11c37c6519
Add the prefix CHARLS for the SAL annotation macros (#115)
Using the prefix CHARLS is a more clear identification that the macros belongs to the CharLS library. It also reduces the risk with conflicts of other 3rd party headers.
2021-12-19 14:32:26 +01:00
Victor Derks
06ffcedf0a
Add SAL annotations on "create" functions
charls_jpegls_decoder_create and charls_jpegls_encoder_create may return null pointers. Add SAL annotations on those functions.

note: remove API docs for removed parameters
2020-11-16 22:57:23 +01:00
Victor Derks
723999ca2a
Introduce CHARLS_C_VOID to handle difference of void in API
C requires void when no parameters are used in a method. Modern  C++ doesn't use it. Use a macro to support both languages.
2020-10-03 12:10:51 +02:00
Victor Derks
d5b9067d0b Add [[deprecated]] to the legacy API functions (files)
Note: the original commit fast forwared incorrectly.
2020-07-23 23:35:13 +02:00
Victor Derks
937733da39 Use MSVC_WARNING_SUPPRESS_NEXT_LINE to reduce noise
By using the  "suppress" method of MSVC #pragma warning, the additional lines needed to suppress false warnings can be reduced.
2020-04-04 14:21:21 +02:00
Victor Derks
237cd5846c Add C++ static analyzer annotations to the API
Both the MSVC and the gcc\clang C++ compiler provide additional attributes that can be used to assist the static analyzer build into these compilers to detect problems at compile time.
The problem is that these extension attributes are not cross compiler compatible, which requires additional macros to ensure that all supported compiler can compile the code.
The main focus of adding these attributes is on the external C API as in that area the most errors can be made.
2020-02-02 14:36:43 +01:00
Victor Derks
dbb9bc8c5c Add a noinline helper method to throw jpegls_error objects
The normal code path of the check_jpegls_errc  is to not throw. Use a helper function to move the exceptional path out of this function.
2019-11-28 23:35:39 +01:00
Victor Derks
a2adb658c3 Introduce SPDX Unique License Identifiers (BSD-3-Clause)
Apply the modern way of documenting the used license, by referencing a SPDX Unique License Identifier in the source code files.

Note: From the legal point of view, this commit is only a change to the textual representation of the license information, but in no way any change to the actual license terms. With this commit applied, all files will still be licensed under the same terms they were before.
2019-11-08 23:17:16 +01:00
Victor Derks
e90209e8f2 Introduce an object-oriented C++ API based on a new C ABI
The current C API prevents adding new features and the introduction of an object oriented C++ interface. Every change results directly in a ABI break. To prevent this a new C API is introduced that is easier to extend and to maintain. On top of this API are 2 C++ classes: jpeg_encoder and jpeg_decoder to encode and decode JPEG-LS files.

This commit comes also with the following changes:
- Updated .clang-format
- Switch to Visual Studio 2019 for the CI build pipeline
- Support for reading and writing SPIFF header
- Incomplete support for JFIF header has been removed
- Extended unit test coverage
2019-11-08 21:56:38 +01:00
Victor Derks
2436002362 Replace custom error mechanism with std::error_code
Since C++11, it is possible to return rich error information. Replace the custom way of returning error values and strings with the C++ standard way.
The only limitation is that the strings need to fixed  and cannot use parameters. This should be no limitation in practice.
2018-11-18 23:11:54 +01:00
Victor Derks
6fdf0893ba Replace charls_error with charls::jpegls_error
Export the class jpegls_error to make it possible to re-use it.
2018-11-06 22:43:54 +01:00
Victor Derks
5ecf282d5b Add MSVC_ prefix to WARNING_SUPPRESS
CharLS is crosss platform. Make it more clear that the warning macro is for the Microsoft C++ compiler.
2018-08-12 19:34:45 +02:00