2022-07-14 15:13:23 +02:00
|
|
|
namespace Ryujinx.Graphics.Nvdec.FFmpeg.Native
|
|
|
|
|
{
|
2022-11-02 09:26:50 +01:00
|
|
|
struct AVCodec501
|
2022-07-14 15:13:23 +02:00
|
|
|
{
|
2025-06-11 17:58:27 -05:00
|
|
|
|
2022-07-14 15:13:23 +02:00
|
|
|
public unsafe byte* Name;
|
|
|
|
|
public unsafe byte* LongName;
|
|
|
|
|
public int Type;
|
|
|
|
|
public AVCodecID Id;
|
|
|
|
|
public int Capabilities;
|
|
|
|
|
public byte MaxLowRes;
|
|
|
|
|
public unsafe AVRational* SupportedFramerates;
|
2024-10-26 08:46:41 -05:00
|
|
|
public nint PixFmts;
|
|
|
|
|
public nint SupportedSamplerates;
|
|
|
|
|
public nint SampleFmts;
|
2022-07-14 15:13:23 +02:00
|
|
|
// Deprecated
|
|
|
|
|
public unsafe ulong* ChannelLayouts;
|
2024-10-26 08:46:41 -05:00
|
|
|
public unsafe nint PrivClass;
|
|
|
|
|
public nint Profiles;
|
2022-07-14 15:13:23 +02:00
|
|
|
public unsafe byte* WrapperName;
|
2025-06-11 17:58:27 -05:00
|
|
|
|
2022-07-14 15:13:23 +02:00
|
|
|
}
|
|
|
|
|
}
|