Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,11 @@ https://www.fftw.org/doc/License-and-Copyright.html
https://www.gnu.org/licenses/gpl-2.0.html

Aurio.LibSampleRate:
Secret Rabbit Code (aka libsamplerate)
http://www.mega-nerd.com/SRC/
Released under the GNU General Public License, Version 2 (GPLv2)
https://www.gnu.org/licenses/gpl-2.0.html
LibSampleRate.NET and Secret Rabbit Code (aka libsamplerate)
https://github.com/protyposis/LibSampleRate.NET
https://github.com/libsndfile/libsamplerate
Released under the BSD-2-Clause license
https://opensource.org/license/bsd-2-clause/

Aurio.FftSharp:
FftSharp
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The easiest way of using Aurio is installing the [packages](#packages) through [
| Name | Description | Variable Rate Support | License |
| --- | ----------- | --- | --- |
| `Aurio` (core) | Managed [NAudio](https://github.com/naudio/NAudio) WDL resampler. Recommended for cross-platform use. | yes | MIT |
| `Aurio.LibSampleRate` | Native [`libsamplerate`](https://github.com/libsndfile/libsamplerate) (a.k.a. Secret Rabbit Code) library. Windows only*. | yes | GPL |
| `Aurio.LibSampleRate` | Native [libsamplerate](https://github.com/libsndfile/libsamplerate) (a.k.a. Secret Rabbit Code) library via [LibSampleRate.NET](https://github.com/protyposis/LibSampleRate.NET). Windows only*. | yes | BSD |
| `Aurio.Soxr` | Native [SoX Resampler](https://sourceforge.net/projects/soxr/) library. Windows only*. | yes (depending on config) | LGPL |

(*) Linux binary not integrated yet.
Expand Down
Binary file removed libs/libsamplerate-0.x64.dll
Binary file not shown.
45 changes: 0 additions & 45 deletions libs/libsamplerate-Makefile.msvc

This file was deleted.

13 changes: 0 additions & 13 deletions libs/libsamplerate-prepare.txt

This file was deleted.

6 changes: 1 addition & 5 deletions src/Aurio.LibSampleRate/Aurio.LibSampleRate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@
<None Include="..\Aurio.licenseheader" Link="Aurio.licenseheader" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\libs\libsamplerate-0.x64.dll">
<Link>libsamplerate-0.x64.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<PackagePath>runtimes/win-x64/native</PackagePath>
</Content>
<PackageReference Include="LibSampleRate" Version="1.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Aurio\Aurio.csproj" />
Expand Down
58 changes: 0 additions & 58 deletions src/Aurio.LibSampleRate/ConverterType.cs

This file was deleted.

34 changes: 0 additions & 34 deletions src/Aurio.LibSampleRate/IInteropWrapper.cs

This file was deleted.

112 changes: 0 additions & 112 deletions src/Aurio.LibSampleRate/Interop64.cs

This file was deleted.

69 changes: 0 additions & 69 deletions src/Aurio.LibSampleRate/Interop64Wrapper.cs

This file was deleted.

1 change: 1 addition & 0 deletions src/Aurio.LibSampleRate/Resampler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
//

using Aurio.Resampler;
using LibSampleRate;

namespace Aurio.LibSampleRate
{
Expand Down
Loading
Loading