2020-12-02 00:23:43 +01:00
|
|
|
using Ryujinx.Memory;
|
2020-08-18 03:49:37 +02:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
namespace Ryujinx.Audio.Renderer.Dsp.State
|
|
|
|
{
|
2021-09-19 12:29:19 +02:00
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1, Size = 0x80)]
|
2020-08-18 03:49:37 +02:00
|
|
|
public struct AuxiliaryBufferHeader
|
|
|
|
{
|
2021-09-19 12:29:19 +02:00
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1, Size = 0x40)]
|
2020-08-18 03:49:37 +02:00
|
|
|
public struct AuxiliaryBufferInfo
|
|
|
|
{
|
|
|
|
private const uint ReadOffsetPosition = 0x0;
|
|
|
|
private const uint WriteOffsetPosition = 0x4;
|
2021-09-19 12:29:19 +02:00
|
|
|
private const uint LostSampleCountPosition = 0x8;
|
|
|
|
private const uint TotalSampleCountPosition = 0xC;
|
2020-08-18 03:49:37 +02:00
|
|
|
|
|
|
|
public uint ReadOffset;
|
|
|
|
public uint WriteOffset;
|
2021-09-19 12:29:19 +02:00
|
|
|
public uint LostSampleCount;
|
|
|
|
public uint TotalSampleCount;
|
|
|
|
private unsafe fixed uint _unknown[12];
|
2020-08-18 03:49:37 +02:00
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
public static uint GetReadOffset(IVirtualMemoryManager manager, ulong bufferAddress)
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
return manager.Read<uint>(bufferAddress + ReadOffsetPosition);
|
|
|
|
}
|
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
public static uint GetWriteOffset(IVirtualMemoryManager manager, ulong bufferAddress)
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
return manager.Read<uint>(bufferAddress + WriteOffsetPosition);
|
|
|
|
}
|
|
|
|
|
2021-09-19 12:29:19 +02:00
|
|
|
public static uint GetLostSampleCount(IVirtualMemoryManager manager, ulong bufferAddress)
|
|
|
|
{
|
|
|
|
return manager.Read<uint>(bufferAddress + LostSampleCountPosition);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static uint GetTotalSampleCount(IVirtualMemoryManager manager, ulong bufferAddress)
|
|
|
|
{
|
|
|
|
return manager.Read<uint>(bufferAddress + TotalSampleCountPosition);
|
|
|
|
}
|
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
public static void SetReadOffset(IVirtualMemoryManager manager, ulong bufferAddress, uint value)
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
manager.Write(bufferAddress + ReadOffsetPosition, value);
|
|
|
|
}
|
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
public static void SetWriteOffset(IVirtualMemoryManager manager, ulong bufferAddress, uint value)
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
manager.Write(bufferAddress + WriteOffsetPosition, value);
|
|
|
|
}
|
2021-09-19 12:29:19 +02:00
|
|
|
|
|
|
|
public static void SetLostSampleCount(IVirtualMemoryManager manager, ulong bufferAddress, uint value)
|
|
|
|
{
|
|
|
|
manager.Write(bufferAddress + LostSampleCountPosition, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void SetTotalSampleCount(IVirtualMemoryManager manager, ulong bufferAddress, uint value)
|
|
|
|
{
|
|
|
|
manager.Write(bufferAddress + TotalSampleCountPosition, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void Reset(IVirtualMemoryManager manager, ulong bufferAddress)
|
|
|
|
{
|
|
|
|
// NOTE: Lost sample count is never reset, since REV10.
|
|
|
|
manager.Write(bufferAddress + ReadOffsetPosition, 0UL);
|
|
|
|
manager.Write(bufferAddress + TotalSampleCountPosition, 0);
|
|
|
|
}
|
2020-08-18 03:49:37 +02:00
|
|
|
}
|
|
|
|
|
2021-09-19 12:29:19 +02:00
|
|
|
public AuxiliaryBufferInfo CpuBufferInfo;
|
|
|
|
public AuxiliaryBufferInfo DspBufferInfo;
|
2020-08-18 03:49:37 +02:00
|
|
|
}
|
2022-07-25 20:46:33 +02:00
|
|
|
}
|