From 4d84df94873a070f6f5c199438f957b24d8cf8a9 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Fri, 17 May 2024 16:46:43 -0300 Subject: Update audio renderer to REV12: Add support for splitter biquad filter (#6813) * Update audio renderer to REV12: Add support for splitter biquad filter * Formatting * Official names * Update BiquadFilterState size + other fixes * Update tests * Update comment for version 2 * Size test for SplitterDestinationVersion2 * Should use Volume1 if no ramp --- .../Parameter/SplitterDestinationInParameter.cs | 67 ---------------------- 1 file changed, 67 deletions(-) delete mode 100644 src/Ryujinx.Audio/Renderer/Parameter/SplitterDestinationInParameter.cs (limited to 'src/Ryujinx.Audio/Renderer/Parameter/SplitterDestinationInParameter.cs') diff --git a/src/Ryujinx.Audio/Renderer/Parameter/SplitterDestinationInParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/SplitterDestinationInParameter.cs deleted file mode 100644 index b74b67be..00000000 --- a/src/Ryujinx.Audio/Renderer/Parameter/SplitterDestinationInParameter.cs +++ /dev/null @@ -1,67 +0,0 @@ -using Ryujinx.Common.Utilities; -using System; -using System.Runtime.InteropServices; - -namespace Ryujinx.Audio.Renderer.Parameter -{ - /// - /// Input header for a splitter destination update. - /// - [StructLayout(LayoutKind.Sequential, Pack = 1)] - public struct SplitterDestinationInParameter - { - /// - /// Magic of the input header. - /// - public uint Magic; - - /// - /// Target splitter destination data id. - /// - public int Id; - - /// - /// Mix buffer volumes storage. - /// - private MixArray _mixBufferVolume; - - /// - /// The mix to output the result of the splitter. - /// - public int DestinationId; - - /// - /// Set to true if in use. - /// - [MarshalAs(UnmanagedType.I1)] - public bool IsUsed; - - /// - /// Reserved/padding. - /// - private unsafe fixed byte _reserved[3]; - - [StructLayout(LayoutKind.Sequential, Size = 4 * Constants.MixBufferCountMax, Pack = 1)] - private struct MixArray { } - - /// - /// Mix buffer volumes. - /// - /// Used when a splitter id is specified in the mix. - public Span MixBufferVolume => SpanHelpers.AsSpan(ref _mixBufferVolume); - - /// - /// The expected constant of any input header. - /// - private const uint ValidMagic = 0x44444E53; - - /// - /// Check if the magic is valid. - /// - /// Returns true if the magic is valid. - public readonly bool IsMagicValid() - { - return Magic == ValidMagic; - } - } -} -- cgit v1.2.3