aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Video/IVp9Decoder.cs
blob: 78ed90a4eaf59e177d94959bb72e31ae254e86a2 (plain) (blame)
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);
    }
}