diff options
Diffstat (limited to 'Ryujinx.Graphics.Video/Vp9MvRef.cs')
-rw-r--r-- | Ryujinx.Graphics.Video/Vp9MvRef.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Video/Vp9MvRef.cs b/Ryujinx.Graphics.Video/Vp9MvRef.cs new file mode 100644 index 00000000..6f2d8e81 --- /dev/null +++ b/Ryujinx.Graphics.Video/Vp9MvRef.cs @@ -0,0 +1,11 @@ +using Ryujinx.Common.Memory; + +namespace Ryujinx.Graphics.Video +{ + // This must match the structure used by NVDEC, do not modify. + public struct Vp9MvRef + { + public Array2<Vp9Mv> Mvs; + public Array2<int> RefFrames; + } +} |