2020-07-12 05:07:01 +02:00
|
|
|
|
using Ryujinx.Common.Memory;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Nvdec
|
|
|
|
|
{
|
|
|
|
|
// Note: Most of those names are not official.
|
2020-08-06 23:40:41 +02:00
|
|
|
|
struct NvdecRegisters
|
2020-07-12 05:07:01 +02:00
|
|
|
|
{
|
2020-08-06 23:40:41 +02:00
|
|
|
|
#pragma warning disable CS0649
|
|
|
|
|
public Array64<uint> Reserved0;
|
|
|
|
|
public Array64<uint> Reserved100;
|
2020-07-12 05:07:01 +02:00
|
|
|
|
public uint SetCodecID;
|
2020-08-06 23:40:41 +02:00
|
|
|
|
public Array63<uint> Reserved204;
|
2020-07-12 05:07:01 +02:00
|
|
|
|
public uint Execute;
|
2020-08-06 23:40:41 +02:00
|
|
|
|
public Array63<uint> Reserved304;
|
2020-07-12 05:07:01 +02:00
|
|
|
|
public uint SetPlatformID;
|
|
|
|
|
public uint SetPictureInfoOffset;
|
|
|
|
|
public uint SetBitstreamOffset;
|
|
|
|
|
public uint SetFrameNumber;
|
|
|
|
|
public uint SetH264SliceDataOffsetsOffset; // Also used by VC1
|
|
|
|
|
public uint SetH264MvDumpOffset; // Also used by VC1
|
|
|
|
|
public uint Unknown418; // Used by VC1
|
|
|
|
|
public uint Unknown41C;
|
|
|
|
|
public uint Unknown420; // Used by VC1
|
|
|
|
|
public uint SetFrameStatsOffset;
|
|
|
|
|
public uint SetH264LastSurfaceLumaOffset;
|
|
|
|
|
public uint SetH264LastSurfaceChromaOffset;
|
|
|
|
|
public Array17<uint> SetSurfaceLumaOffset;
|
|
|
|
|
public Array17<uint> SetSurfaceChromaOffset;
|
|
|
|
|
public uint Unknown4B8;
|
|
|
|
|
public uint Unknown4BC;
|
|
|
|
|
public uint SetCryptoData0Offset;
|
|
|
|
|
public uint SetCryptoData1Offset;
|
|
|
|
|
public Array62<uint> Unknown4C8;
|
|
|
|
|
public uint SetVp9EntropyProbsOffset;
|
|
|
|
|
public uint SetVp9BackwardUpdatesOffset;
|
|
|
|
|
public uint SetVp9LastFrameSegMapOffset;
|
|
|
|
|
public uint SetVp9CurrFrameSegMapOffset;
|
|
|
|
|
public uint Unknown5D0;
|
|
|
|
|
public uint SetVp9LastFrameMvsOffset;
|
|
|
|
|
public uint SetVp9CurrFrameMvsOffset;
|
|
|
|
|
public uint Unknown5DC;
|
2020-08-06 23:40:41 +02:00
|
|
|
|
#pragma warning restore CS0649
|
2020-07-12 05:07:01 +02:00
|
|
|
|
}
|
|
|
|
|
}
|