blob: ac79bc42189bcb5f92c849605336ac1380442581 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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);
}
}
|