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/AudioInputConfiguration.cs | 29 -------------------------
1 file changed, 29 deletions(-)
delete mode 100644 Ryujinx.Audio/Common/AudioInputConfiguration.cs
(limited to 'Ryujinx.Audio/Common/AudioInputConfiguration.cs')
diff --git a/Ryujinx.Audio/Common/AudioInputConfiguration.cs b/Ryujinx.Audio/Common/AudioInputConfiguration.cs
deleted file mode 100644
index d3cfdd47..00000000
--- a/Ryujinx.Audio/Common/AudioInputConfiguration.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using System.Runtime.InteropServices;
-
-namespace Ryujinx.Audio.Common
-{
- ///
- /// Audio user input configuration.
- ///
- [StructLayout(LayoutKind.Sequential, Pack = 1)]
- public struct AudioInputConfiguration
- {
- ///
- /// The target sample rate of the user.
- ///
- /// Only 48000Hz is considered valid, other sample rates will be refused.
- public uint SampleRate;
-
- ///
- /// The target channel count of the user.
- ///
- /// Only Stereo and Surround are considered valid, other configurations will be refused.
- /// Not used in audin.
- public ushort ChannelCount;
-
- ///
- /// Reserved/unused.
- ///
- private ushort _reserved;
- }
-}
\ No newline at end of file
--
cgit v1.2.3