mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-29 09:26:38 +00:00
24 lines
701 B
C#
24 lines
701 B
C#
namespace Ryujinx.Graphics.Nvdec.FFmpeg.Native
|
|
{
|
|
struct AVCodec501
|
|
{
|
|
#pragma warning disable CS0649 // Field is never assigned to
|
|
public unsafe byte* Name;
|
|
public unsafe byte* LongName;
|
|
public int Type;
|
|
public AVCodecID Id;
|
|
public int Capabilities;
|
|
public byte MaxLowRes;
|
|
public unsafe AVRational* SupportedFramerates;
|
|
public nint PixFmts;
|
|
public nint SupportedSamplerates;
|
|
public nint SampleFmts;
|
|
// Deprecated
|
|
public unsafe ulong* ChannelLayouts;
|
|
public unsafe nint PrivClass;
|
|
public nint Profiles;
|
|
public unsafe byte* WrapperName;
|
|
#pragma warning restore CS0649
|
|
}
|
|
}
|