MVerb.Net 1.0.0

dotnet add package MVerb.Net --version 1.0.0
                    
NuGet\Install-Package MVerb.Net -Version 1.0.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="MVerb.Net" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MVerb.Net" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="MVerb.Net" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MVerb.Net --version 1.0.0
                    
#r "nuget: MVerb.Net, 1.0.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.
#:package MVerb.Net@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MVerb.Net&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=MVerb.Net&version=1.0.0
                    
Install as a Cake Tool

MVerb.Net

MVerb.Net is a faithful C# port of Martin Eastwood's MVerb stereo reverberator. It preserves the upstream single-precision arithmetic, delay geometry, control-rate updates, block-based smoothing, reset behavior, and sample-by-sample state progression.

The package targets .NET Standard 2.1, .NET 8, and .NET 10. Its parity suite processes 153,600 stereo frames across 12 native scenarios and compares 307,265 observations at their raw IEEE 754 binary32 representation. Managed output is bit-identical to the GCC reference for every observation. MSVC remains a separate native portability check because its long feedback trajectories dephase from GCC; it is not treated as a second managed parity oracle. See Parity verification and the compact MSVC portability report for the exact evidence and regeneration procedure.

Install

dotnet add package MVerb.Net --version 1.0.0

Use

using Reverb = MVerb.MVerb;

var reverb = new Reverb();
reverb.SetSampleRate(48_000f);
reverb.SetParameter(Reverb.Parameter.Decay, 0.7f);
reverb.SetParameter(Reverb.Parameter.Mix, 0.35f);

reverb.Process(inputLeft, inputRight, outputLeft, outputRight, inputLeft.Length);

MVerb's controls normally accept values from zero to one. They are intentionally not clamped because the native implementation does not clamp them. GetParameter also preserves the original display-oriented percentage scaling, including its transformed damping and size results.

The frame count supplied to Process must fit all four spans. Block boundaries are behaviorally significant: each call ramps control smoothing over that call's frame count, exactly like native MVerb. Per-channel input and output spans may alias for in-place processing.

Repository layout

  • src/MVerb.Net contains the package implementation.
  • src/MVerb.Net.Tests contains managed parity and contract tests plus the committed GCC fixture.
  • src/MVerb.Net.Demo is a minimal executable example.
  • reference/mverb is the exact upstream source revision used for verification.
  • tools/parity builds the native capture harness and regenerates fixtures.
  • tools/package validates and smoke-tests package artifacts.

Build and test

Visual Studio 2022 or newer can open MVerb.Net.sln directly. The command-line equivalent is:

dotnet build MVerb.Net.sln -c Release
dotnet test src/MVerb.Net.Tests/MVerb.Net.Tests.csproj -c Release -f net8.0 --no-build
dotnet test src/MVerb.Net.Tests/MVerb.Net.Tests.csproj -c Release -f net10.0 --no-build

Initialize the pinned upstream source before regenerating parity data:

git submodule update --init --recursive

On Windows, tools/parity/scripts/regenerate-parity.ps1 discovers Visual Studio for the transient MSVC portability profile and accepts an explicit g++.exe through -Compiler for GCC. Validate an MSVC capture with tools/parity/scripts/verify-msvc-portability.ps1. On Linux, use tools/parity/scripts/regenerate-parity.sh for the GCC parity fixture.

Attribution and license

MVerb.Net is a derivative of GPL-3.0-or-later code and is distributed under the same terms; see LICENSE. Upstream attribution and the matching license copy are preserved in THIRD_PARTY_NOTICES.md and LICENSES/mverb-GPL-3.0-or-later.txt.

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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.
  • .NETStandard 2.1

    • No dependencies.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 88 7/22/2026