mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:48:36 +00:00
21 lines
583 B
C#
21 lines
583 B
C#
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioRenderer
|
||
|
{
|
||
|
[StructLayout(LayoutKind.Sequential, Size = 0x38, Pack = 1)]
|
||
|
struct WaveBuffer
|
||
|
{
|
||
|
public long Position;
|
||
|
public long Size;
|
||
|
public int FirstSampleOffset;
|
||
|
public int LastSampleOffset;
|
||
|
public byte Looping;
|
||
|
public byte LastBuffer;
|
||
|
public short Unknown1A;
|
||
|
public int Unknown1C;
|
||
|
public long AdpcmLoopContextPosition;
|
||
|
public long AdpcmLoopContextSize;
|
||
|
public long Unknown30;
|
||
|
}
|
||
|
}
|