IVp9Decoder.cs
1 using System; 2 3 namespace Ryujinx.Graphics.Video 4 { 5 public interface IVp9Decoder : IDecoder 6 { 7 bool Decode( 8 ref Vp9PictureInfo pictureInfo, 9 ISurface output, 10 ReadOnlySpan<byte> bitstream, 11 ReadOnlySpan<Vp9MvRef> mvsIn, 12 Span<Vp9MvRef> mvsOut); 13 } 14 }