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