IH264Decoder.cs 213 B

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