mirror of
https://github.com/KeatonTheBot/Ryujinx.git
synced 2026-04-05 21:39:42 +00:00
9 lines
213 B
C#
9 lines
213 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Video
|
|
{
|
|
public interface IH264Decoder : IDecoder
|
|
{
|
|
bool Decode(ref H264PictureInfo pictureInfo, ISurface output, ReadOnlySpan<byte> bitstream);
|
|
}
|
|
}
|