2021-09-29 00:43:40 +02:00
|
|
|
using Ryujinx.Graphics.Nvdec.Types.Vp9;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Nvdec
|
|
|
|
{
|
|
|
|
struct NvdecStatus
|
|
|
|
{
|
2023-06-25 21:44:42 +02:00
|
|
|
#pragma warning disable CS0649 // Field is never assigned to
|
2021-09-29 00:43:40 +02:00
|
|
|
public uint MbsCorrectlyDecoded;
|
|
|
|
public uint MbsInError;
|
|
|
|
public uint Reserved;
|
|
|
|
public uint ErrorStatus;
|
|
|
|
public FrameStats Stats;
|
|
|
|
public uint SliceHeaderErrorCode;
|
|
|
|
#pragma warning restore CS0649
|
|
|
|
}
|
2023-06-25 21:44:42 +02:00
|
|
|
}
|