├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── WEMSharp.sln ├── WEMSharp ├── BitStream.cs ├── CRC32.cs ├── CodebookLibrary.cs ├── OggStream.cs ├── Packet.cs ├── Packet8.cs ├── Properties │ └── AssemblyInfo.cs ├── WEMFile.cs └── WEMSharp.csproj └── WEMSharpTests ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs └── WEMSharpTests.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/README.md -------------------------------------------------------------------------------- /WEMSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharp.sln -------------------------------------------------------------------------------- /WEMSharp/BitStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharp/BitStream.cs -------------------------------------------------------------------------------- /WEMSharp/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharp/CRC32.cs -------------------------------------------------------------------------------- /WEMSharp/CodebookLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharp/CodebookLibrary.cs -------------------------------------------------------------------------------- /WEMSharp/OggStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharp/OggStream.cs -------------------------------------------------------------------------------- /WEMSharp/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharp/Packet.cs -------------------------------------------------------------------------------- /WEMSharp/Packet8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharp/Packet8.cs -------------------------------------------------------------------------------- /WEMSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WEMSharp/WEMFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharp/WEMFile.cs -------------------------------------------------------------------------------- /WEMSharp/WEMSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharp/WEMSharp.csproj -------------------------------------------------------------------------------- /WEMSharpTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharpTests/App.config -------------------------------------------------------------------------------- /WEMSharpTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharpTests/Program.cs -------------------------------------------------------------------------------- /WEMSharpTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharpTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WEMSharpTests/WEMSharpTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crauzer/WEMSharp/HEAD/WEMSharpTests/WEMSharpTests.csproj --------------------------------------------------------------------------------