blob: 8f8615dff7e2285fd2824c6114eeb979076ced3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using Ryujinx.Common.Memory;
using System.Runtime.InteropServices;
namespace Ryujinx.Horizon.Sdk.Codec.Detail
{
[StructLayout(LayoutKind.Sequential, Size = 0x118)]
struct HardwareOpusMultiStreamDecoderParameterInternalEx
{
public int SampleRate;
public int ChannelsCount;
public int NumberOfStreams;
public int NumberOfStereoStreams;
public OpusDecoderFlags Flags;
public uint Reserved;
public Array256<byte> ChannelMappings;
}
}
|