Vp9MvRef.cs
1 using Ryujinx.Common.Memory; 2 3 namespace Ryujinx.Graphics.Video 4 { 5 // This must match the structure used by NVDEC, do not modify. 6 public struct Vp9MvRef 7 { 8 public Array2<Vp9Mv> Mvs; 9 public Array2<int> RefFrames; 10 } 11 }