blob: 127b9412cbe58a7e66b5d2963f87fba8b8fbe93c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
using System;
namespace Ryujinx.Graphics.Video
{
public interface IH264Decoder : IDecoder
{
bool Decode(ref H264PictureInfo pictureInfo, ISurface output, ReadOnlySpan<byte> bitstream);
}
}
|