2018-06-23 07:00:14 +02:00
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Aud
|
2018-06-23 07:00:14 +02:00
|
|
|
|
{
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
|
struct AudioRendererParameter
|
|
|
|
|
{
|
|
|
|
|
public int SampleRate;
|
|
|
|
|
public int SampleCount;
|
|
|
|
|
public int Unknown8;
|
2018-07-15 04:57:41 +02:00
|
|
|
|
public int MixCount;
|
2018-06-23 07:00:14 +02:00
|
|
|
|
public int VoiceCount;
|
|
|
|
|
public int SinkCount;
|
|
|
|
|
public int EffectCount;
|
2018-07-15 04:57:41 +02:00
|
|
|
|
public int PerformanceManagerCount;
|
|
|
|
|
public int VoiceDropEnable;
|
2018-06-23 07:00:14 +02:00
|
|
|
|
public int SplitterCount;
|
2018-07-15 04:57:41 +02:00
|
|
|
|
public int SplitterDestinationDataCount;
|
2018-06-23 07:00:14 +02:00
|
|
|
|
public int Unknown2C;
|
|
|
|
|
public int Revision;
|
|
|
|
|
}
|
|
|
|
|
}
|