From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001
From: TSR Berry <20988865+TSRBerry@users.noreply.github.com>
Date: Sat, 8 Apr 2023 01:22:00 +0200
Subject: Move solution and projects to src
---
Ryujinx.Audio/Common/SampleFormat.cs | 43 ------------------------------------
1 file changed, 43 deletions(-)
delete mode 100644 Ryujinx.Audio/Common/SampleFormat.cs
(limited to 'Ryujinx.Audio/Common/SampleFormat.cs')
diff --git a/Ryujinx.Audio/Common/SampleFormat.cs b/Ryujinx.Audio/Common/SampleFormat.cs
deleted file mode 100644
index 901410a2..00000000
--- a/Ryujinx.Audio/Common/SampleFormat.cs
+++ /dev/null
@@ -1,43 +0,0 @@
-namespace Ryujinx.Audio.Common
-{
- ///
- /// Sample format definition.
- ///
- public enum SampleFormat : byte
- {
- ///
- /// Invalid sample format.
- ///
- Invalid = 0,
-
- ///
- /// PCM8 sample format. (unsupported)
- ///
- PcmInt8 = 1,
-
- ///
- /// PCM16 sample format.
- ///
- PcmInt16 = 2,
-
- ///
- /// PCM24 sample format. (unsupported)
- ///
- PcmInt24 = 3,
-
- ///
- /// PCM32 sample format.
- ///
- PcmInt32 = 4,
-
- ///
- /// PCM Float sample format.
- ///
- PcmFloat = 5,
-
- ///
- /// ADPCM sample format. (Also known as GC-ADPCM)
- ///
- Adpcm = 6
- }
-}
\ No newline at end of file
--
cgit v1.2.3