mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-30 12:56:25 +02:00
16 lines
326 B
C#
16 lines
326 B
C#
using Ryujinx.Graphics.Nvdec.Types.Vp9;
|
|
|
|
namespace Ryujinx.Graphics.Nvdec
|
|
{
|
|
struct NvdecStatus
|
|
{
|
|
|
|
public uint MbsCorrectlyDecoded;
|
|
public uint MbsInError;
|
|
public uint Reserved;
|
|
public uint ErrorStatus;
|
|
public FrameStats Stats;
|
|
public uint SliceHeaderErrorCode;
|
|
|
|
}
|
|
}
|