(61d00a474) v0.9.7.1

This commit is contained in:
Regalis
2020-03-04 13:04:10 +01:00
parent 3c50efa5c9
commit 3c09ebe02f
5086 changed files with 786063 additions and 295871 deletions

View File

@@ -1,36 +0,0 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27004.2009
MinimumVisualStudioVersion = 15.0.26124.0
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Concentus", "Concentus\Concentus.csproj", "{0E7FEE6A-15E5-4A4E-943C-80276003478C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Debug|x64.ActiveCfg = Debug|Any CPU
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Debug|x64.Build.0 = Debug|Any CPU
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Debug|x86.ActiveCfg = Debug|Any CPU
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Debug|x86.Build.0 = Debug|Any CPU
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Release|Any CPU.Build.0 = Release|Any CPU
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Release|x64.ActiveCfg = Release|Any CPU
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Release|x64.Build.0 = Release|Any CPU
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Release|x86.ActiveCfg = Release|Any CPU
{0E7FEE6A-15E5-4A4E-943C-80276003478C}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {4EE53631-CA03-4D29-A3A0-D17B4E57A175}
EndGlobalSection
EndGlobal

View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>

View File

@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
<PackageId>Concentus</PackageId>
<Authors>Logan Stromberg</Authors>
<Version>1.1.6.0</Version>
<Copyright>Copyright © Xiph.Org Foundation, Skype Limited, CSIRO, Microsoft Corp.</Copyright>
<Description>This package is a pure portable C# implementation of the Opus audio compression codec (see https://opus-codec.org/ for more details). This package contains the Opus encoder, decoder, multistream codecs, repacketizer, as well as a port of the libspeexdsp resampler. It does NOT contain code to parse .ogg or .opus container files or to manage RTP packet streams</Description>
<PackageLicenseExpression />
<PackageProjectUrl>https://github.com/lostromb/concentus</PackageProjectUrl>
</PropertyGroup>
</Project>

View File

@@ -1,201 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{0E7FEE6A-15E5-4A4E-943C-80276003478C}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Concentus</RootNamespace>
<AssemblyName>Concentus</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<ReleaseVersion>0.9.0.0</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="Celt\AutocorrelationUnsafe.cs" />
<Compile Include="Celt\Bands.cs" />
<Compile Include="Celt\CeltCommon.cs" />
<Compile Include="Celt\CeltConstants.cs" />
<Compile Include="Celt\CeltLPC.cs" />
<Compile Include="Celt\CeltLPCUnsafe.cs" />
<Compile Include="Celt\CeltPitchXCorr.cs" />
<Compile Include="Celt\CeltPitchXCorrUnsafe.cs" />
<Compile Include="Celt\CWRS.cs" />
<Compile Include="Celt\Enums\Spread.cs" />
<Compile Include="Celt\Kernels.cs" />
<Compile Include="Celt\KernelsUnsafe.cs" />
<Compile Include="Celt\KissFFT.cs" />
<Compile Include="Celt\KissFFTUnsafe.cs" />
<Compile Include="Celt\Laplace.cs" />
<Compile Include="Celt\MDCT.cs" />
<Compile Include="Celt\Pitch.cs" />
<Compile Include="Celt\QuantizeBands.cs" />
<Compile Include="Celt\Rate.cs" />
<Compile Include="Celt\Structs\AnalysisInfo.cs" />
<Compile Include="Celt\Structs\CELTDecoder.cs" />
<Compile Include="Celt\Structs\CeltEncoder.cs" />
<Compile Include="Celt\Structs\CELTMode.cs" />
<Compile Include="Celt\Structs\FFTState.cs" />
<Compile Include="Celt\Structs\MDCTLookup.cs" />
<Compile Include="Celt\Structs\PulseCache.cs" />
<Compile Include="Celt\Tables.cs" />
<Compile Include="Celt\VQ.cs" />
<Compile Include="Common\Autocorrelation.cs" />
<Compile Include="Common\CPlusPlus\Arrays.cs" />
<Compile Include="Common\CPlusPlus\BoxedValue.cs" />
<Compile Include="Common\CPlusPlus\Pointer.cs" />
<Compile Include="Common\EntropyCoder.cs" />
<Compile Include="Common\Inlines.cs" />
<Compile Include="Common\Resampler.cs" />
<Compile Include="Opus\Analysis.cs" />
<Compile Include="Opus\CodecHelpers.cs" />
<Compile Include="Opus\Downmix.cs" />
<Compile Include="Opus\Enums\OpusApplication.cs" />
<Compile Include="Opus\Enums\OpusBandwidth.cs" />
<Compile Include="Opus\Enums\OpusControl.cs" />
<Compile Include="Opus\Enums\OpusError.cs" />
<Compile Include="Opus\Enums\OpusFramesize.cs" />
<Compile Include="Opus\Enums\OpusMode.cs" />
<Compile Include="Opus\Enums\OpusSignal.cs" />
<Compile Include="Opus\MultiLayerPerceptron.cs" />
<Compile Include="Opus\OpusCompare.cs" />
<Compile Include="Opus\OpusConstants.cs" />
<Compile Include="Opus\OpusException.cs" />
<Compile Include="Opus\OpusMultistream.cs" />
<Compile Include="Opus\Structs\ChannelLayout.cs" />
<Compile Include="Opus\Structs\MLP.cs" />
<Compile Include="Opus\Structs\OpusDecoder.cs" />
<Compile Include="Opus\Structs\OpusEncoder.cs" />
<Compile Include="Opus\Structs\OpusMSDecoder.cs" />
<Compile Include="Opus\Structs\OpusMSEncoder.cs" />
<Compile Include="Opus\Structs\OpusPacketInfo.cs" />
<Compile Include="Opus\Structs\OpusRepacketizer.cs" />
<Compile Include="Opus\Structs\StereoWidthState.cs" />
<Compile Include="Opus\Structs\TonalityAnalysisState.cs" />
<Compile Include="Opus\Structs\VorbisLayout.cs" />
<Compile Include="Opus\Tables.cs" />
<Compile Include="Silk\ApplySineWindow.cs" />
<Compile Include="Silk\BurgModified.cs" />
<Compile Include="Silk\BurgModifiedUnsafe.cs" />
<Compile Include="Silk\BWExpander.cs" />
<Compile Include="Silk\CNG.cs" />
<Compile Include="Silk\CodeSigns.cs" />
<Compile Include="Silk\CorrelateMatrix.cs" />
<Compile Include="Silk\DecodeAPI.cs" />
<Compile Include="Silk\DecodeCore.cs" />
<Compile Include="Silk\DecodeIndices.cs" />
<Compile Include="Silk\DecodeParameters.cs" />
<Compile Include="Silk\DecodePitch.cs" />
<Compile Include="Silk\DecodePulses.cs" />
<Compile Include="Silk\EncodeAPI.cs" />
<Compile Include="Silk\EncodeIndices.cs" />
<Compile Include="Silk\EncodePulses.cs" />
<Compile Include="Silk\Enums\DecoderAPIFlag.cs" />
<Compile Include="Silk\Enums\SilkError.cs" />
<Compile Include="Silk\Filters.cs" />
<Compile Include="Silk\FindLPC.cs" />
<Compile Include="Silk\FindLTP.cs" />
<Compile Include="Silk\FindPitchLags.cs" />
<Compile Include="Silk\FindPredCoefs.cs" />
<Compile Include="Silk\GainQuantization.cs" />
<Compile Include="Silk\HPVariableCutoff.cs" />
<Compile Include="Silk\K2A.cs" />
<Compile Include="Silk\LinearAlgebra.cs" />
<Compile Include="Silk\LPCInversePredGain.cs" />
<Compile Include="Silk\LTPAnalysisFilter.cs" />
<Compile Include="Silk\LTPScaleControl.cs" />
<Compile Include="Silk\NLSF.cs" />
<Compile Include="Silk\NoiseShapeAnalysis.cs" />
<Compile Include="Silk\PitchAnalysisCore.cs" />
<Compile Include="Silk\PLC.cs" />
<Compile Include="Silk\ProcessGains.cs" />
<Compile Include="Silk\QuantizeLTPGains.cs" />
<Compile Include="Silk\RegularizeCorrelations.cs" />
<Compile Include="Silk\Resampler.cs" />
<Compile Include="Silk\ResidualEnergy.cs" />
<Compile Include="Silk\Schur.cs" />
<Compile Include="Silk\ShellCoder.cs" />
<Compile Include="Silk\Sigmoid.cs" />
<Compile Include="Silk\SilkConstants.cs" />
<Compile Include="Silk\Sort.cs" />
<Compile Include="Silk\Stereo.cs" />
<Compile Include="Silk\Structs\CNGState.cs" />
<Compile Include="Silk\Structs\DecControlState.cs" />
<Compile Include="Silk\Structs\EncControlState.cs" />
<Compile Include="Silk\Structs\NLSFCodebook.cs" />
<Compile Include="Silk\Structs\PLCStruct.cs" />
<Compile Include="Silk\Structs\SideInfoIndices.cs" />
<Compile Include="Silk\Structs\SilkChannelDecoder.cs" />
<Compile Include="Silk\Structs\SilkChannelEncoder.cs" />
<Compile Include="Silk\Structs\SilkDecoder.cs" />
<Compile Include="Silk\Structs\SilkDecoderControl.cs" />
<Compile Include="Silk\Structs\SilkEncoder.cs" />
<Compile Include="Silk\Structs\SilkEncoderControl.cs" />
<Compile Include="Silk\Structs\SilkLPState.cs" />
<Compile Include="Silk\Structs\SilkNSQState.cs" />
<Compile Include="Silk\Structs\SilkPrefilterState.cs" />
<Compile Include="Silk\Structs\SilkResamplerState.cs" />
<Compile Include="Silk\Structs\SilkShapeState.cs" />
<Compile Include="Silk\Structs\SilkVADState.cs" />
<Compile Include="Silk\Structs\StereoDecodeState.cs" />
<Compile Include="Silk\Structs\StereoEncodeState.cs" />
<Compile Include="Silk\Structs\TOCStruct.cs" />
<Compile Include="Silk\SumSqrShift.cs" />
<Compile Include="Silk\Tables.cs" />
<Compile Include="Silk\TuningParameters.cs" />
<Compile Include="Silk\VoiceActivityDetection.cs" />
<Compile Include="Silk\VQ_WMat_EC.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>