aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/Codec/Detail/HardwareOpusDecoderParameterInternal.cs
blob: 271a592c1e8aac4fe8b0669131f15ac938cb88f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System.Runtime.InteropServices;

namespace Ryujinx.Horizon.Sdk.Codec.Detail
{
    [StructLayout(LayoutKind.Sequential, Size = 0x8, Pack = 0x4)]
    struct HardwareOpusDecoderParameterInternal
    {
        public int SampleRate;
        public int ChannelsCount;
    }
}