mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-04 00:47:44 +02:00
16 lines
No EOL
385 B
C#
16 lines
No EOL
385 B
C#
using Ryujinx.Graphics.Nvdec.Types.Vp9;
|
|
|
|
namespace Ryujinx.Graphics.Nvdec
|
|
{
|
|
struct NvdecStatus
|
|
{
|
|
#pragma warning disable CS0649
|
|
public uint MbsCorrectlyDecoded;
|
|
public uint MbsInError;
|
|
public uint Reserved;
|
|
public uint ErrorStatus;
|
|
public FrameStats Stats;
|
|
public uint SliceHeaderErrorCode;
|
|
#pragma warning restore CS0649
|
|
}
|
|
} |