39 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
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
04b08b7718
Validate interleave mode against component count (#119)
If component count is 1 then only interleave mode none may be used.
Validate this during encoding and decoding.
2021-12-20 20:34:00 +01:00
Victor Derks
54a9581fab
Configure a ColumnLimit of 125 in clang-format
A column limit of 125 is the de facto limit on GitHub, which makes it easier to browse the source code online.
2020-12-30 16:50:55 +01:00
Victor Derks
1b36f0f22f
Add additional asserts to the C sample application for clang-tidy
A width or height of zero would cause a malloc call with 0 bytes. Calling malloc with a size of 0 is implementation dependend and may return a non-null pointer which cannot be used but must be forwared to free.
Note: higher level runtime checks already prevent that encode_bmp_to_jpegls is called with these bad values.
2020-09-25 22:40:39 +02:00
Victor Derks
8a0227f2b2 Sample code: ensure that the resolution is set correctly in the SPIFF header
The sample code would not read all bmp_dib_header fields. This has been corrected.
It is often the case that the horizontal and vertical resolution are not defined in a BMP file (set to zero).
Added also an extra check that the width and height info is correctly set in a BMP file, this to prevent that memory buffer of 0 bytes is allocated.
2020-08-06 18:11:34 +02:00
Victor Derks
cf49219e1a Pass interleave-mode to sampe code by name
It is more clear to pass the option for the interleave-mode as a name (none, line, sample) then by the numeric values 0,1,2
2020-07-31 15:30:58 +02:00
Victor Derks
c8697e9bc2 Fix the problem in the sample code for rounded up rows
In the BMP file format every row is rounded up to a multiple of 4 bytes. The original sample code was unable to handle it. When using images with a special size (for example 403 * 100) this would cause incorrect converted images.
2020-07-31 14:43:05 +02:00
Victor Derks
5622241242 Move VcpkgConfiguration to Directory.Build.props and static_cast 2020-05-23 18:56:45 +02:00
Victor Derks
4d1ef382be Improve the samples: bgr to rgb and bottom up swap
The C and C++ samples can convert a .bmp file to a .jls encoded file. These samples were missing essential steps to ensure the .jls images look the same as the original .bmp image. This has been corrected with:

- Pixels in a .bmp file are stored as Blue\Green\Red, JPEG-LS requires these to be in the format Red\Green\Blue
- The rows in a .bmp file are stored bottom up, JPEG-LS expects these files top down
- An additional command line parameter has been added to control which interleave mode to use
2020-04-26 12:01:08 +02:00
Victor Derks
5672644e28 Support latest version of clang tidy (LLVM 10.0.0)
Remove "Checked" build from CI as older version of clang tidy can crash and break the build.
2020-04-03 23:39:45 +02:00
Victor Derks
03246ce081 Improve the compatibility with clang-tidy
Enable clang-tidy for the MSBuild checked build configuration. The CharLSUnitTest project is excluded as clang-tidy is extreme slow for this project.

The warning clang-diagnostic-sign-conversion requires more planning before this warning can be global enabled.
2020-03-18 08:39:53 +01: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
bf0cdc7114 Replace strcpy with safe string_copy (SonarCloud)
Address feedback from the SonarCloud static analyzer, replace strcpy with a safe implementation. As no cross platform solution is available, introduce a #ifdef/#else based solution.

Also get rid of _CRT_SECURE_NO_WARNINGS by removing a not used function and using std::ifstream instead of fopen\fclose.
2019-12-17 14:36:33 +01:00
Victor Derks
31f48c6119 Ensure that the samples also write SPIFF headers
"RAW" JPEG-LS headers miss crucial information like the color space and the resolution. Update the image to demonstrate how to encode this info in a JPEG-LS encoded image.
2019-11-17 14:57:21 +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
5602502948 Fix that the C++ sample doesn't throw when the input file cannot be read 2019-01-05 14:44:43 +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
3f36ec3a1f Add missing #include statements, required for gcc and clang 2018-10-30 23:15:39 +01:00
Victor Derks
9b15f3aecb Add cmdline argument allowed_lossy_error to sample convert.c for #43
JPEG-LS supports lossless and near-lossless compression. Update the sample to show the functionality of the this parameter.
2018-10-30 22:56:09 +01:00
Victor Derks
c4c93191b6 Refactor C sample: use C99 comments and style 2018-10-30 21:57:22 +01:00
Victor Derks
186463b6a5 Move _CRT_SECURE_NO_DEPRECATE macro to project file
Make the cross-platform code cleaner by moving MSVC specific settings to the .vcxproj file.
2018-10-11 23:46:27 +02:00
Victor Derks
694dfa1a4e Move the interface headers to a namespace include folder
Modern practice is to move the interface header files to a include/<lib-name> folder. This prevents that header filenames conflict with other libraries. And it also allows client code to use #include <package-name\header-filename.h> constructions.
2018-10-11 21:12:39 +02:00
Victor Derks
f05583b1d5 Update reference from License.txt to LICENSE.md 2018-09-19 00:17:36 +02:00
Victor Derks
bc33ac628a Resolve core guidelines warnings in x64 builds 2018-05-31 13:32:34 +02:00
Victor Derks
256a6d3f76 Add const 2017-10-30 23:49:23 +01:00
Victor Derks
29f39e6aa1 Updated the member naming of the JlsParameters structure to use the standard CharLS naming scheme (API change). 2016-05-18 21:19:05 +02:00
Victor Derks
b0da2e41da Changed the default name for a JlsParameters argument\variable to params. 2016-05-16 00:33:07 +02:00
Victor Derks
f6c508f1ad Added a const\define for the error message buffer size. 2016-05-15 23:42:00 +02:00
vbaderks
8ce797d1ea Fixed a couple of output folder issues and some warnings 2015-10-01 22:33:48 +02:00
Victor Derks
15491484ef Extended the public API to return (optional) a descriptive text about the failure. 2015-06-13 20:47:48 +02:00
Victor Derks
029aa0745e Updated enum JLS_ERROR to enum class charls::ApiResult (+ helper enum for C projects) 2015-05-30 22:22:25 +02:00
Victor Derks
bf2fa9c996 Convert (C99) updated.
remaining items: jfif header, verify output, limit conversion options, name change to bmp2jls?
2015-05-01 11:03:31 +02:00
Victor Derks
668ce3f913 Extended the convert (bmp2jls) C sample (not complete yet) 2015-04-26 23:22:07 +02:00
Victor Derks
2f90443d98 Updated enum interleavemode to C++ 11 enum class charls::InterleaveMode
Added enum CharlsInterleaveMode to support C projects
2015-04-11 20:29:24 +02:00
Victor Derks
a5fddc234a Updated name of external header file from interface.h to charls.h to make it more clear which header files external apps should include. 2015-01-02 11:12:56 +01:00
vbaderks
c41d3cf807 Initial code for BMP to JPEG-LS convert sample 2014-12-30 12:20:15 +01:00