2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
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);
|
|
}
|
|
}
|