mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-24 23:47:10 +02:00
Better audren implementation (#179)
This commit is contained in:
parent
3e6afeb513
commit
5182361f4b
5 changed files with 119 additions and 16 deletions
22
Ryujinx.HLE/OsHle/Services/Aud/AudioRendererParameter.cs
Normal file
22
Ryujinx.HLE/OsHle/Services/Aud/AudioRendererParameter.cs
Normal file
|
@ -0,0 +1,22 @@
|
|||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Ryujinx.HLE.OsHle.Services.Aud
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
struct AudioRendererParameter
|
||||
{
|
||||
public int SampleRate;
|
||||
public int SampleCount;
|
||||
public int Unknown8;
|
||||
public int UnknownC;
|
||||
public int VoiceCount;
|
||||
public int SinkCount;
|
||||
public int EffectCount;
|
||||
public int Unknown1C;
|
||||
public int Unknown20;
|
||||
public int SplitterCount;
|
||||
public int Unknown28;
|
||||
public int Unknown2C;
|
||||
public int Revision;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue