Vp9MvRef.cs 248 B

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