2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
14 lines
322 B
C#
14 lines
322 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);
|
|
}
|
|
}
|