IH264Decoder.cs
1 using System; 2 3 namespace Ryujinx.Graphics.Video 4 { 5 public interface IH264Decoder : IDecoder 6 { 7 bool Decode(ref H264PictureInfo pictureInfo, ISurface output, ReadOnlySpan<byte> bitstream); 8 } 9 }
1 using System; 2 3 namespace Ryujinx.Graphics.Video 4 { 5 public interface IH264Decoder : IDecoder 6 { 7 bool Decode(ref H264PictureInfo pictureInfo, ISurface output, ReadOnlySpan<byte> bitstream); 8 } 9 }