blob: f204436d857bd710291cd14b0ad3a7169bca3605 (
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);
}
}
|