mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-19 05:15:55 +01:00
10 lines
213 B
C#
10 lines
213 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Video
|
|
{
|
|
public interface IH264Decoder : IDecoder
|
|
{
|
|
bool Decode(ref H264PictureInfo pictureInfo, ISurface output, ReadOnlySpan<byte> bitstream);
|
|
}
|
|
}
|