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