NullOnRise c702d6babc upd
2024-10-01 22:35:06 +02:00

10 lines
210 B
C#

using System;
namespace Ryujinx.Graphics.Video
{
public interface IH264Decoder : IDecoder
{
bool Decode(ref H264PictureInfo pictureInfo, ISurface output, ReadOnlySpan<byte> bitstream);
}
}