AVRational.cs
1  namespace Ryujinx.Graphics.Nvdec.FFmpeg.Native
2  {
3      public struct AVRational
4      {
5          public int Numerator;
6          public int Denominator;
7      }
8  }