IVp9Decoder.cs 325 B

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