mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-27 19:56:23 +02:00
16 lines
416 B
C#
16 lines
416 B
C#
using Ryujinx.Graphics.Nvdec.Types.Vp9;
|
|
|
|
namespace Ryujinx.Graphics.Nvdec
|
|
{
|
|
struct NvdecStatus
|
|
{
|
|
#pragma warning disable CS0649 // Field is never assigned to
|
|
public uint MbsCorrectlyDecoded;
|
|
public uint MbsInError;
|
|
public uint Reserved;
|
|
public uint ErrorStatus;
|
|
public FrameStats Stats;
|
|
public uint SliceHeaderErrorCode;
|
|
#pragma warning restore CS0649
|
|
}
|
|
}
|