diff options
| author | TSR Berry <20988865+TSRBerry@users.noreply.github.com> | 2023-04-08 01:22:00 +0200 |
|---|---|---|
| committer | Mary <thog@protonmail.com> | 2023-04-27 23:51:14 +0200 |
| commit | cee712105850ac3385cd0091a923438167433f9f (patch) | |
| tree | 4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs | |
| parent | cd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff) | |
Move solution and projects to src
Diffstat (limited to 'Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs')
| -rw-r--r-- | Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs b/Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs deleted file mode 100644 index dbae17a9..00000000 --- a/Ryujinx.Audio/Renderer/Parameter/SplitterInParameterHeader.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System.Runtime.InteropServices; - -namespace Ryujinx.Audio.Renderer.Parameter -{ - /// <summary> - /// Input header for splitter update. - /// </summary> - [StructLayout(LayoutKind.Sequential, Pack = 1)] - public struct SplitterInParameterHeader - { - /// <summary> - /// Magic of the input header. - /// </summary> - public uint Magic; - - /// <summary> - /// The count of <see cref="SplitterInParameter"/> after the header. - /// </summary> - public uint SplitterCount; - - /// <summary> - /// The count of splitter destinations after the header and splitter info. - /// </summary> - public uint SplitterDestinationCount; - - /// <summary> - /// Reserved/unused. - /// </summary> - private unsafe fixed uint _reserved[5]; - - /// <summary> - /// The expected constant of any input splitter header. - /// </summary> - private const uint ValidMagic = 0x48444E53; - - /// <summary> - /// Check if the magic is valid. - /// </summary> - /// <returns>Returns true if the magic is valid.</returns> - public bool IsMagicValid() - { - return Magic == ValidMagic; - } - } -}
\ No newline at end of file |
