28 Commits

Author SHA1 Message Date
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
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
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
91ee906e7d
Configure SonarCloud scope analysis (#260)
- sonar.cfamily.cache.enabled is obsolete: remove it
- Only analyze the source code of the library
- Exclude the template source code file scan_decoder_impl and scan_encoder_imp. SonarCloud has problems to see that these are different files and cannot be merged.
2023-04-18 10:24:38 +02: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
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
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
c4d6710f4d
Enable MSVC warnings that are now reliable detected
In the past some compiler warnings were disabled, as there were too many false warnings.
2021-01-10 16:48:17 +01:00
Victor Derks
6a30e19167
Mask high input bits during encoding
When encoding images ensure that only the valid bits are used. For bit size 16 and 8 there is no change and memcpy will be used.
Encoding with masking is not measurable slower.

Setting explicit InlineFunctionExpansion for debug needs to be removed as it prevents debugging.  For release mode it is also not needed as MaxSpeed will already enable it.

Mask high input bits during encoding (interleave_mode::sample)

Mask high input bits during encoding
2021-01-01 23:00:42 +01:00
Victor Derks
fa363837e0
Remove .NET adapter (moved to its own repository)
The .NET adapter has been moved to its own repository at https://github.com/team-charls/charls-native-dotnet

The .NET adapter in this repository was for .NET standard 2.0, which has been replaced by .net5.0
Having the .NET adapter in its own repository makes releasing easier and many uses case only require the "pure" C++ native library.
2020-11-13 21:42:01 +01:00
Victor Derks
c057f6b189 Remove legacy methods JpegLsDecodeStream and JpegLsReadHeaderStream
Additional step into the direction to the new callback API
2020-10-02 23:57:08 +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
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
73dd7811d4 Add an american fuzzy lop test application (#36)
To make it possible to use the american fuzzy lop (afl) fuzzing framework, add a test application that can be used to fuzz the decoding process.
2020-02-21 12:30:44 +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
85581338e2 Add a C++ sample and an initial design for a C++ API
CharLS is a C++ based implementation, but provides a C interface for a stable ABI. As an initial step, create a C++ sample application to protoype a header only C++ API.
2018-11-22 23:41:18 +01:00
Victor Derks
5a349b6f0e Move the C# projects from the net to dotnet/src and dotnet/test folders 2018-11-21 23:03:10 +01:00
Victor Derks
cb6d12271b Replace the CharLSNetTest.csproj format with the new .NET project format.
Note: it is not possible to use .NET Core for this unit test project. Only 1 dotnet.exe can be in the path, and while both the x64 and x86 version can be installed, only 1 can be active. This makes it impossible to test both the x64 and the x86 build.

Other changes:
- Remove JpegLSBitmapDecoder (unsupported by .NET Core)
- Rename solution name from Win32 to x86 to ensure CI build works.
2018-11-21 21:50:48 +01:00
Victor Derks
9bb9a316de Correct reference to unit test checked x64 build 2018-05-31 14:15:05 +02:00
Victor Derks
bb30a699a8 Update CharLSNet.csproj to target netstandard2.0
Targeting .NET Standard 2.0 allows usage of the .NET wrapper library on all platforms that support .NET core or the .NET framework.
2017-10-04 00:05:47 +02:00
Victor Derks
44004d1a72 Remove support for Visual Studio 2015
As Visual Studio 2017 is available, it doesn't makes sense to include support for 2015. VS 2017 has much better support for C++14 then VS  2015.
2017-10-03 22:17:42 +02:00
Victor Derks
7c39d9bd2e Removed Visual Studio 2008 support from the master git branch. VS 2008 cannot handle C++ v11.
Note: to use Visual Studio 2008, please use the 1.x-master git branch (C++ v03 compatible)
2014-06-26 10:14:06 +02:00
Victor Derks
9a0acdd94f Moved all folders 2 levels up to get rid of the legacy Subversion structure
Note: the git mv command was used to do this. Sometimes git log --follow is needed to get the full history of moved files.
2014-06-26 09:22:39 +02:00
jdv_cp
7c7f477b82 move continuous development to trunk/charls 2010-11-18 13:51:53 -08:00
jdv_cp
41b9fd1de5 C header support 2010-06-26 13:57:23 -07:00
jdv_cp
241254c715 64 bit support 2009-03-12 14:43:35 -07:00
jdv_cp
babad3d0eb initial 2009-02-22 12:53:40 -08:00