2021-02-26 01:11:56 +01:00
|
|
|
using Ryujinx.Common.Memory;
|
2020-08-18 03:49:37 +02:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2021-02-26 01:11:56 +01:00
|
|
|
namespace Ryujinx.Audio.Common
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
/// <summary>
|
2021-02-26 01:11:56 +01:00
|
|
|
/// Audio system output configuration.
|
2020-08-18 03:49:37 +02:00
|
|
|
/// </summary>
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
2021-02-26 01:11:56 +01:00
|
|
|
public struct AudioOutputConfiguration
|
2020-08-18 03:49:37 +02:00
|
|
|
{
|
|
|
|
/// <summary>
|
2021-02-26 01:11:56 +01:00
|
|
|
/// The target sample rate of the system.
|
2020-08-18 03:49:37 +02:00
|
|
|
/// </summary>
|
2021-02-26 01:11:56 +01:00
|
|
|
public uint SampleRate;
|
2020-08-18 03:49:37 +02:00
|
|
|
|
|
|
|
/// <summary>
|
2021-02-26 01:11:56 +01:00
|
|
|
/// The target channel count of the system.
|
2020-08-18 03:49:37 +02:00
|
|
|
/// </summary>
|
2021-02-26 01:11:56 +01:00
|
|
|
public uint ChannelCount;
|
2020-08-18 03:49:37 +02:00
|
|
|
|
|
|
|
/// <summary>
|
2021-02-26 01:11:56 +01:00
|
|
|
/// Reserved/unused
|
2020-08-18 03:49:37 +02:00
|
|
|
/// </summary>
|
2021-02-26 01:11:56 +01:00
|
|
|
public SampleFormat SampleFormat;
|
2020-08-18 03:49:37 +02:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Reserved/unused.
|
|
|
|
/// </summary>
|
2021-02-26 01:11:56 +01:00
|
|
|
private Array3<byte> _padding;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The initial audio system state.
|
|
|
|
/// </summary>
|
|
|
|
public AudioDeviceState AudioOutState;
|
2020-08-18 03:49:37 +02:00
|
|
|
}
|
2022-07-25 20:46:33 +02:00
|
|
|
}
|