Libaec 0.2.0

dotnet add package Libaec --version 0.2.0                
NuGet\Install-Package Libaec -Version 0.2.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Libaec" Version="0.2.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Libaec --version 0.2.0                
#r "nuget: Libaec, 0.2.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Libaec as a Cake Addin
#addin nuget:?package=Libaec&version=0.2.0

// Install Libaec as a Cake Tool
#tool nuget:?package=Libaec&version=0.2.0                

Libaec

Libaec is a .NET interop wrapper for the native libaec C implementation. It provides a managed interface to the library, allowing .NET developers to easily incorporate AEC (Adaptive Entropy Coding) decoding functionality into their projects. (managed API for encoding not yet implemented)

Usage

Here's a basic example of how to use Libaec:

using Libaec;

int sourceLength = ...
byte[] source = ...

var decoder = new AecDecoder(
	bitsPerSample: 32,
	flags: AecDataFlags.AEC_DATA_SIGNED | AecDataFlags.AEC_DATA_PREPROCESS,
	blockSize: 16,
	rsi: 128);

var dest = decoder.Decode(source, sourceLength, nbSamples);

For direct access to the libaec API, you can use the Libaec.Interop class with the AecStream struct.

License

This project is licensed under the BSD 2-Clause "Simplified" License. See the LICENSE file for details.

Acknowledgements

This project is a interop of the libaec library. Many thanks to the original authors and contributors of libaec : Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Libaec:

Package Downloads
NGrib

NGrib is a .NET Standard library to read GRIB (GRid in Binary) files. GRIB is a gridded data standard from WMO (World Meteorological Organisation) and is used by many meteorological organisation.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.0 139 8/5/2024
0.1.0 62 8/3/2024