mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-12 04:21:30 +00:00
9 lines
210 B
C#
9 lines
210 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Video
|
|
{
|
|
public interface IH264Decoder : IDecoder
|
|
{
|
|
bool Decode(ref H264PictureInfo pictureInfo, ISurface output, ReadOnlySpan<byte> bitstream);
|
|
}
|
|
}
|