0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/src/Ryujinx.Graphics.Video/IVp9Decoder.cs
2023-04-27 23:51:14 +02:00

14 lines
325 B
C#

using System;
namespace Ryujinx.Graphics.Video
{
public interface IVp9Decoder : IDecoder
{
bool Decode(
ref Vp9PictureInfo pictureInfo,
ISurface output,
ReadOnlySpan<byte> bitstream,
ReadOnlySpan<Vp9MvRef> mvsIn,
Span<Vp9MvRef> mvsOut);
}
}